:root {
    --primary: #33c05a;      /* verde principal (novo) */  
    --primary-dark: #259046; /* versão mais escura para hover/contraste */  
    --accent: #42d56b;       /* versão mais clara/vibrante para destaques */
    --bg: #f5f7fb;
    --text: #222;
    --background-dark: #111827;;
    --muted: #6f7a8a;
    --card-bg: #ffffff;
    --border-radius: 10px;
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
    --max-width: 1200px;    /* era 1120px */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Layout base */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

header {  
    position: sticky;  
    top: 0;  
    z-index: 20;  
    background-color: #ffffffcc;  
    backdrop-filter: blur(10px);  
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.3);  
}

.nav {  
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
    padding: 14px 0;  
}
.logo-area {  
    display: flex;  
    align-items: center;  
    gap: 8px;  
    font-weight: 900;  
    color: var(--primary-dark);
    font-size: 1.5rem;
}  
  
.logo-area img {  
    width: 40px;  
    height: 40px;  
    object-fit: contain;  
}

.nav-links {  
    display: flex;  
    align-items: center;  
    gap: 24px;  
    font-size: 1.0rem;
    
}

.nav-links a {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
    transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.2s ease;
}

/* Botão primário em destaque (todos os js-open-modal, exceto no header) */  
.btn-primary.js-open-modal {  
  padding: 12px 26px;      /* maior */  
  font-size: 1.4rem;         /* maior */  
  box-shadow: 0 12px 28px rgba(76, 175, 80, 0.35);  
}  
  
/* Exceção: manter o botão do header menor */  
.nav-links .btn-primary.js-open-modal {  
  padding: 8px 18px;       /* volta ao tamanho do header */  
  font-size: 0.9rem;  
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.25);  
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 9px 20px;
    font-weight: 500;
    border: 1px solid rgba(148, 163, 184, 0.7);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
    font-size: 1.4rem;
}

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Hero */

.hero {
    padding: 40px 0 48px;
    background: linear-gradient(to bottom, #ffffff, #f3f7fb);
}

.hero-grid {
    display: grid;  
    grid-template-columns: 1.1fr 1fr;  
    gap: 40px;  
    align-items: stretch;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #111827;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 18px;
}

.hero-highlight-text {  
    font-weight: 700;  
    color: var(--primary-dark);  
    background: #e8f5e9;  
    padding: 0 3px;  
    border-radius: 4px;  
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    border-radius: 999px;
    padding: 7px 14px;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 1.65rem;
    text-align: justify;
    font-weight: 700;
    color: var(--muted);
}

.hero-card {
    background: var(--card-bg);  
    border-radius: 18px;  
    padding: 16px;  
    box-shadow: var(--shadow-soft);  
    display: flex;  
    flex-direction: column;  
    height: 100%;
    max-height: fit-content;    /* não ultrapassa o conteúdo da coluna esquerda */
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
}

.hero-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.hero-card-text {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ----- Carrossel lateral do Hero ----- */

.hero-carousel-header {
  margin-bottom: 12px;
}

.hero-carousel-badge {
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  /* background: #e8f5e9; */
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 6px;
}

.hero-carousel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

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

/* “Tela” do carrossel */
.hero-carousel-frame {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  margin-top: 8px;
  max-height: 520px;          /* limita a altura máxima */  
  min-height: 320px;          /* garante altura mínima */
}

.hero-carousel-frame-quote-box {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  margin-top: 8px;
  
  min-height: 320px;          /* garante altura mínima */
}

/* Mantém proporção agradável (tipo “story”) */
/* .hero-carousel-frame {
  aspect-ratio: 9 / 16;
} */

/* Faixa com todos os slides */
.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

/* Cada slide ocupa 100% da largura disponível */
.hero-slide {
  min-width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Setas de navegação */
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.hero-carousel-arrow:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.hero-carousel-arrow--prev {
  left: 8px;
}

.hero-carousel-arrow--next {
  right: 8px;
}

/* Dots de navegação */
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.1s ease, width 0.2s ease;
}

.hero-dot.active {
    background: var(--primary);
    width: 14px;
    transform: scale(1.05);
}

/* ----- Responsividade do carrossel ----- */

@media (max-width: 960px) {
  .hero-card.hero-carousel {
        max-width: 420px;
        margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-carousel-frame {  
        max-height: 400px;  /* limita altura no tablet */
  }

  .quote-box .hero-carousel-frame {  
        aspect-ratio: 4 / 5;      /* mantém agradável no mobile também */
        min-height: 320px;        /* menor no tablet */
  }
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1 1 90px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 3px;
}

.stat-value {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

/* Seção - Como funciona */

.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 28px;
}

.section-kicker {
    font-size: 3.0rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #111827;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: justify;
    color: var(--muted);
    max-width: 520px;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-soft);
}

/* Container dos botões na seção */  
.section-buttons {  
    display: flex;  
    gap: 1rem;  
    justify-content: center;  
    align-items: center;  
    flex-wrap: wrap;  
    margin-top: 2rem;  
}  
  
/* Botão secundário */  
.btn-secondary {  
    display: inline-block;  
    padding: 9px 20px;
    font-size: 1.4rem;  
    font-weight: 500;  
    text-decoration: none;  
    border: 2px solid var(--primary);  
    color: var(--primary);  
    background-color: transparent;  
    border-radius: 999px;  
    cursor: pointer;  
    transition: all 0.3s ease;  
}  
  
.btn-secondary:hover {  
    background-color: var(--primary);  
    color: #fff;  
    transform: translateY(-2px);  
    box-shadow: 0 4px 12px rgba(51, 192, 90, 0.3);  
}

/* Responsivo - empilhar no mobile */  
@media (max-width: 640px) {  
    .section-buttons {  
        flex-direction: column;  
        width: 100%;  
    }  
  
    .section-buttons .btn-primary,  
    .section-buttons .btn-secondary {  
        width: 100%;  
        text-align: center;  
    }  
}

/* Cards de imagem nos passos (4:3) */  
.card-step-image {  
    padding: 0;              /* Remove todo o padding */  
    overflow: hidden;        /* Garante que nada vaze do border-radius */  
    position: relative;      /* Para posicionar o número por cima */  
}

.step-image-wrapper {  
    width: 100%;  
    aspect-ratio: 4/3;      /* Mantém 4:3 */
    min-height: 320px;        /* AUMENTADO - era menor */
    border-radius: 12px;  
    overflow: hidden;  
    background: #e5e7eb;      /* cor de fundo caso a imagem demore a carregar */    
}  
  
.step-image-wrapper img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;        /* preenche sem distorcer */  
    display: block;  
}

/* Ajuste específico para o 3º card de passo */
.card-step-image-3 .step-image-wrapper {
  aspect-ratio: auto;       /* deixa a imagem usar o próprio formato */
  height: auto;
}

.card-step-image-3 .step-image-wrapper img {
  width: 100%;
  height: auto;             /* não estica na vertical */
  object-fit: contain;      /* mostra a imagem inteira sem cortar */
}

.card-step-image-3 .step-image-wrapper {
  background: #f7c602;      /* por ex: um amarelo claro / ajuste à sua paleta */
}

.card-step-image .card-step {  
    position: absolute;       /* Fica flutuando sobre a imagem */  
    top: 12px;  
    left: 12px;  
    z-index: 2;  
    width: 48px;              /* AUMENTADO - era 32px */  
    height: 48px;             /* AUMENTADO - era 32px */
    border-radius: 999px;  
    background: rgba(255, 255, 255, 0.95);  /* fundo branco semi-opaco */  
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    color: var(--primary-dark);  
    font-weight: 700;  
    font-size: 1rem;  
    margin-bottom: 0;         /* Remove margem */  
}

.card-step {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.card-text {
    font-size: 0.9rem;
    text-align: justify;
    color: var(--muted);
}

/* Seção benefícios CNH Fácil */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

/* Seção “Por que Easy CNH” */

.two-col {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 32px;
    align-items: center;
}

.badge-list {
    list-style: none;
    margin-top: 12px;
    display: grid;
    gap: 8px;
    margin-bottom: 12px;;
}

.badge-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 1.1rem;
    color: var(--muted);
}

.check-icon {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #e8f5e9;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.quote-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    text-align: justify;
    color: var(--muted);
    position: relative;
}

.quote-author {
    margin-top: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 0.85rem;
}

.quote-box .quote-carousel {  
    margin-top: 14px;  
}

.quote-box .hero-carousel-frame {  
   aspect-ratio: 4 / 5;        /* ou 9/16 se preferir mais alto */  
    min-width: 500px;
    margin-top: 8px;
    min-height: 500px;
}

.quote-box .hero-slide {  
    width: 100%;  
    height: 100%;  
}

.quote-box .hero-slide img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;          /* preenche todo o espaço sem distorcer */  
    display: block;  
}

/* FAQ pequeno */

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

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Cabeçalho da pergunta */
.faq-question-btn {
    width: 100%;
    padding: 16px 18px;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.faq-question-btn span:first-child {
    font-weight: 600;
    font-size: 0.98rem;
    color: #111827;
    text-align: left;
}

.faq-icon {
    font-size: 2.0rem;
    color: var(--primary-dark);
    transition: transform 0.2s ease;
}

/* Conteúdo da resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 18px;
    background: #f9fafb;
}

.faq-answer p {
    padding: 0 0 16px;
    font-size: 1.2rem;
    color: var(--muted);
    text-align: justify;
}

/* Estado aberto */
.faq-item.open .faq-answer {
    max-height: 400px; /* suficiente para a maioria das respostas */
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Blocos de FAQ segmentados (aluno / instrutor) */
.faq-block {
  margin-top: 22px;
}

.faq-block + .faq-block {
  margin-top: 28px; /* espaço entre os dois grupos */
}

.faq-block-title {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 10px;
}

Copy
/*
 Botões de filtro da FAQ */  
.faq-filters {  
  display: flex;  
  gap: 10px;  
  justify-content: center;  
  margin-bottom: 20px;  
  flex-wrap: wrap;  
}  
  
.faq-filter-btn {  
  background: #ffffff;  
  color: var(--muted);  
  border: 1px solid #e5e7eb;  
  border-radius: 999px;  
  padding: 10px 22px;  
  font-weight: 600;  
  font-size: 0.95rem;  
  cursor: pointer;  
  transition: all 0.2s ease;  
}  
  
.faq-filter-btn:hover {  
  border-color: var(--primary);  
  color: var(--primary-dark);  
}  
  
.faq-filter-btn.active {  
  background: var(--primary);  
  color: #ffffff;  
  border-color: var(--primary);  
  box-shadow: 0 4px 12px rgba(51, 192, 90, 0.3);  
}

/* Mobile: nada de grid, já é lista */
@media (max-width: 768px) {
    .faq-list {
        gap: 8px;
    }
}

/* CTA final */

.section-cta-final {  
    padding: 40px 0;  
    background: #111827;    /* fundo escuro em 100% da largura */  
    color: #e5e7eb;  
}

.cta {
    padding: 26px 22px;  
    display: flex;  
    flex-wrap: wrap;  
    align-items: center;  
    justify-content: space-between;  
    gap: 18px;
}

.cta-title {  
    font-size: 1.3rem;  
    margin-bottom: 4px;  
}  
  
.cta-text {  
    font-size: 0.9rem;  
    color: #9ca3af;  
    max-width: 420px;
    text-align: justify;
}

.btn-cta {
    background: var(--accent);
    color: #022c22;
    border-radius: 999px;
    border: none;
    padding: 11px 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-cta:hover {
    background: #00b341;
    transform: translateY(-1px);
}

/* Estilos para o CTA final */  
.section-cta-final {  
    background-color: var(--background-dark); /* Cor de fundo que você já definiu */  
    padding: 4rem 0; /* Ajuste o padding conforme necessário */  
}  
  
.cta {  
    max-width: 1200px; /* Largura máxima para alinhar com o conteúdo principal */  
    margin: 0 auto;    /* Centraliza o CTA na página */  
    padding: 0 1.5rem; /* Padding lateral para não colar nas bordas */  
    text-align: center; /* Centraliza o texto e a logo */  
    color: #fff;       /* Cor do texto para contraste com o fundo escuro */  
}  
  
.cta-final-logo {  
    margin-bottom: 2rem; /* Espaço entre a logo e o título */  
}  
  
.cta-final-logo img {  
    height: 60px; /* Tamanho da logo, ajuste conforme necessário */  
    width: auto;  
    display: block; /* Para que margin: auto funcione */  
    margin: 0 auto; /* Centraliza a imagem da logo */  
}  
  
.cta-final-content h2 {  
    font-size: 2.5rem; /* Ajuste o tamanho do título */  
    margin-bottom: 1rem;  
}  
  
.cta-final-content p {  
    font-size: 1.1rem;  
    margin-bottom: 2rem;  
}

/* Footer */

footer {
    padding: 22px 0 26px;  
    font-size: 0.8rem;  
    color: #9ca3af;  
    background: #111827;
}

.footer-content {  
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    gap: 12px;  
    flex-wrap: wrap;  
    border-top: 1px solid rgba(148, 163, 184, 0.4);  
    padding-top: 14px;  
    margin-top: 10px;  
}  
  
.footer-links a {  
    color: #9ca3af;  
}  
  
.footer-links a:hover {  
    color: var(--primary);  
}

/* Modal */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 40;
    padding: 16px;
}

.modal {
    background: #ffffff;
    border-radius: 18px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
    padding: 20px 22px 22px;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #9ca3af;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.modal-body {
    /* Aqui você cola o formulário existente */
    padding-top: 4px;  
    background: transparent;  
    border-radius: 0;  
    min-height: auto;  
    font-size: 0.9rem;  
    color: inherit;
}

/* Formulário da lista (modal) */

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Grupo "Você é: aluno / instrutor" */
.lead-form-role-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 4px;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
}

/* Pills de radio */
.radio-pill {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.85rem;
  color: var(--muted);
  background: #ffffff;
  transition: all 0.2s ease;
}

.radio-pill input:checked + span {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(51, 192, 90, 0.4);
}

/* Campos de texto/select */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111827;
}

.field-group input,
.field-group select {
    border-radius: 999px;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    background: #ffffff;
}

.field-group input:focus,
.field-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(51, 192, 90, 0.3);
}

/* Estado de erro */
.field-error {
    border-color: #dc2626 !important;
    background: #fef2f2;
}

/* Card de benefícios */
.lead-benefits-card {
    margin-top: 4px;
    background: var(--accent);
    border-radius: 12px;
    padding: 10px 12px;
    color: #022c22;
    font-size: 0.83rem;
    text-align: left;
}

.lead-benefits-card strong {
    /* display: block; */
    margin-bottom: 2px;
}

/* Feedback de envio */
.form-feedback {
    margin-top: 4px;
    font-size: 0.83rem;
    min-height: 16px;
}

.form-feedback--error {
    color: #b91c1c;
}

.form-feedback--success {
    color: #166534;
}

/* Botão cheio na modal */
.btn-full {
    width: 100%;
    margin-top: 4px;
}

/* Termos */
.form-terms {
    margin-top: 8px;
    font-size: 0.76rem;
    color: var(--muted);
    text-align: left;
}

.form-terms a {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsividade */

@media (max-width: 960px) {
    .hero-grid,
    .two-col {
    grid-template-columns: 1fr;
    }

    .hero-grid {
    gap: 32px;
    }

    .hero {
    padding-top: 26px;
    }

    .section {
    padding: 32px 0;
    }

    .cta {
    padding: 22px 18px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-end;
        gap: 14px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {  
        grid-template-columns: 1fr;  
        gap: 24px;  
    }

    .step-image-wrapper {  
        min-height: 280px;      /* um pouco menor no tablet */  
    }
    
    .stats-row {
        gap: 16px;
    }

    .cta-final-logo img {  
        height: 48px; /* Logo menor em telas menores */  
    }  
    
    .cta-final-content h2 {  
        font-size: 2rem;  
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-card.hero-carousel {
        padding: 14px;
    }

    .hero-carousel-frame {  
            max-height: 350px;  /* NOVO: ajusta para telas menores */  
            min-height: 280px;  
    }

    .hero-carousel-title {
            font-size: 0.95rem;
    }

    .hero-carousel-text {
            font-size: 0.8rem;
    }

    .hero-carousel-arrow {
            width: 26px;
            height: 26px;
            font-size: 16px;
    }

    .quote-box .hero-carousel-frame {  
            min-height: 280px;        /* menor no mobile */  
    }

    .step-image-wrapper {  
            min-height: 240px;      /* menor no mobile */  
    }  
        
    .card-step-image .card-step {  
            width: 40px;  
            height: 40px;  
            font-size: 1.25rem;  
            top: 12px;  
            left: 12px;  
    }

    .faq-filter-btn {  
        flex: 1 1 140px;  
        text-align: center;  
    }

    .cta-final-logo img {  
        height: 40px;  
    }  
    
    .cta-final-content h2 {  
        font-size: 1.8rem;  
    }
}