:root {
    --bg-main: #000000;
    --bg-header: rgba(10, 10, 10, 0.9);
    --bg-card: #0a0a0a;
    --bg-card-dark: #121214;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --primary-color: #2563eb;
    --border-color: #1f1f23;
    --pill-bg: rgba(255, 255, 255, 0.03);
    --btn-cta-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --gemini-gradient: linear-gradient(90deg, #4285f4, #9b72cb, #d96570, #f4af42, #4285f4);
    /* Cores Planos */
    --plan-bg-light: #ffffff;
    --plan-text-dark: #0f172a;
    --plan-highlight: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    /* Cor Métrica */
    --metric-gradient: linear-gradient(135deg, #4ade80 0%, #3b82f6 100%);
}

body.light-mode {
    --bg-main: #f8fafc;
    --bg-header: rgba(255, 255, 255, 0.9);
    --bg-card: #ffffff;
    --bg-card-dark: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --pill-bg: #e2e8f0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 4000;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus {
    top: 0.75rem;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

body { 
    font-family: 'Outfit', system-ui, sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-primary); 
    transition: background-color 0.2s ease, color 0.2s ease; 
    line-height: 1.6; 
    overflow-x: hidden; 
    position: relative;
}

body.is-theme-switching,
body.is-theme-switching * {
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

h1, h2, h3, .plan-title {
    font-family: 'Syne', 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* --- EFEITOS DE BRILHO (GLOW) NO FUNDO --- */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}
.glow-top {
    top: -10%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.5), transparent 70%);
}
.glow-bottom {
    bottom: 20%;
    right: 5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.3), transparent 70%);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 1; }

/* Header & Nav */
header { 
    background: var(--bg-header); 
    -webkit-backdrop-filter: blur(10px); /* Blindagem Safari */
    backdrop-filter: blur(10px); 
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}
header .container.navbar { position: relative; }
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
}
.logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}
.header-logo {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}
.pill-menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    justify-self: center;
    max-width: 100%;
    background: var(--pill-bg);
    border-radius: 50px;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
    gap: 0;
}
.pill-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 0.45rem 0.85rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}
.pill-menu a:hover, .pill-menu a.active { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); }
body.light-mode .pill-menu a:hover,
body.light-mode .pill-menu a.active { background: rgba(15, 23, 42, 0.06); }

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
    flex-shrink: 0;
}
.theme-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, border-color 0.3s;
    flex-shrink: 0;
}
.theme-btn:hover { color: var(--text-primary); border-color: var(--text-secondary); }
body.dark-mode .theme-btn .icon-moon { display: none; }
body.light-mode .theme-btn .icon-sun { display: none; }
body.dark-mode .icon-moon { display: none; }
body.light-mode .icon-sun { display: none; }

.btn-signup {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-signup:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}
body.light-mode .btn-signup:hover {
    background: rgba(15, 23, 42, 0.04);
}
.btn-login {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.55rem 1.15rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* Hero Section */
.hero {
    padding: 10.5rem 0 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
}

/* --- Status Badge Piscante --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-top-info { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-bottom: 1.5rem; z-index: 2; position: relative; }
.top-logo { height: 42px; width: auto; object-fit: contain; }
.hero-main-text { z-index: 2; position: relative; }
.hero-main-text h1 {
    font-size: clamp(2.1rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    padding: 0 0.25rem;
}
.hero-main-text h1 span { color: var(--primary-color); }
.hero-main-text p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    padding: 0 0.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; z-index: 2; position: relative; }
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    transition: border-color 0.2s, transform 0.2s;
}
.btn-cta-secondary:hover {
    border-color: rgba(37, 99, 235, 0.65);
    background: rgba(37, 99, 235, 0.08);
    transform: scale(1.02);
}

.hero-trust {
    margin: 1.25rem auto 0;
    max-width: 640px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    padding: 0 0.75rem;
}
.hero-trust a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}
.hero-trust a:hover { text-decoration: underline; }

.icon-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.5rem;
    padding: 0.15rem 0.45rem;
    margin-right: 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    flex-shrink: 0;
}
.plan-highlight .icon-soon {
    color: #78350f;
    background: rgba(254, 243, 199, 0.95);
}

.form-alt {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.form-alt a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
}
.form-alt a:hover { text-decoration: underline; }

.social-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    background: #16a34a;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s, background 0.2s;
}
.social-whatsapp:hover {
    background: #15803d;
    transform: translateY(-2px);
    color: #fff;
}

/* Botões Principais */
.btn-cta, .btn-faq { 
    background: var(--btn-cta-gradient); 
    color: #ffffff; 
    padding: 1.2rem 2.8rem; 
    border-radius: 50px; 
    font-weight: 800; 
    text-decoration: none; 
    font-size: 1.1rem; 
    transition: transform 0.3s ease; 
    display: inline-block; 
    position: relative; 
    z-index: 2; 
}
.btn-faq { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-cta::before, .btn-faq::before { 
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 60px; 
    background: rgba(37, 99, 235, 0.45);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.35;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.btn-cta:hover::before, .btn-faq:hover::before { opacity: 0.55; }
.btn-cta:hover, .btn-faq:hover { transform: scale(1.03); }

/* Avatar Group */
.avatar-group-wrapper { display: flex; align-items: center; gap: 1rem; background: rgba(255, 255, 255, 0.03); padding: 0.5rem 1rem 0.5rem 0.5rem; border-radius: 50px; border: 1px solid rgba(255,255,255,0.05); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);}
.avatar-group { display: flex; align-items: center; }
.avatar-group img, .avatar-count { width: 35px; height: 35px; border-radius: 50%; border: 2px solid var(--bg-main); object-fit: cover; position: relative; }
.avatar-group img:not(:first-child), .avatar-count { margin-left: -12px; }
.avatar-count { background: var(--metric-gradient); color: #0f172a; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.7rem; z-index: 1; }
.avatar-text { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; }

/* --- Floating Dashboard Widgets --- */
.floating-widgets {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 4.5rem;
    width: 100%;
    max-width: 1180px;
    position: relative;
    z-index: 2;
    padding-inline: 0.25rem;
}

.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: default;
    box-shadow: var(--shadow);
    flex: 1 1 340px;
    max-width: 380px;
    min-width: 0;
    min-height: 92px;
    box-sizing: border-box;
}

/* Hover sem zoom, apenas ativando o brilho azul premium suave */
.widget-card:hover {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15); 
    border-color: rgba(37, 99, 235, 0.4);
}

.widget-left { display: flex; align-items: center; gap: 1.2rem; min-width: 0; }
.widget-icon { font-size: 1.6rem; }
.widget-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }

.widget-label { 
    font-size: 0.8rem; 
    color: var(--text-secondary); /* Alteração: Cinza adaptável */
    font-weight: 500; 
    margin-bottom: 0.2rem; 
}
.widget-value { 
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-primary);
    font-weight: 700; 
    letter-spacing: -0.03em;
    line-height: 1.25;
    white-space: nowrap;
}

.widget-tag { font-size: 0.7rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }
.tag-green { color: #4ade80; background: rgba(74, 222, 128, 0.1); border: 1px solid rgba(74, 222, 128, 0.2); }
.tag-blue { color: #60a5fa; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }

/* Animações de flutuação limpas */
.float-1 { animation: floatCard 6s ease-in-out infinite; z-index: 3;}
.float-2 { animation: floatCard 7s ease-in-out infinite 1s; z-index: 2;}
.float-3 { animation: floatCard 5s ease-in-out infinite 2s; z-index: 1;}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.avatar-text { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }

/* SEÇÃO DE MÉTRICAS */
.metrics { padding: 4rem 0 6rem; text-align: center; }
.gradient-text {
    background: var(--metric-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    justify-items: center;
    box-sizing: border-box;
}
.metric-item {
    width: 100%;
    max-width: 200px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.metric-item h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.2;
    width: 100%;
    text-align: center;
}
.metric-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: center;
}

/* COMPARAÇÃO LADO A LADO */
.comparison { padding: 5rem 0; }
.comparison-header { text-align: center; margin-bottom: 4rem; }
.comparison-header h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -1px; padding: 0 0.5rem; }
.comparison-header p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
.compare-card { padding: 3rem; border-radius: 24px; position: relative; }

.card-gestor { background-color: var(--bg-card-dark); border: none; display: flex; flex-direction: column; gap: 1.5rem; transition: background 0.3s; }
.card-gestor h3 {
    font-size: 2rem;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.gemini-border::before {
    content: ""; position: absolute; inset: -2px; border-radius: 26px; padding: 3px;
    background: var(--gemini-gradient); background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude;
    animation: moveGradient 4s linear infinite; pointer-events: none;
}
@keyframes moveGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.card-others { background: linear-gradient(180deg, #ef4444 0%, #7f1d1d 100%); color: white; box-shadow: 0 10px 40px rgba(239, 68, 68, 0.2); }
.card-others h3 { font-size: 2rem; text-align: center; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1.5rem; color: white; letter-spacing: -1px; }

.compare-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.compare-list li { display: flex; align-items: center; gap: 1.2rem; font-size: 1rem; line-height: 1.4; }
.card-gestor .compare-list li { color: var(--text-primary); font-weight: 600; }
.card-others .compare-list li { color: #fecaca; }

.icon-check { color: #4ade80; font-size: 1.3rem; font-weight: 900; background: rgba(74, 222, 128, 0.1); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
.icon-x { color: white; font-size: 1.3rem; font-weight: 900; background: rgba(255, 255, 255, 0.2); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }

/* SOBRE NÓS */
.about-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(37, 99, 235, 0.12), transparent 55%),
        var(--bg-main);
}
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: start;
    max-width: 1100px;
}
.about-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 1rem;
}
.about-copy h2 {
    font-family: 'Syne', 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
    max-width: 18ch;
}
.about-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 1rem;
    max-width: 38rem;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-pillars {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-pillars li {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}
.about-pillars li:first-child {
    padding-top: 0;
    border-top: none;
}
.about-pillars strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.about-pillars span {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-copy h2 { max-width: none; }
}

/* SEÇÃO DE AVALIAÇÕES */
.testimonials { padding: 5rem 0; background: transparent; }
.depoimentos-section { padding: 5rem 0 2rem; background: transparent; }
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.depoimento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.depoimento-card__top {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.depoimento-card__foto {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}
.depoimento-card__meta strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
}
.depoimento-card__meta span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.depoimento-card__texto {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}
.depoimento-card__ig {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.92rem;
}
.depoimento-card__ig:hover { text-decoration: underline; }
.depoimento-card__ig-icon {
    flex-shrink: 0;
    opacity: 0.92;
}
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -1px; padding: 0 0.5rem; }
.testimonials-header p { font-size: 1.2rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.test-card { background: var(--bg-card); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 1.5rem; transition: transform 0.3s, box-shadow 0.3s; }
.test-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,255,255,0.1); }

.stars { color: #fbbf24; font-size: 1.5rem; letter-spacing: 2px; }
.test-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.75rem;
}
.test-text { color: var(--text-secondary); font-style: normal; line-height: 1.6; flex-grow: 1; }
.pricing-footnote {
    max-width: 720px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.test-user { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.test-user img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.user-details { display: flex; flex-direction: column; }
.user-details strong { color: var(--text-primary); font-size: 1rem; }
.user-details span { color: var(--primary-color); font-size: 0.85rem; font-weight: 600; }

/* SEÇÃO DE PLANOS */
.pricing { padding: 5rem 0 8rem; }
.pricing-header { text-align: center; margin-bottom: 4rem; }
.pricing-header h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); color: var(--text-primary); margin-bottom: 1rem; letter-spacing: -1px; padding: 0 0.5rem; }
.pricing-header p { font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--text-secondary); max-width: 640px; margin: 0 auto; padding: 0 0.75rem; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    padding-top: 1.25rem;
}
.pricing-card {
    background: var(--plan-bg-light);
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.plan-subtitle { font-size: 0.9rem; color: #64748b; min-height: 40px; margin-bottom: 1rem; }
.plan-title { font-size: 2.5rem; color: var(--plan-text-dark); margin-bottom: 2rem; letter-spacing: -1px; }
.plan-features { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.2rem; font-size: 0.95rem; color: #334155; }
.icon-check-small { color: #22c55e; font-weight: bold; font-size: 1.1rem; }
.plan-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; color: var(--plan-text-dark); }
.price-prefix { font-size: 1.5rem; font-weight: 700; }
.price-value {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    line-height: 1.05;
}
.cents { font-size: 0.45em; font-weight: 700; line-height: 1.2; margin-top: 0.35rem; margin-left: 2px; }
.plan-billing { font-size: 0.9rem; color: #64748b; margin-bottom: 2rem; font-weight: 500;}

.btn-plan { width: 100%; text-align: center; padding: 1.1rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: transform 0.2s, opacity 0.2s; position: relative; z-index: 2; cursor: pointer; }
.btn-plan:hover { transform: scale(1.02); opacity: 0.9; }
.btn-plan-light { background: #e2e8f0; color: #0f172a; }

.plan-highlight {
    background: var(--plan-highlight);
    transform: none;
    z-index: 2;
    border: none;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
    padding-top: 3.25rem;
}
.plan-highlight::before { display: none !important; }
.text-light { color: #ffffff !important; }
.plan-highlight .plan-features li { color: #ffffff; font-weight: 700; }
.plan-highlight .icon-check-small { color: #4ade80; }
.btn-plan-dark {
    background: #ffffff;
    color: #1d4ed8;
}
.btn-plan-dark:hover {
    background: #f8fafc;
    color: #1e40af;
}
.badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--primary-color);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
    white-space: nowrap;
}

/* SEÇÃO DE DÚVIDAS (FAQ) */
.faq-section { padding: 6rem 0; background-color: var(--bg-card); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);}
.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-accent-line { width: 60px; height: 4px; background: var(--gemini-gradient); margin-bottom: 1.5rem; border-radius: 2px; }
.faq-left h2 { font-size: 2.5rem; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.2; letter-spacing: -1px; }
.faq-left p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.6; }

.faq-right { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--border-color); border-radius: 12px; background: var(--bg-main); overflow: hidden; transition: border-color 0.3s; }
.faq-item.active { border-color: var(--primary-color); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; color: var(--text-primary); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Outfit', system-ui, sans-serif; }
.faq-icon { font-size: 1.5rem; color: var(--text-secondary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; padding: 0 1.5rem; }
.faq-item.active .faq-answer { max-height: 720px; padding: 0 1.5rem 1.5rem 1.5rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* CAPTURA */
.capture { padding: 6rem 0; margin: auto; position: relative;}
.hero-form { background: var(--bg-card); padding: 3.5rem; border-radius: 24px; border: 1px solid var(--border-color); box-shadow: var(--shadow); max-width: 550px; margin: 0 auto; text-align: center; position: relative; z-index: 2;}
.hero-form h3 { margin-bottom: 0.8rem; font-size: 1.8rem; letter-spacing: -1px;}
.hero-form p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 2rem; }
form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}
.form-field > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.45;
}
.form-consent input {
    width: auto;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}
.form-consent a {
    color: var(--primary-color);
    font-weight: 600;
}
input { padding: 1.2rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color); border-radius: 12px; font-size: 1rem; color: var(--text-primary); transition: border-color 0.3s, background 0.3s; width: 100%;}
input:focus { outline: none; border-color: var(--primary-color); background: rgba(255, 255, 255, 0.05);}
input:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.btn-submit {
    background: var(--btn-cta-gradient);
    color: #ffffff;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s, filter 0.2s;
    position: relative;
    z-index: 2;
    width: 100%;
}
.btn-submit:hover { transform: scale(1.02); filter: brightness(1.06); }

/* RODAPÉ (SITE-FOOTER) */
.site-footer { background-color: var(--bg-card); padding: 5rem 0 2rem; border-top: 1px solid var(--border-color); margin-top: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 3rem; }
.footer-about { flex: 1; max-width: 450px; }
.footer-logo { height: 40px; margin-bottom: 1.5rem; }
.footer-about p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s, opacity 0.3s;
    cursor: pointer;
}
.footer-links a:hover { opacity: 0.85; text-decoration: underline; }
.separator { color: var(--text-secondary); margin: 0 0.5rem; }

.footer-social { display: flex; gap: 0.75rem; flex: 1; justify-content: center; align-items: center; }
.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, color 0.2s, opacity 0.2s;
    border: 1px solid var(--border-color);
}
.social-icon svg { display: block; }
.social-icon:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); }
.social-icon--soon,
.social-icon[aria-disabled="true"] {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.footer-action { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}
.footer-plataforma {
    color: var(--text-secondary);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    opacity: 0.22;
    transition: opacity 0.15s ease;
}
.footer-plataforma:hover {
    opacity: 0.45;
    color: var(--text-secondary);
}
body.light-mode .footer-plataforma { opacity: 0.26; }
body.light-mode .footer-plataforma:hover { opacity: 0.48; }
.btn-top-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.btn-top-link:hover { color: var(--primary-color); }

.footer-divider { height: 1px; background: var(--border-color); margin-bottom: 1.5rem; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.footer-locale {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.footer-flag {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* FAB: ícone → texto (animação suave; colapsa 2s após sair) */
.btn-float-wa {
    --fab-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 56px;
    padding: 0 15px;
    gap: 0;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition:
        padding 0.5s var(--fab-ease),
        gap 0.5s var(--fab-ease),
        background 0.25s ease,
        box-shadow 0.25s ease;
}
.btn-float-wa__icon {
    flex-shrink: 0;
    display: block;
}
.btn-float-wa__label {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transform: translateX(8px);
    transition:
        max-width 0.5s var(--fab-ease),
        opacity 0.35s ease 0.06s,
        transform 0.5s var(--fab-ease);
}
.btn-float-wa.is-expanded,
.btn-float-wa:focus-visible {
    padding: 0 1.2rem 0 0.95rem;
    gap: 0.55rem;
}
.btn-float-wa.is-expanded .btn-float-wa__label,
.btn-float-wa:focus-visible .btn-float-wa__label {
    max-width: 14rem;
    opacity: 1;
    transform: translateX(0);
}
.btn-float-wa.is-collapsing .btn-float-wa__label {
    transition:
        max-width 0.45s var(--fab-ease),
        opacity 0.25s ease,
        transform 0.45s var(--fab-ease);
}
.btn-float-wa:hover {
    background: #1d4ed8;
    color: #fff;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}
.btn-float-wa:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 3px;
}

body.cookie-banner-visible .btn-float-wa {
    bottom: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .btn-float-wa,
    .btn-float-wa__label {
        transition: none;
    }
}
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3000;
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    padding: 1.1rem 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__text strong { display: block; font-size: 0.95rem; }
.cookie-banner__text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    line-height: 1.45;
}
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}
.cookie-banner__btn {
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
}
.cookie-banner__btn--ok {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
}
.cookie-banner__btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.cookie-banner__link {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.cookie-banner__link:hover { text-decoration: underline; }

/* --- ESTILOS DAS JANELAS MODAIS --- */
.modal { 
    position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; 
    background-color: rgba(0,0,0,0.8); 
    -webkit-backdrop-filter: blur(8px); 
    backdrop-filter: blur(8px); 
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal.show-modal { 
    opacity: 1; visibility: visible; pointer-events: auto;
}

.modal-content { 
    background-color: var(--bg-card); margin: 5vh auto; padding: 2.5rem; border: 1px solid var(--border-color); 
    width: 90%; max-width: 800px; border-radius: 24px; color: var(--text-primary); 
    position: relative; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); 
    transform: translateY(-30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal.show-modal .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    color: var(--text-secondary);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    background: none;
    border: none;
    line-height: 1;
    padding: 0.15rem 0.35rem;
    font-family: inherit;
}
.close-modal:hover { color: var(--primary-color); }
.modal[hidden] { display: none !important; }

.modal-body { margin-top: 1.5rem; max-height: 65vh; overflow-y: auto; padding-right: 1.5rem; }
.modal-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--text-primary); font-size: 1.2rem; }
.modal-body p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; font-size: 0.95rem; }

.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-track { background: var(--bg-main); border-radius: 4px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }

/* CHECKOUT MODAL */
.checkout-content { max-width: 900px; padding: 0; overflow: hidden; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; }
.checkout-summary { background: var(--bg-card-dark); padding: 3.5rem; border-right: 1px solid var(--border-color); display: flex; flex-direction: column; justify-content: center;}
.checkout-form-container { padding: 3.5rem; }
.checkout-summary h3, .checkout-form-container h3 { margin-bottom: 1.5rem; font-size: 1.5rem; color: var(--text-primary); letter-spacing: -0.5px;}

.plan-selected, .plan-price-selected { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.label { display: block; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.3rem; }
.plan-selected strong { font-size: 1.8rem; color: var(--primary-color); letter-spacing: -1px;}
.plan-price-selected strong { font-size: 1.5rem; color: var(--text-primary); }
.checkout-note { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2rem; line-height: 1.5; background: rgba(255,255,255,0.02); padding: 1rem; border-radius: 8px; border: 1px solid var(--border-color);}

/* REVEAL UP */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }


/* --- TELA DE LOGIN --- */
.login-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-main);
    overflow-y: auto; 
    overflow-x: hidden;
    padding: 3rem 0; 
    transition: opacity 0.4s ease; 
}

.login-wrapper {
    width: 100%;
    max-width: 650px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: loginEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.btn-back {
    align-self: flex-start;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s;
}
.btn-back:hover { color: var(--primary-color); }

.login-card {
    background: var(--bg-card);
    width: 100%;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
}

.login-header { text-align: center; margin-bottom: 2.5rem; }
.login-logo { height: 45px; margin-bottom: 1.5rem; }
.login-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; letter-spacing: -0.5px; }
.login-header p { color: var(--text-secondary); font-size: 0.95rem; }

.login-form { display: flex; flex-direction: column; gap: 1.2rem; }
.input-group { text-align: left; }
.input-group label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; font-weight: 500; }
.login-form input { padding: 1rem; border-radius: 12px; font-size: 1rem; width: 100%; }

.login-options { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; margin-bottom: 0.5rem; }

/* Lembrar de mim */
.remember-me { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--text-secondary); 
    cursor: pointer; 
    white-space: nowrap; 
}

.forgot-password { color: var(--primary-color); text-decoration: none; font-weight: 600; }
.forgot-password:hover { text-decoration: underline; }

.btn-login-action { padding: 1.2rem; font-size: 1.05rem; margin-top: 0.5rem; }

.login-footer { margin-top: 2.5rem; text-align: center; font-size: 0.9rem; color: var(--text-secondary); border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.login-footer a { color: #4ade80; text-decoration: none; font-weight: 700; transition: opacity 0.3s; }
.login-footer a:hover { opacity: 0.8; }


/* Tablet / desktop estreito */
@media (max-width: 1100px) {
    .pill-menu a { padding: 0.4rem 0.65rem; font-size: 0.75rem; }
    .header-logo { height: 32px; }
    .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 2rem; }
    .metric-item { max-width: 260px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; gap: 2rem; }
    .plan-title { font-size: 2rem; }
    .hero-form { padding: 2.5rem 1.5rem; margin: 0 0.5rem; }
}

/* Mobile / tablet */
@media (max-width: 968px) {
    .mobile-menu-btn { display: block; }

    .navbar { grid-template-columns: 1fr auto; gap: 0.75rem; }
    .logo { grid-column: 1; grid-row: 1; }
    .header-actions { grid-column: 2; grid-row: 1; }

    .pill-menu {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 0;
        right: 0;
        width: 100%;
        grid-column: 1 / -1;
        justify-self: stretch;
        background: var(--bg-card);
        flex-direction: column;
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.25s ease;
        z-index: 999;
        max-width: none;
    }

    .pill-menu.show-mobile-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .pill-menu a { text-align: center; padding: 0.9rem 1rem; font-size: 1rem; }

    .hero { padding: 8.5rem 0 3.5rem; }
    .hero-top-info { flex-direction: column; text-align: center; }
    .top-logo { height: 34px; }
    .floating-widgets { margin-top: 2.5rem; gap: 1rem; padding: 0 0.25rem; }
    .widget-card { max-width: none; flex: 1 1 100%; min-height: 0; }
    .widget-value { white-space: normal; }
    .float-1, .float-2, .float-3 { animation: none; }

    .glow-top { width: 100vw; height: 100vw; left: -10%; }
    .glow-bottom { width: 100vw; height: 100vw; right: -10%; bottom: 0; }

    .metric-item h3 { font-size: 1.4rem; }
    .metric-item p { max-width: none; }

    .comparison-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .compare-card { padding: 1.75rem 1.25rem; }
    .compare-list li { align-items: flex-start; font-size: 0.95rem; }

    .test-card { padding: 1.75rem 1.25rem; }
    .pricing { padding: 3.5rem 0 5rem; }
    .pricing-card { padding: 2rem 1.35rem; }
    .plan-highlight { padding-top: 3rem; }

    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-left { position: static; text-align: center; }
    .faq-accent-line { margin: 0 auto 1.5rem; }
    .faq-left h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .faq-question { font-size: 1rem; padding: 1.15rem; gap: 0.75rem; }

    .capture { padding: 3.5rem 0; }
    .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .footer-about { max-width: 100%; }
    .footer-action { justify-content: center; width: 100%; }
    .footer-social { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
    .footer-bottom-end { align-items: center; }
    .btn-float-wa {
        right: 0.85rem;
        bottom: 0.85rem;
        height: 52px;
        min-width: 52px;
        padding: 0 13px;
    }
    body.cookie-banner-visible .btn-float-wa { bottom: 6.5rem; }

    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { border-right: none; border-bottom: 1px solid var(--border-color); padding: 1.5rem; }
    .checkout-form-container { padding: 1.5rem; }
    .modal-content { margin: 4vh auto; width: 94%; }
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }
    .login-options { flex-wrap: wrap; gap: 0.75rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 4%; }
    .metrics-grid { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.25rem; }
    .metric-item { max-width: 280px; }
    .btn-cta, .btn-cta-secondary, .btn-faq { width: 100%; max-width: 320px; padding-left: 1.25rem; padding-right: 1.25rem; }
    .btn-signup { padding: 0.45rem 0.75rem; font-size: 0.8rem; }
    .btn-login { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
    .theme-btn { width: 2rem; height: 2rem; font-size: 0.9rem; }
    .header-logo { height: 30px; }
}

/* =========================================
   CORREÇÃO DOS BOTÕES NO MODO CLARO (LIGHT MODE)
   Efeito "Borda IA do Google" sem o fundo manchado
   ========================================= */

body.light-mode .btn-cta, 
body.light-mode .btn-faq,
body.light-mode .btn-submit {
    background: var(--btn-cta-gradient);
    border: none;
    color: #ffffff;
    animation: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
}

body.light-mode .btn-cta::before, 
body.light-mode .btn-faq::before {
    display: none;
}

body.light-mode .btn-cta:hover, 
body.light-mode .btn-faq:hover,
body.light-mode .btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3);
}