/*
 * style.css - Folha de estilo premium, moderna e responsiva para MKT Ultra
 */

/* Importação de fontes modernas */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #001A3F;       /* Azul Escuro Corporativo */
    --accent: #0052CC;        /* Azul Vibrante Call To Action */
    --accent-hover: #0043a4;  /* Accent hover */
    --cyan: #00D5FF;          /* Ciano de Destaque */
    --bg-light: #F4F6FC;      /* Cinza Azulado Claro */
    --text-dark: #1E293B;     /* Slate Dark Text */
    --text-light: #64748B;    /* Slate Medium Text */
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    --success: #10B981;
    --navy-dark: #030C1B;     /* Azul Escuro Noturno */
    --navy-light: #0A1931;    /* Azul Escuro Médio */
    --shadow-sm: 0 2px 4px rgba(0, 26, 63, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 26, 63, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 26, 63, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Outfit', sans-serif;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

/* Header & Menu de Navegação */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 95px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    height: 75px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 55px;
}

.logo-sub {
    display: none; /* Ocultado pois o texto já está no logotipo */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.nav-links a.btn {
    color: var(--white);
}

.nav-links a.btn:hover {
    color: var(--white);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Menu Mobile (Hamburger) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary);
}

/* Seção Hero */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-badges svg {
    color: var(--success);
}

/* Laptop & Funnel Mockup na Hero */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.laptop-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: #000;
    padding: 12px;
    border: 3px solid #334155;
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--primary);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

/* Dashboard Mockup Simplificado em CSS */
.dashboard-mockup {
    color: var(--white);
    font-family: sans-serif;
    padding: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 0.6rem;
}

.db-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.db-title {
    font-weight: bold;
    color: var(--cyan);
}

.db-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.db-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.db-card-title {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.db-card-value {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--white);
}

.db-card-trend {
    color: var(--success);
    font-size: 0.5rem;
}

.db-chart-area {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.db-chart-title {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.7);
}

.db-chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
    height: 40px;
    padding: 0 10px;
}

.db-bar {
    width: 12px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--cyan) 100%);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
    from { height: 0; }
}

/* Floating Funnel Mockup */
.funnel-floating {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 140px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.funnel-small-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.funnel-item-sm {
    height: 10px;
    background: var(--accent);
    margin-bottom: 4px;
    border-radius: 2px;
    opacity: 0.9;
}

.funnel-item-sm:nth-child(2) { width: 90%; background: #2563EB; }
.funnel-item-sm:nth-child(3) { width: 70%; background: #3B82F6; }
.funnel-item-sm:nth-child(4) { width: 50%; background: #60A5FA; }

/* Seção Desafios */
.section-padding {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.challenge-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 82, 204, 0.2);
}

.challenge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: var(--accent);
    font-size: 1.3rem;
}

.challenge-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.challenge-card p {
    font-size: 0.9rem;
}

/* Seção Método */
.bg-light-sec {
    background-color: var(--bg-light);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

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

.method-card:hover::before {
    opacity: 1;
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: #EFF6FF;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.method-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.method-card p {
    font-size: 1rem;
}

/* Seção Diagnóstico de Funil */
.diagnostic-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.diagnostic-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.checklist {
    list-style: none;
    margin: 30px 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.checklist li svg {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Funil CSS customizado */
.funnel-visual {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funnel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.funnel-stage {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.funnel-stage:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.funnel-stage-1 { background-color: #001A3F; width: 100%; }
.funnel-stage-2 { background-color: #003366; width: 90%; margin: 0 auto; }
.funnel-stage-3 { background-color: #004D99; width: 80%; margin: 0 auto; }
.funnel-stage-4 { background-color: #0066CC; width: 70%; margin: 0 auto; }
.funnel-stage-5 { background-color: #0080FF; width: 60%; margin: 0 auto; }

.funnel-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
}

.funnel-result {
    width: 50%;
    margin: 12px auto 0 auto;
    background-color: #FF5A5F;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

/* Seção Dashboard & ROI */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Laptop mockup para seção ROI */
.roi-visual-laptop {
    width: 100%;
    max-width: 550px;
    border-radius: 16px;
    background: #0F172A;
    border: 4px solid #334155;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 16px;
}

.roi-db-mockup {
    color: var(--white);
}

.roi-db-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.roi-db-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.roi-db-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-db-card-label {
    font-size: 0.65rem;
    color: #94A3B8;
}

.roi-db-card-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 4px;
}

.roi-db-chart {
    height: 140px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.roi-chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-grow: 1;
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.roi-chart-bar {
    width: 32px;
    background: var(--accent);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    min-height: 10px;
    transition: var(--transition);
}

.roi-chart-bar:hover {
    background: var(--cyan);
}

.roi-chart-bar:nth-child(even) {
    background: rgba(0, 82, 204, 0.6);
}

/* Seção Tecnologia */
.tech-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.tech-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.tech-card img, .tech-card svg {
    width: 32px;
    height: 32px;
}

.tech-card span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

/* Seção Resultados e Depoimentos */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.results-graph-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

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

/* Depoimentos */
.testimonials-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.google-reviews-card {
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #FBBF24;
    font-size: 1.2rem;
    margin: 4px 0;
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Como Funciona */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

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

.step-card p {
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-light);
}

.faq-answer p {
    padding-top: 10px;
    font-size: 0.95rem;
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45s);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Logos Clientes */
.logo-cloud {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    opacity: 0.6;
}

.client-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

/* Seção CTA Final */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: #94A3B8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.cta-footer-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    color: #94A3B8;
}

.cta-footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Rodapé */
footer {
    background-color: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    color: #64748B;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo {
    text-decoration: none;
    color: var(--white);
    font-weight: 800;
}

.footer-copy {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #64748B;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--cyan) !important;
}

/* MODAL / Formulário de Diagnóstico Interativo */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 16px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    padding: 32px 32px 16px 32px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-body {
    padding: 32px;
}

/* Formulário Passo a Passo */
.step-form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

.step-form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-bar-fill {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    z-index: 2;
    transition: var(--transition);
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.progress-step.active {
    border-color: var(--accent);
    color: var(--accent);
    background-color: #EFF6FF;
}

.progress-step.completed {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--white);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

/* Opções personalizadas para perguntas */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.option-box {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.option-box:hover {
    border-color: var(--accent);
    background-color: #EFF6FF;
}

.option-box.selected {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--white);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Página de Obrigado */
.thankyou-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #EFF6FF 0%, #FFFFFF 100%);
    padding: 40px 24px;
    text-align: center;
}

.thankyou-content {
    max-width: 650px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    background-color: #D1FAE5;
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px auto;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thankyou-content p {
    margin-bottom: 32px;
}

.agenda-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    text-align: left;
}

.agenda-card h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* RESPONSIVIDADE (MOBILE & TABLET ADJUSTMENTS) */

@media (max-width: 1200px) {
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .diagnostic-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        z-index: 99;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .cta-footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        padding: 24px;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
