/* -------------------------------------------------------------
   BOLSO CERTO - LANDING PAGE STYLE SHEET
   Follows Brandbook Identity, Colors & Typography.
   ------------------------------------------------------------- */

/* 1. Design System Tokens (CSS Variables) */
:root {
  /* Color Palette */
  --azul-profundo: #073B4C;
  --verde-certo: #0E7C66;
  --off-white: #F7F9F6;
  --grafite: #1E2528;
  --mint-leve: #A7F3D0;
  --amarelo-insight: #F6C945;
  --azul-link: #2F80ED;
  --vermelho-alerta: #E5484D;
  --cinza-ui: #E8ECEB;
  
  /* Text and Border Neutrals */
  --text-dark: #1E2528;
  --text-light: #6C757D;
  --border-light: #E8ECEB;
  --white: #ffffff;
  
  /* Fonts */
  --font-title: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-number: 'Space Grotesk', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(7, 59, 76, 0.03);
  --shadow-md: 0 10px 30px rgba(7, 59, 76, 0.05);
  --shadow-lg: 0 20px 50px rgba(7, 59, 76, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(7, 59, 76, 0.05);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Reset & Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--grafite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--cinza-ui);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* 3. Typography & Utility Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--azul-profundo);
  font-weight: 700;
  line-height: 1.25;
}

.font-sora {
  font-family: var(--font-title);
}

.val-num {
  font-family: var(--font-number);
  font-weight: 700;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.margin-top-15 { margin-top: 15px; }
.full-height { height: 100%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--verde-certo);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #0c6a57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 124, 102, 0.2);
}

.btn-action-blue {
  background-color: var(--azul-link);
  color: var(--white);
}
.btn-action-blue:hover {
  background-color: #1b6bd5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 128, 237, 0.2);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--azul-profundo);
  color: var(--azul-profundo);
}
.btn-outline:hover {
  background-color: var(--azul-profundo);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-icon-play {
  margin-right: 8px;
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle-text {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 400;
}

/* 4. Main Header / Menu */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(247, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 236, 235, 0.5);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 48px;
}

.main-nav ul {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--azul-profundo);
  opacity: 0.85;
}

.nav-link:hover {
  color: var(--verde-certo);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--azul-profundo);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* 5. Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 100px;
  background: radial-gradient(circle at 80% 20%, rgba(167, 243, 208, 0.15) 0%, rgba(247, 249, 246, 0) 60%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
}

.hero-tagline {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--verde-certo);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--grafite);
  opacity: 0.9;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-microcopy {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Hero Mockup Styling */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.dashboard-mockup-wrapper {
  position: relative;
  width: 100%;
  padding-top: 10px;
}

/* Floating elements around dashboard */
.floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition-normal);
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-mint { background-color: var(--mint-leve); }
.bg-green-light { background-color: rgba(14, 124, 102, 0.1); }
.bg-red-light { background-color: rgba(229, 72, 77, 0.1); }

.float-text {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--azul-profundo);
  max-width: 140px;
  line-height: 1.2;
}

.float-value {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
}

.float-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-light);
}

.val-positive { color: var(--verde-certo); }
.val-negative { color: var(--vermelho-alerta); }

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--verde-certo);
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--verde-certo);
  animation: pulse 1.8s infinite ease-in-out;
  left: 0;
  top: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Floating Card Coordinates & Floating Animations */
.float-top-left {
  top: -15px;
  left: -20px;
  animation: float1 6s ease-in-out infinite alternate;
}

.float-top-right {
  top: 30px;
  right: -25px;
  animation: float2 7s ease-in-out infinite alternate;
}

.float-bottom-left {
  bottom: 30px;
  left: -30px;
  animation: float3 6.5s ease-in-out infinite alternate;
}

.float-bottom-right {
  bottom: -15px;
  right: -10px;
  padding: 10px 14px;
  animation: float4 8s ease-in-out infinite alternate;
  gap: 8px;
}

@keyframes float1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-1.5deg); }
}
@keyframes float2 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes float3 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(10px) rotate(-1deg); }
}
@keyframes float4 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-6px) rotate(1deg); }
}

/* Inside Mockup Frame */
.dashboard-mockup {
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 75px 1fr;
  height: 480px;
}

.mock-sidebar {
  background-color: #042732;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
  align-items: center;
}

.logo-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--verde-certo);
}

.logo-bar {
  width: 16px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.mock-sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.mock-sidebar-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.mock-sidebar-menu li.active, 
.mock-sidebar-menu li:hover {
  opacity: 1;
}

.menu-icon {
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 4px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.mock-sidebar-menu li.active .menu-icon {
  background-color: var(--verde-certo);
}

.menu-lbl {
  font-size: 0.55rem;
  color: var(--white);
  font-weight: 500;
  text-align: center;
}

.mock-content {
  padding: 20px;
  overflow-y: auto;
  background-color: #fafbfc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-user-welcome h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.mock-user-welcome p {
  font-size: 0.75rem;
  color: var(--text-light);
}

.mock-user-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-icon-bell {
  width: 28px;
  height: 28px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--azul-profundo);
  border-radius: 50%;
}

/* Stat Cards */
.mock-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mock-stat-card {
  background-color: var(--white);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
}

.stat-value {
  font-size: 1rem;
  margin: 4px 0;
  color: var(--azul-profundo);
}

.val-green { color: var(--verde-certo); }
.val-red { color: var(--vermelho-alerta); }

.stat-trend {
  font-size: 0.55rem;
  font-weight: 700;
}

.trend-up { color: var(--verde-certo); }

.stat-period {
  font-size: 0.55rem;
  color: var(--text-light);
}

/* Grid layout mock dashboard */
.mock-grid-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
}

.mock-widget {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.widget-header h4 {
  font-size: 0.75rem;
  font-weight: 700;
}

.widget-link, .widget-period {
  font-size: 0.6rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Goals list */
.goals-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.goal-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.goal-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--azul-profundo);
}

.goal-progress-bar {
  width: 100%;
  height: 6px;
  background-color: var(--cinza-ui);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.goal-progress-bar .progress {
  height: 100%;
  background-color: var(--verde-certo);
  border-radius: var(--radius-pill);
}

.goal-numbers {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: var(--text-light);
}

/* Category widget */
.category-donut-section {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-grow: 1;
}

.donut-chart-container {
  width: 70px;
  height: 70px;
  position: relative;
}

.donut-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #073B4C 0% 40%, 
    #0E7C66 40% 65%, 
    #2F80ED 65% 80%, 
    #F6C945 80% 90%, 
    var(--cinza-ui) 90% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.donut-hole {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hole-value {
  font-size: 0.65rem;
  color: var(--azul-profundo);
}

.hole-lbl {
  font-size: 0.45rem;
  color: var(--text-light);
}

.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.legend-item {
  display: flex;
  align-items: center;
  font-size: 0.55rem;
  color: var(--text-dark);
}

.color-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}

.bg-moradia { background-color: #073B4C; }
.bg-alimentacao { background-color: #0E7C66; }
.bg-transporte { background-color: #2F80ED; }
.bg-lazer { background-color: #F6C945; }
.bg-outros { background-color: var(--cinza-ui); }

.pct {
  margin-left: auto;
  font-weight: 700;
  color: var(--text-light);
}

/* Fluxo de Caixa */
.mock-chart-bars {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.legend-indicator {
  display: flex;
  gap: 8px;
  font-size: 0.55rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.legend-indicator .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 3px;
}

.dot.bg-green { background-color: var(--verde-certo); }
.dot.bg-red { background-color: var(--vermelho-alerta); }

.bars-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 65px;
  border-bottom: 1px solid var(--cinza-ui);
  padding-bottom: 4px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  width: 14%;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.bar-val {
  width: 5px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
}

.bar-val.bg-green { background-color: var(--verde-certo); }
.bar-val.bg-red { background-color: var(--vermelho-alerta); }

.bar-day {
  position: absolute;
  bottom: -12px;
  font-size: 0.5rem;
  color: var(--text-light);
}

/* 6. Seção de Dor */
.pain-section {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pain-card {
  background-color: var(--off-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(229, 72, 77, 0.2);
}

.pain-card-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(229, 72, 77, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pain-icon {
  color: var(--vermelho-alerta);
}

.pain-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* 7. Seção de Promessa */
.promise-section {
  background: radial-gradient(circle at 10% 80%, rgba(14, 124, 102, 0.06) 0%, rgba(247, 249, 246, 0) 50%);
}

.promise-container {
  max-width: 900px;
}

.promise-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.promise-text {
  font-size: 1.2rem;
  color: var(--grafite);
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
}

.promise-impact-box {
  background-color: var(--white);
  padding: 32px 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: inline-block;
}

.impact-phrase {
  font-size: 1.5rem;
  color: var(--verde-certo);
  font-weight: 800;
}

/* 8. Seção "Como o Bolso Certo ajuda" (Scroll Stack Layout) */
.features-section {
  background-color: var(--white);
}

.scroll-stack-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 40px;
}

.features-text-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-stack-item {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  background-color: #fafbfc;
}

.feature-stack-item.active {
  background-color: var(--white);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: rgba(7, 59, 76, 0.05);
  color: var(--azul-profundo);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition-normal);
}

.feature-stack-item.active .feature-icon-wrapper {
  background-color: var(--verde-certo);
  color: var(--white);
}

.feature-stack-item h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.feature-desc {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--azul-profundo);
  margin-bottom: 8px;
}

.feature-support-text {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Sticky right side content */
.features-visual-sticky {
  position: sticky;
  top: 120px;
  height: 480px;
  align-self: start;
}

.sticky-visual-container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--azul-profundo);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-pane {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.visual-pane.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pane-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pane-header {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.pane-screen {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-offwhite {
  background-color: var(--off-white);
  border: 1px solid var(--border-light);
}

/* Micro Mockups for Panes */
.mini-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}

.mini-card .lbl {
  font-size: 0.75rem;
  color: var(--text-light);
}

.mini-card .val {
  font-size: 1.5rem;
  margin-top: 4px;
}

.text-deep { color: var(--azul-profundo); }

.mini-chart-pie {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.pie-section-sim {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.block-green {
  background-color: rgba(167, 243, 208, 0.2);
  color: var(--mint-leve);
  border: 1px solid rgba(167, 243, 208, 0.4);
}

/* Quick Form Sim */
.quick-form-sim {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field-sim {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.dot-f {
  width: 6px;
  height: 6px;
  background-color: var(--verde-certo);
  border-radius: 50%;
  margin-right: 12px;
}

.label-f {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  width: 80px;
}

.val-f {
  font-size: 0.85rem;
  color: var(--white);
  margin-left: auto;
}

.btn-submit-sim {
  background-color: var(--verde-certo);
  color: var(--white);
  border: none;
  padding: 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Category Bars */
.category-bars-sim {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-lbl {
  font-size: 0.75rem;
  color: var(--white);
}

.cat-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.cat-fill {
  height: 100%;
  border-radius: var(--radius-pill);
}

.bg-orange { background-color: var(--amarelo-insight); }
.bg-green { background-color: var(--verde-certo); }
.bg-red { background-color: var(--vermelho-alerta); }

.cat-numbers {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.limit {
  color: rgba(255, 255, 255, 0.4);
}

/* Banks list */
.banks-list-sim {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-item-sim {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.bank-item-sim.active {
  background-color: rgba(255, 255, 255, 0.12);
}

.bank-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.bank-logo.Nubank { background-color: #820ad1; color: var(--white); }
.bank-logo.PJ { background-color: #ec7000; color: var(--white); }
.bank-logo.Carteira { background-color: rgba(255, 255, 255, 0.1); font-size: 1rem; }

.bank-info {
  display: flex;
  flex-direction: column;
}

.bank-info strong {
  font-size: 0.75rem;
  color: var(--white);
}

.bank-info span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Wave Lines */
.mini-chart-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-line-indicator {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.chart-sim-waves {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.wave-column {
  width: 15%;
  height: var(--val);
  background: linear-gradient(180deg, var(--azul-link) 0%, rgba(47, 128, 237, 0.1) 100%);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* Open Finance Node */
.openfinance-sync-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100px;
  width: 100%;
}

.sync-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  z-index: 2;
}

.center-node {
  background-color: var(--verde-certo);
  color: var(--white);
  font-size: 0.8rem;
}

.node-ext {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.75rem;
}

.sync-line {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  width: 40px;
  position: relative;
}

.sync-line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: var(--verde-certo);
  animation: flowLine 2s infinite linear;
}

.line-left::after {
  left: 0;
  animation-direction: normal;
}

.line-right::after {
  right: 0;
  animation-direction: reverse;
}

@keyframes flowLine {
  0% { transform: translateX(0); }
  100% { transform: translateX(40px); }
}

.sync-pulse-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(14, 124, 102, 0.4);
  border-radius: 50%;
  animation: radarPulse 2.5s infinite ease-out;
}

@keyframes radarPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.sync-status-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  text-align: center;
}

/* 9. Antes e Depois Section */
.before-after-section {
  background-color: var(--off-white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.ba-side {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.ba-before {
  border-left: 5px solid var(--vermelho-alerta);
}

.ba-after {
  border-left: 5px solid var(--verde-certo);
  background: linear-gradient(180deg, var(--white) 0%, rgba(14, 124, 102, 0.02) 100%);
}

.ba-header-tag {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: var(--azul-profundo);
}

.ba-before .ba-header-tag { color: var(--vermelho-alerta); }
.ba-after .ba-header-tag { color: var(--verde-certo); }

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ba-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.red-x {
  background-color: rgba(229, 72, 77, 0.1);
  color: var(--vermelho-alerta);
}

.green-check {
  background-color: rgba(14, 124, 102, 0.1);
  color: var(--verde-certo);
}

.ba-item-text strong {
  display: block;
  font-size: 1rem;
  color: var(--azul-profundo);
  margin-bottom: 4px;
  line-height: 1.4;
}

.ba-item-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 10. Seção Demonstração do Produto */
.demo-section {
  background-color: var(--white);
}

.demo-tab-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  background-color: var(--off-white);
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
  align-self: center;
}

.demo-tab-btn {
  background: none;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.demo-tab-btn.active {
  background-color: var(--azul-profundo);
  color: var(--white);
}

.demo-display-window {
  background-color: #042732;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.demo-screen-content {
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: tabFadeIn 0.4s ease forwards;
}

.demo-screen-content.active {
  display: flex;
}

@keyframes tabFadeIn {
  0% { opacity: 0; transform: scale(0.98) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.screen-title {
  font-family: var(--font-title);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}

.screen-action-btn {
  font-size: 0.8rem;
  background-color: var(--verde-certo);
  color: var(--white);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

.screen-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.screen-body {
  width: 100%;
}

.screen-body.flex-row {
  display: flex;
  gap: 20px;
}

.body-col-65 { width: 65%; }
.body-col-35 { width: 35%; }
.body-col-50 { width: 50%; }

.screen-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
}

.screen-card h4 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.val-large {
  font-size: 2.25rem;
  color: var(--white);
}

.desc-text-small {
  font-size: 0.8rem;
  margin-top: 8px;
}

.text-green { color: var(--mint-leve); }
.text-center { text-align: center; }

/* Micro elements inside demo window */
.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-list li {
  color: var(--white);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.simple-bar-graph {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 100px;
  padding-top: 10px;
}

.s-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
  height: 100%;
  justify-content: flex-end;
}

.s-bar-col .fill {
  width: 100%;
  border-radius: var(--radius-sm);
  transition: height var(--transition-slow);
}

.s-bar-col .lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Ledger List Demo */
.ledger-header {
  font-family: var(--font-title);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ledger-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ledger-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr 1fr 120px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.led-date {
  color: rgba(255, 255, 255, 0.4);
}

.led-desc {
  color: var(--white);
  font-weight: 600;
}

.badge {
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  max-width: fit-content;
}

.bg-receita { background-color: rgba(14, 124, 102, 0.2); color: var(--mint-leve); }

.led-account {
  color: rgba(255, 255, 255, 0.6);
}

.led-value {
  text-align: right;
  font-family: var(--font-number);
  font-weight: 700;
}

.led-value.val-negative { color: var(--vermelho-alerta); }
.led-value.val-positive { color: var(--mint-leve); }

/* Limits widget */
.limit-item {
  margin-bottom: 12px;
}

.limit-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--white);
  margin-bottom: 4px;
}

.limit-bar {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
}

.limit-bar .fill {
  height: 100%;
  border-radius: var(--radius-pill);
}

.limit-alert {
  font-size: 0.65rem;
  color: var(--vermelho-alerta);
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.donut-chart-view-sim {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.chart-comparison-sim {
  display: flex;
  align-items: flex-end;
  height: 160px;
  padding-top: 20px;
}

.chart-sim-grid {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}

.bar-pair {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 100%;
  position: relative;
  padding-bottom: 24px;
}

.bar-pair .b {
  width: 18px;
  border-radius: 4px 4px 0 0;
}

.bar-pair .label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.upgrade-card-sim h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.upgrade-card-sim p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
  margin: 0 auto 20px auto;
}

.price-val {
  font-family: var(--font-number);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.price-val .mo {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
}

/* 11. Seção "Para quem é" */
.for-who-section {
  background-color: var(--off-white);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.for-who-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.for-who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.for-who-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.for-who-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.for-who-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Align cards elegantly if uneven */
.for-who-grid > :nth-child(4) {
  grid-column: span 1;
}

/* 12. Seção Segurança */
.security-section {
  background-color: var(--white);
}

.security-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Abstract Shield Animation */
.security-visual {
  display: flex;
  justify-content: center;
}

.abstract-shield-graphic {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(14, 124, 102, 0.08);
  border: 1px solid rgba(14, 124, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.shield-lock {
  position: absolute;
  font-size: 1.5rem;
  bottom: 24px;
}

.shield-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(7, 59, 76, 0.15);
  animation: rotateOrbit 15s linear infinite;
}

.orbit-1 {
  width: 170px;
  height: 170px;
}

.orbit-2 {
  width: 240px;
  height: 240px;
  border-color: rgba(14, 124, 102, 0.15);
  animation-duration: 25s;
  animation-direction: reverse;
}

@keyframes rotateOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.security-text .section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
}

.security-points-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.security-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  font-size: 1.5rem;
  background-color: var(--off-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.point-text h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.point-text p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 13. Conversão Intermediária */
.mid-conversion-section {
  background: radial-gradient(circle at 90% 90%, rgba(47, 128, 237, 0.12) 0%, rgba(247, 249, 246, 0) 50%);
  padding: 60px 0;
}

.glass-conversion-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.glass-conversion-box h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.glass-conversion-box p {
  font-size: 1.15rem;
  color: var(--grafite);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-microcopy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* 14. Planos (Pricing) */
.pricing-section {
  background-color: var(--white);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card.recommended {
  border: 2px solid var(--verde-certo);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.recommended:hover {
  transform: scale(1.03) translateY(-5px);
}

.recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--verde-certo);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.plan-header {
  margin-bottom: 32px;
  text-align: center;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-number);
  color: var(--azul-profundo);
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  margin-right: 4px;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 500;
}

.plan-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 8px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.95rem;
  color: var(--grafite);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features .chk {
  color: var(--verde-certo);
  font-weight: 700;
}

.plan-action-btn-wrapper {
  margin-top: auto;
}

/* 15. Objeções */
.objections-section {
  background-color: var(--off-white);
}

.objections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.objection-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.objection-card:hover {
  transform: translateY(-4px);
}

.obj-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.objection-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.objection-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 16. FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background-color: var(--off-white);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(7, 59, 76, 0.15);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  text-align: left;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--azul-profundo);
  cursor: pointer;
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: transform var(--transition-normal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Active FAQ state */
.faq-item.active {
  background-color: var(--white);
  border-color: rgba(14, 124, 102, 0.3);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--verde-certo);
}

/* 17. Final CTA Section */
.final-cta-section {
  background-color: var(--azul-profundo);
  color: var(--white);
  padding: 100px 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(14, 124, 102, 0.15) 0%, rgba(7, 59, 76, 0) 50%);
}

.final-cta-section h2 {
  color: var(--white);
  font-size: 2.75rem;
  max-width: 800px;
  margin: 0 auto 24px auto;
  line-height: 1.2;
}

.final-cta-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 36px auto;
  opacity: 0.85;
}

.final-cta-microcopy {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 12px;
}

/* 18. Footer */
.main-footer {
  background-color: #031c24;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-txt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.text-green { color: var(--verde-certo); }

.footer-slogan {
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-right p {
  font-size: 0.85rem;
  text-align: right;
}

/* 19. Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .pricing-cards-grid {
    gap: 20px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-card.recommended {
    transform: scale(1.01);
  }
  
  .pricing-card.recommended:hover {
    transform: scale(1.01) translateY(-5px);
  }
}

@media (max-width: 900px) {
  section {
    padding: 70px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text-content {
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .floating-card {
    display: none; /* Hide floating elements on smaller screens to prevent overlap */
  }

  .pain-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scroll-stack-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-visual-sticky {
    display: none; /* Hide sticky screen mockup on mobile */
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .for-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .security-points-list {
    align-items: center;
  }

  .security-point-item {
    text-align: left;
    max-width: 500px;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 40px auto 0 auto;
  }
  
  .pricing-card.recommended {
    transform: none;
  }
  .pricing-card.recommended:hover {
    transform: translateY(-5px);
  }

  .objections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .body-col-65, .body-col-35, .body-col-50 {
    width: 100%;
  }

  .screen-body.flex-row {
    flex-direction: column;
  }
  
  .ledger-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .led-account, .led-date {
    display: none;
  }
  
  .led-value {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .pain-cards-grid {
    grid-template-columns: 1fr;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .objections-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* Mobile menu toggled by JS */
  }
  
  .mobile-menu-toggle {
    display: flex;
  }

  /* Simple active mobile nav layout overlay */
  .main-nav.mobile-active {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 24px;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.mobile-active ul {
    flex-direction: column;
    gap: 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-right p {
    text-align: center;
  }
  
  .demo-tabs {
    flex-wrap: wrap;
    border-radius: var(--radius-md);
  }
  
  .demo-tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}
