/* CSS nao-critico de fwa.html — abaixo da dobra.
   Continuacao exata do <style> inline: a ordem das regras foi preservada,
   entao a cascata resultante e' identica a do arquivo original. */

    /* ========================================
       PLANS SECTION
    ======================================== */

    .plans {
      background: var(--bg-plans);
      position: relative;
    }

    /* Títulos sobre fundo azul na seção de planos */
    .plans .section-title {
      color: white;
    }

    .plans .section-subtitle {
      color: rgba(255, 255, 255, 0.9);
    }

    .plans .section-eyebrow {
      color: var(--accent);
    }

    /* Cards BRANCOS na seção de planos */
    .plans .plan-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    }

    .plans .plan-card.featured {
      border: 2px solid var(--accent);
      box-shadow: 0 8px 40px rgba(255, 87, 34, 0.3);
    }

    /* Textos ESCUROS nos cards brancos */
    .plans .plan-speed-value {
      color: var(--text-on-white);
    }

    .plans .plan-speed-unit {
      color: var(--text-on-white-muted);
    }

    .plans .plan-speed-label {
      color: var(--text-on-white-muted);
    }

    .plans .plan-partner {
      color: var(--text-on-white-muted);
    }

    .plans .plan-price-old {
      color: var(--text-on-white-subtle);
    }

    .plans .plan-price-currency,
    .plans .plan-price-value {
      color: var(--text-on-white);
    }

    .plans .plan-price-period {
      color: var(--text-on-white-muted);
    }

    .plans .plan-feature {
      color: var(--text-on-white);
    }

    .plans .plan-feature svg {
      color: var(--green);
    }

    /* Barra de progresso sobre card branco */
    .plans .plan-speed-bar {
      background: rgba(0, 0, 0, 0.08);
    }

    /* Borda inferior do preço */
    .plans .plan-price {
      border-bottom-color: rgba(0, 0, 0, 0.1);
    }

    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 2.5rem;
    }

    @media (max-width: 768px) {
      .section-header {
        max-width: 100%;
        padding: 0 0.5rem;
      }

      .section-title {
        font-size: clamp(1.5rem, 1.25rem + 2vw, 2rem);
      }

      .section-subtitle {
        font-size: 1rem;
      }
    }
    
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    
    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent));
    }
    
    .section-eyebrow::after {
      background: linear-gradient(90deg, var(--accent), transparent);
    }
    
    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    /* Plan Tabs - Centralized */
    .plan-tabs-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 2.5rem;
    }
    
    .plan-tabs {
      display: inline-flex;
      gap: 0.25rem;
      padding: 0.375rem;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 14px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
    }

    .plan-tab {
      padding: 0.75rem 2rem;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #5f6368;
      transition: all 0.3s var(--ease-out);
    }

    .plan-tab.active {
      color: white;
      background: var(--accent);
      box-shadow: 0 4px 16px rgba(255, 87, 34, 0.4);
    }

    .plan-tab:hover:not(.active) {
      color: #1a1a1a;
      background: rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 480px) {
      .plan-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
      }
    }

    .plan-panel { display: none; }
    .plan-panel.active { display: block; animation: fadeIn 0.5s var(--ease-out); }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    .plan-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
    
    @media (max-width: 1200px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
    
    @media (max-width: 640px) {
      .plan-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0.5rem 1.5rem;
        /* casa com o padding do .container nessa faixa (1rem); -1.5rem
           estourava a viewport em 8px */
        margin: 0 -1rem;
        scrollbar-width: none;
        touch-action: auto;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
      }
      .plan-grid::-webkit-scrollbar { display: none; }
      .plan-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 300px;
        touch-action: auto;
      }
    }

    /* Plan Cards */
    .plan-card {
      background: var(--card-on-light);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 20px;
      padding: 1.75rem;
      position: relative;
      transition: all 0.4s var(--ease-out);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      box-shadow: var(--shadow-card-light);
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      transition: all 0.4s var(--ease-out);
    }

    .plan-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 0, 0, 0.2);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    }

    .plan-card:hover::before {
      height: 4px;
      background: var(--accent);
      box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
    }

    .plan-card.featured {
      border: 2px solid var(--accent);
      background: var(--card-on-light);
      box-shadow: 0 8px 40px rgba(255, 87, 34, 0.3);
    }

    .plan-card.featured::before {
      background: var(--accent);
      height: 4px;
      box-shadow: 0 0 20px rgba(255, 87, 34, 0.6);
    }

    .plan-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.375rem 0.875rem;
      background: var(--blue);
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: white;
      box-shadow: 0 2px 8px rgba(40, 85, 212, 0.3);
    }
    
    .plan-badge.pop {
      background: var(--green);
      animation: badge-glow 2s ease-in-out infinite;
    }
    
    @keyframes badge-glow {
      0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
      50% { box-shadow: 0 0 20px 4px var(--green-glow); }
    }

    .plan-speed { margin-bottom: 0.75rem; }
    
    .plan-speed-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
      font-weight: 700;
      line-height: 1;
      color: var(--text);
    }

    .plan-card.featured .plan-speed-value {
      color: var(--accent);
      text-shadow: 0 0 30px rgba(255, 87, 34, 0.3);
    }
    
    .plan-speed-unit {
      font-size: 1.125rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    
    .plan-speed-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    .plan-speed-bar {
      height: 6px;
      background: var(--bg3);
      border-radius: 6px;
      margin-top: 0.75rem;
      overflow: hidden;
    }
    
    .plan-speed-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 6px;
      transition: width 0.8s var(--ease-out);
      position: relative;
      box-shadow: 0 0 10px rgba(255, 87, 34, 0.4);
    }

    .plan-speed-bar-fill::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 12px;
      height: 12px;
      background: white;
      border: 3px solid var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
    }

    /* Padrão visual de agregados (mini-produto) */
    .plan-aggregate {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 87, 34, 0.08);
      border: 1px solid rgba(255, 87, 34, 0.2);
      border-radius: 6px;
      padding: 8px 12px;
      margin-bottom: 0.75rem;
      width: fit-content;
    }

    .plan-aggregate svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .plan-aggregate span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-on-white);
    }

    .plan-partner {
      height: 32px;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--text2);
      font-weight: 500;
    }

    .plan-price {
      margin-bottom: 1.25rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--border);
    }
    
    .plan-price-old {
      font-size: 0.875rem;
      color: var(--text-subtle);
      text-decoration: line-through;
      margin-bottom: 0.125rem;
    }
    
    .plan-price-current {
      display: flex;
      align-items: baseline;
      gap: 0.125rem;
    }
    
    .plan-price-currency {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-muted);
      align-self: flex-start;
      margin-top: 0.5rem;
    }
    
    .plan-price-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.25rem, 2rem + 1.5vw, 3rem);
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }
    
    .plan-card.featured .plan-price-value { color: var(--accent); }
    
    .plan-price-period {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-left: 0.25rem;
    }

    .plan-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      margin-bottom: 1.5rem;
    }
    
    .plan-feature {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      font-size: 0.9rem;
      color: var(--text2);
    }
    
    .plan-feature svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--green);
    }

    /* CTA Button - Centralized */
    .plan-cta-wrapper {
      display: flex;
      justify-content: center;
    }
    
    .plan-cta {
      padding: 1rem 2rem;
      background: var(--accent);
      border: none;
      border-radius: 12px;
      font-weight: 700;
      color: white;
      transition: all 0.3s var(--ease-out);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
    }

    .plan-cta span { position: relative; z-index: 1; }

    .plan-cta:hover {
      transform: translateY(-3px);
      background: #ff6b3d;
      box-shadow: 0 8px 24px rgba(255, 87, 34, 0.4);
    }

    .plan-card.featured .plan-cta {
      background: var(--accent);
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
    }

    .plan-card.featured .plan-cta::before { display: none; }

    .plan-card.featured .plan-cta:hover {
      transform: translateY(-4px) scale(1.02);
      background: #ff6b3d;
      box-shadow: 0 12px 48px rgba(255, 87, 34, 0.4);
    }

    /* Navigation - Pagination Dots (sem setas) */
    .plan-nav {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }

    .plan-nav-btn {
      display: none;
    }

    .plan-dots {
      display: flex;
      /* 8px de folga entre alvos de 24px: centros a 32px, acima dos 24px do WCAG */
      gap: 8px;
    }

    /* O alvo e' o proprio botao (24x24). O ponto visual de 12px fica no ::after —
       pseudo-elemento nao conta como area de clique para o target-size. */
    .plan-dot {
      width: 24px;
      height: 24px;
      background: transparent;
      border: none;
      padding: 0;
      cursor: pointer;
      position: relative;
    }

    .plan-dot::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
    }

    .plan-dot:hover::after {
      border-color: rgba(255, 255, 255, 0.8);
    }

    .plan-dot.active::after {
      background: var(--accent);
      border-color: #ffffff;
      transform: translate(-50%, -50%) scale(1.15);
      box-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
    }

    @media (max-width: 640px) {
      .plan-nav { display: flex; }
    }

    @media (min-width: 641px) {
      .plan-nav { display: none; }
    }

    /* ========================================
       BENEFITS SECTION
    ======================================== */

    .benefits {
      background: var(--bg-benefits);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Títulos sobre fundo cinza claro */
    .benefits .section-title {
      color: var(--text-on-light);
    }

    .benefits .section-subtitle {
      color: var(--text-on-light-muted);
    }

    .benefits .section-eyebrow {
      color: var(--accent);
    }

    /* Cards brancos sobre cinza claro */
    .benefits .benefit-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .benefits .benefit-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .benefits .benefit-card::after {
      background: var(--accent);
    }

    .benefits .benefit-icon {
      background: rgba(255, 87, 34, 0.1);
      border-color: transparent;
    }

    .benefits .benefit-icon svg {
      color: var(--accent);
    }

    .benefits .benefit-card:hover .benefit-icon {
      background: var(--accent);
    }

    .benefits .benefit-card:hover .benefit-icon svg {
      color: white;
    }

    .benefits .benefit-label {
      color: var(--accent);
    }

    .benefits .benefit-title {
      color: var(--text-on-white);
    }

    .benefits .benefit-desc {
      color: var(--text-on-white-muted);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    
    @media (max-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }

    .benefit-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.4s var(--ease-out);
      position: relative;
      overflow: hidden;
    }
    
    .benefit-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--accent);
      transition: width 0.4s var(--ease-out);
    }
    
    .benefit-card:hover {
      transform: translateY(-6px);
      border-color: var(--border-hover);
      box-shadow: var(--shadow-lg);
    }
    
    .benefit-card:hover::after { width: 100%; }

    .benefit-icon {
      width: 56px;
      height: 56px;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 1.25rem;
      transition: all 0.3s var(--ease-out);
    }
    
    .benefit-card:hover .benefit-icon {
      background: var(--accent);
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(255, 87, 34, 0.3);
    }
    
    .benefit-icon svg {
      width: 26px;
      height: 26px;
      color: var(--accent);
      transition: color 0.3s ease;
    }
    
    .benefit-card:hover .benefit-icon svg { color: white; }
    
    .benefit-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }
    
    .benefit-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    
    .benefit-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ========================================
       TESTIMONIALS
    ======================================== */

    .testimonials {
      background: var(--bg-testimonials);
    }

    /* Títulos sobre fundo azul na seção de depoimentos */
    .testimonials .section-title {
      color: white;
    }

    .testimonials .section-subtitle {
      color: rgba(255, 255, 255, 0.9);
    }

    .testimonials .section-eyebrow {
      color: var(--accent);
    }

    .testimonials .testimonial-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    }

    .testimonials .testimonial-quote {
      color: #3c4043 !important;
    }

    .testimonials .testimonial-info h5 {
      color: #1a1a1a !important;
    }

    .testimonials .testimonial-info span {
      color: #5f6368 !important;
    }

    .testimonials-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    
    @media (max-width: 1024px) { .testimonials-wrapper { grid-template-columns: 1fr; gap: 2.5rem; } }

    /* ===== AVALIAÇÕES DO GOOGLE ===== */
    .google-reviews {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      /* stretch + height:100% no card = mesma altura por linha, texto no topo */
      align-items: stretch;
    }

    @media (max-width: 1024px) { .google-reviews { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px)  { .google-reviews { grid-template-columns: 1fr; } }

    .review-card {
      height: 100%;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 16px;
      padding: 1.25rem;
      box-shadow: var(--shadow-card-light);
    }

    .review-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
    }

    .review-avatar {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      /* 19px/700 qualifica como texto grande (AA 3:1) nas cores de avatar mais claras */
      font-size: 1.1875rem;
      font-weight: 700;
      line-height: 1;
    }

    .review-meta { flex: 1; min-width: 0; }

    .review-name {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-on-white);
      margin-bottom: 0.25rem;
    }

    .review-stars { display: flex; gap: 2px; }
    .review-stars svg { width: 15px; height: 15px; display: block; }
    .star-on svg  { fill: #FBBC04; }
    .star-off svg { fill: #dadce0; }

    .review-google { width: 18px; height: 18px; flex-shrink: 0; align-self: flex-start; }

    .review-text {
      font-size: 0.9375rem;
      line-height: 1.6;
      color: var(--text-on-white-muted);
    }

    .experience-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    @media (max-width: 900px) {
      .experience-cards { grid-template-columns: repeat(2, 1fr); }
    }

    /* Cenarios de uso vivem na secao de beneficios (fundo cinza claro) */
    .benefits .experience-cards { margin-top: 1.5rem; }

    .experience-card {
      background: var(--card-light);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 1.5rem;
      transition: all 0.3s var(--ease-out);
      box-shadow: var(--shadow-card-light);
    }

    .experience-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--border-light-hover);
    }

    .experience-card-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 87, 34, 0.1);
      border-radius: 12px;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
    }

    .experience-card-icon svg {
      width: 22px;
      height: 22px;
      color: var(--accent);
    }

    .experience-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-on-light);
      margin-bottom: 0.25rem;
    }

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

    .testimonial-track { position: relative; min-height: 320px; }
    
    .testimonial-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s var(--ease-out);
    }
    
    .testimonial-slide.active { opacity: 1; visibility: visible; }

    .testimonial-card {
      background: var(--card-light);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 2rem;
      position: relative;
      box-shadow: var(--shadow-card-light);
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1.5rem;
      left: 2rem;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 100px;
      line-height: 1;
      color: var(--accent);
      opacity: 0.15;
    }

    .testimonial-quote {
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 1.7;
      color: var(--text-on-light-body);
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-avatar {
      width: 52px;
      height: 52px;
      background: var(--accent);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
    }

    .testimonial-info h5 {
      font-weight: 700;
      color: var(--text-on-light);
      margin-bottom: 2px;
    }

    .testimonial-info span {
      font-size: 0.875rem;
      color: var(--text-on-light-muted);
    }
    
    .testimonial-rating {
      display: flex;
      gap: 2px;
      margin-left: auto;
    }
    
    .testimonial-rating svg {
      width: 18px;
      height: 18px;
      color: #FBBF24;
      fill: #FBBF24;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 2rem;
    }
    
    .carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: transparent;
      border: 2px solid rgba(0, 0, 0, 0.2);
      transition: all 0.3s var(--ease-out);
      cursor: pointer;
      /* Touch target wrapper - mínimo 44px para WCAG */
      position: relative;
    }

    .carousel-dot::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
    }
    
    .carousel-dot.active {
      background: var(--accent);
      border: 2px solid #ffffff;
      transform: scale(1.15);
      box-shadow: 0 2px 8px var(--accent-glow);
    }

    /* ========================================
       FAQ
    ======================================== */

    .faq {
      background: var(--bg-faq);
      border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Títulos sobre fundo cinza claro */
    .faq .section-title {
      color: var(--text-on-light);
    }

    .faq .section-subtitle {
      color: var(--text-on-light-muted);
    }

    .faq .section-eyebrow {
      color: var(--accent);
    }

    /* Items brancos sobre cinza claro */
    .faq .faq-item {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.08);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .faq .faq-item:hover {
      border-color: rgba(0, 0, 0, 0.12);
    }

    .faq .faq-item[open] {
      border-color: var(--accent);
      box-shadow: 0 4px 16px rgba(255, 87, 34, 0.2);
    }

    .faq .faq-item summary {
      color: var(--text-on-white);
    }

    .faq .faq-item summary:hover {
      background: rgba(0, 0, 0, 0.02);
    }

    .faq .faq-item p {
      color: var(--text-on-white-muted);
    }

    /* Coluna unica: em duas colunas, abrir um acordeao empurrava o item ao lado */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s var(--ease-out);
    }
    
    .faq-item:hover {
      border-color: var(--border-hover);
    }
    
    .faq-item[open] {
      border-color: var(--accent);
      box-shadow: var(--shadow-glow);
    }
    
    .faq-item summary {
      padding: 1.25rem 1.5rem;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      list-style: none;
    }
    
    .faq-item summary::-webkit-details-marker { display: none; }
    
    .faq-item summary:hover { background: var(--surface); }
    
    .faq-item summary::after {
      content: '+';
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--accent);
      transition: transform 0.3s var(--ease-out);
    }
    
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item[open] summary { background: var(--surface); }
    
    .faq-item p {
      padding: 0 1.5rem 1.5rem;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* ========================================
       CTA SECTION - Simplificada
    ======================================== */

    .cta-section {
      background: var(--bg-cta);
      padding: 5rem 0;
      margin: 0;
    }

    .cta-card {
      background: transparent;
      border-radius: 0;
      padding: 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .cta-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 1.5rem + 3vw, 3rem);
      font-weight: 700;
      color: white;
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .cta-subtitle {
      font-size: 1.35rem;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 2.5rem;
      line-height: 1.5;
    }

    /* Mostrar benefícios no CTA */
    .cta-features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .cta-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1rem;
    }

    .cta-feature svg {
      width: 20px;
      height: 20px;
      color: #10b981;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    /* Botão primário LARANJA com texto BRANCO */
    .cta-btn-p {
      padding: 1.25rem 3rem;
      background: var(--accent);
      color: white;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1.125rem;
      transition: all 0.3s var(--ease-spring);
      box-shadow: 0 8px 32px rgba(255, 87, 34, 0.4);
    }

    .cta-btn-p:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 12px 48px rgba(255, 87, 34, 0.5);
      background: #ff6b3d;
    }

    /* Ocultar botão secundário */
    .cta-btn-s {
      display: none;
    }

    /* ========================================
       FOOTER - Azul Vibrante (igual Hero)
    ======================================== */

    .footer {
      background: var(--bg-hero);
      padding: 3rem 0 120px;
    }
    
    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      text-align: center;
    }
    
    .footer-logo { display: flex; align-items: center; gap: 0.5rem; }
    .footer-logo .logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
    
    .footer-info {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }
    
    .footer-contact {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      font-size: 0.9rem;
      font-weight: 500;
      transition: opacity 0.2s ease;
    }
    
    .footer-contact a:hover { opacity: 0.8; }
    .footer-contact svg { width: 18px; height: 18px; }
    
    .footer-legal {
      font-size: 0.8rem;
      /* 5,04:1 sobre o azul do rodape (0.6 dava 3,3:1) */
      color: rgba(255, 255, 255, 0.85);
      max-width: 600px;
    }

    /* ========================================
       WHATSAPP WIDGET
    ======================================== */
    
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 24px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.625rem;
    }
    
    @media (max-width: 640px) { .whatsapp-float { bottom: 28px; right: 16px; } }
    
    .whatsapp-btn {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 1rem 1.75rem;
      /* verde escuro solido com texto branco: 5,41:1 */
      background: #0B7A45;
      color: #ffffff;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: var(--shadow-lg), 0 8px 24px -8px rgba(37, 211, 102, 0.5);
      transition: all 0.3s var(--ease-spring);
      animation: wa-float 3s ease-in-out infinite;
    }
    
    @keyframes wa-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }
    
    .whatsapp-btn:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: var(--shadow-xl), 0 12px 32px -8px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-btn svg { width: 24px; height: 24px; }
    
    @media (max-width: 640px) {
      .whatsapp-btn span { display: none; }
      .whatsapp-btn { padding: 1rem; border-radius: 50%; }
    }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s var(--ease-out);
    }
    
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
