:root {
    --bg-color: #0d0f12;
    --primary-green: #7AD143;
    --primary-glow: rgba(122, 209, 67, 0.4);
    --secondary-green: #A8E05F;
    --surface-color: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

/* Background elements */
.hero-bg {
    position: fixed; /* O segredo do parallax - Fica parado no fundo */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.logo-watermark {
    position: absolute;
    top: 50%;
    left: 45%; /* Centralizado entre o título e o gráfico */
    width: 700px;
    height: 700px;
    opacity: 0.06;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(-5deg) scale(1.1);
    filter: blur(5px) drop-shadow(0 0 50px var(--primary-glow));
    pointer-events: none;
}

.logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.glow-sphere {
    position: absolute;
    top: -20vh;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.35;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(13, 15, 18, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.brand-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.brand-logo {
    max-height: 70px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
    font-weight: 500;
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: #061102;
    /* Very dark green almost black for contrast */
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(122, 209, 67, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--primary-glow);
    background: var(--secondary-green);
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 80px 24px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(122, 209, 67, 0.08);
    color: var(--primary-green);
    border: 1px solid rgba(122, 209, 67, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 95%;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glass Card Premium */
.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

/* Mockup Card specific */
.mockup-card {
    padding: 0;
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
    transition: transform 0.8s ease;
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.card-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot.red {
    background: #FF5F56;
}

.dot.yellow {
    background: #FFBD2E;
}

.dot.green {
    background: #27C93F;
}

.mockup-title {
    margin-left: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-body {
    padding: 40px;
}

.chart-mockup {
    height: 200px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px 6px 0 0;
    transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 0%;
    /* initial state for animation */
}

.target {
    background: var(--primary-green);
    box-shadow: 0 0 24px rgba(122, 209, 67, 0.3);
}

.mockup-info p {
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.mockup-info strong {
    color: var(--text-primary);
}

.text-green {
    color: var(--primary-green) !important;
    font-weight: 600;
}

.fade-in-text {
    opacity: 0;
    animation: fadeInLate 3s forwards;
    animation-delay: 1.5s;
}

@keyframes fadeInLate {
    to {
        opacity: 1;
    }
}

/* Features */
.section {
    padding: 48px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.grid {
    display: grid;
    gap: 32px;
}

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

.feature-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
    padding: 40px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(122, 209, 67, 0.08);
    border-color: rgba(122, 209, 67, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at top left, rgba(122, 209, 67, 0.15), transparent);
    border: 1px solid rgba(122, 209, 67, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--primary-green);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.feature-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.highlight-card {
    background: radial-gradient(130% 130% at top left, rgba(122, 209, 67, 0.12) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(122, 209, 67, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.highlight-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
}

.mt-4 {
    margin-top: 32px;
}

/* Scroll Animations */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Track Record */
.track-record {
    background: radial-gradient(ellipse at center, rgba(122, 209, 67, 0.05) 0%, transparent 70%);
}

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

.stat-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(122, 209, 67, 0.08);
    border-color: rgba(122, 209, 67, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 24px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.stat-card p strong {
    color: var(--text-primary);
}

/* Proof Chart Section */
.proof-chart-container {
    margin-top: 32px;
}

.chart-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.chart-card:hover {
    border-color: rgba(122, 209, 67, 0.4);
    box-shadow: 0 16px 48px rgba(122, 209, 67, 0.1);
}

.chart-context {
    padding: 40px;
    background: rgba(13, 15, 18, 0.4);
    border-bottom: 1px solid var(--border-color);
}

.chart-context h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.chart-context p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
}

.chart-context p strong {
    color: var(--text-primary);
}

.chart-image {
    width: 100%;
    background: radial-gradient(circle, rgba(122, 209, 67, 0.05) 0%, transparent 80%);
}

.chart-image img {
    width: 100%;
    height: auto;
    display: block;
}

.chart-placeholder {
    padding: 80px 20px;
    text-align: center;
    color: var(--primary-green);
    font-weight: 500;
}

/* Alert Box */
.alert-box {
    margin-top: 40px;
    background: rgba(255, 189, 46, 0.08); /* Yellowish alert background */
    border: 1px dashed rgba(255, 189, 46, 0.4);
    border-radius: 16px;
    padding: 32px 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.alert-box:hover {
    box-shadow: 0 16px 40px rgba(255, 189, 46, 0.08);
}

.alert-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.alert-icon {
    font-size: 3rem;
}

.alert-body strong {
    color: #FFBD2E;
}

.alert-header h4 {
    color: #FFBD2E;
    font-size: 2.8rem;
    letter-spacing: 2px;
}

.alert-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.alert-box p strong {
    color: var(--text-primary);
}

/* Audience Profile */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.audience-card {
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.audience-card.negative {
    border-top: 4px solid #FF5F56;
}

.audience-card.positive {
    border-top: 4px solid var(--primary-green);
    background: radial-gradient(130% 130% at top left, rgba(122, 209, 67, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.card-header-icon {
    margin-bottom: 24px;
}

.icon-red {
    color: #FF5F56;
    width: 48px;
    height: 48px;
}

.icon-green {
    color: var(--primary-green);
    width: 48px;
    height: 48px;
}

.audience-card h3 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
}

.audience-card.negative .audience-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 2px;
    color: #FF5F56;
    font-weight: 900;
    font-size: 1.2rem;
}

.audience-card.positive .audience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-weight: 900;
    font-size: 1.2rem;
}

.audience-card.positive .audience-list li strong {
    color: var(--text-primary);
}

/* Floating lateral CTA */
.fixed-cta {
    position: fixed;
    right: max(24px, calc(50vw - 640px));
    /* Brings it close to the max-width container bounds */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 999;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.8;
}

.fixed-cta .btn-primary {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 24px rgba(122, 209, 67, 0.4);
    animation: pulseFloat 2.5s infinite alternate;
}

.fixed-cta .btn-text {
    display: none;
}

@keyframes pulseFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 20px rgba(122, 209, 67, 0.2);
    }

    100% {
        transform: translateY(-4px);
        box-shadow: 0 0 35px rgba(122, 209, 67, 0.5);
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 48px;
    position: relative;
    transition: transform 0.4s;
    height: 100%;
    background: rgba(25, 28, 33, 0.8); /* Fundo sutilmente mais claro para não parecer "apagado" */
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible !important; /* Impede a tag de Mais Vendido de ser cortada */
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.highlight-card {
    border: 1px solid rgba(122, 209, 67, 0.4);
    background: radial-gradient(130% 130% at top right, rgba(122, 209, 67, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 16px 40px rgba(122, 209, 67, 0.1);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--bg-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 32px;
}
.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.pricing-card.highlight-card .pricing-header {
    padding-left: 24px; /* Optical balance to push text right relative to the badge */
}
.old-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    text-decoration-color: #FF5F56;
    margin-bottom: -10px;
    font-weight: 500;
}
.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-primary);
    padding-left: 12px; /* Ajuste ótico para o número grande ficar centrado */
}
.price .currency { align-self: flex-start; font-size: 1.5rem; font-weight: 700; margin-right: 4px; margin-top: 8px; }
.price .amount { font-size: 4rem; font-weight: 900; line-height: 1; margin-right: 2px;}
.price .cents { align-self: flex-start; font-size: 1.5rem; font-weight: 700; margin-top: 8px;}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.pricing-features li i, .pricing-features li svg {
    color: var(--primary-green);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 4px;
}
.pricing-features li strong { color: var(--text-primary); }
.pricing-features li.font-bold { color: var(--text-primary); font-weight: 700; }
.btn-block { display: block; width: 100%; text-align: center; transform: translateY(0); transition: all 0.3s; }
.btn-block:hover { transform: translateY(-3px); }

.guarantee-text {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.guarantee-text i, .guarantee-text svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-green);
    margin-top: 2px;
}
.guarantee-text strong {
    color: var(--text-primary);
}

/* Footer */
.site-footer {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 24px 0;
    margin-top: 80px;
    position: relative;
    z-index: 2; /* Ficar acima do background fixo */
}
.footer-grid {
    display: grid;
    grid-template-columns: 120px 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}
.footer-brand .footer-logo {
    width: 100%; /* Puxa o tamanho da coluna (120px) = fica da exata altura da lista de links */
    max-width: 130px;
    height: auto;
    display: block;
}
.footer-links h4, .footer-disclaimer h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--primary-green);
}
.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-bottom .slogan {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.footer-bottom p:not(.slogan) {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
    padding-bottom: 80px;
}
.final-cta-card {
    background: radial-gradient(130% 130% at top right, rgba(122, 209, 67, 0.12) 0%, rgba(13, 15, 18, 0.8) 100%);
    border: 1px solid rgba(122, 209, 67, 0.4);
    text-align: center;
    padding: 64px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 16px 60px rgba(122, 209, 67, 0.08);
}
.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.justify-center {
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

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

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

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

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

    .nav-links {
        display: none;
    }

    .logo-watermark {
        display: none;
    }

    .fixed-cta {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        background: rgba(13, 15, 18, 0.95);
        backdrop-filter: blur(12px);
        padding: 16px;
        width: 100%;
        border-top: 1px solid var(--border-color);
        gap: 8px;
    }

    .vertical-text {
        display: none;
    }

    .fixed-cta .btn-primary {
        width: 100%;
        height: auto;
        text-align: center;
        animation: none;
        padding: 16px;
        border-radius: 8px;
    }

    .fixed-cta .btn-text {
        display: inline;
        margin-left: 8px;
        font-weight: 700;
        font-size: 1rem;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .mockup-card {
        transform: none;
    }

    .mockup-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand .footer-logo {
        margin: 0 auto;
        width: 100px;
        height: auto;
    }
}

/* =========================================
   CHAT WIDGET (VANILLA JS - LOCAL)
   ========================================= */
#ob-chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
#ob-chat-btn {
    background: var(--primary-green); color: var(--bg-color);
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(122, 209, 67, 0.4); cursor: pointer;
    box-shadow: 0 8px 32px rgba(122, 209, 67, 0.3); transition: transform 0.3s;
}
#ob-chat-btn:hover { transform: scale(1.1); }
#ob-chat-window {
    position: absolute; bottom: 80px; right: 0; width: 350px; height: 500px;
    display: flex; flex-direction: column; padding: 0; /* Override do glass-card */
    overflow: hidden; transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    background: rgba(13, 15, 18, 0.95); border: 1px solid rgba(122, 209, 67, 0.3);
}
#ob-chat-window.hidden { opacity: 0; transform: scale(0.7) translateY(20px); pointer-events: none; }
.chat-header {
    background: rgba(8, 10, 12, 1); padding: 16px; display: flex; justify-content: space-between;
    align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-header-info i { color: var(--primary-green); width: 20px; height: 20px; }
.chat-header-info h4 { font-size: 0.9rem; color: var(--text-primary); margin: 0; font-weight: 700; }
.online-status { font-size: 0.75rem; color: var(--primary-green); display: flex; align-items: center; gap: 6px; }
.pulse { width: 6px; height: 6px; background: var(--primary-green); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.7; } 50% { transform: scale(1.2); opacity: 1; } 100% { transform: scale(0.9); opacity: 0.7; } }
#ob-chat-close { background: none; border: none; color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; }
#ob-chat-close:hover { color: var(--text-primary); }
#ob-chat-close i { width: 20px; height: 20px; }

#ob-chat-messages { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.9rem; line-height: 1.5; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-bubble.model { background: #15181c; color: var(--text-secondary); border-bottom-left-radius: 4px; align-self: flex-start; border: 1px solid rgba(255, 255, 255, 0.05); }
.chat-bubble.user { background: var(--primary-green); color: var(--bg-color); border-bottom-right-radius: 4px; align-self: flex-end; font-weight: 500; }

#ob-chat-form { display: flex; padding: 12px; gap: 8px; background: rgba(8, 10, 12, 1); border-top: 1px solid rgba(255, 255, 255, 0.05); }
#ob-chat-input { flex: 1; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-primary); padding: 12px 16px; border-radius: 12px; outline: none; font-family: inherit; font-size: 0.9rem; }
#ob-chat-input:focus { border-color: rgba(122, 209, 67, 0.4); }
#ob-chat-submit { background: var(--primary-green); color: var(--bg-color); border: none; border-radius: 12px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; }
#ob-chat-submit:hover:not(:disabled) { background: #68b538; }
#ob-chat-submit:disabled { opacity: 0.5; background: #333; cursor: not-allowed; }

@media (max-width: 480px) {
    #ob-chat-window { position: fixed; bottom: 0; right: 0; left: 0; top: 0; width: 100%; height: 100%; border-radius: 0; background: var(--bg-color); border: none; }
}

/* =========================================
   ACCORDION (CONTEÚDO DO CURSO)
   ========================================= */
.curriculum-grid, .faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; width: 100%; }
.accordion-item { background: rgba(13, 15, 18, 0.6); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; overflow: hidden; transition: all 0.3s; padding: 0 !important; width: 100%; align-items: stretch !important; display: flex !important; flex-direction: column !important; }
.accordion-item:hover { border-color: rgba(122, 209, 67, 0.3); }
.accordion-header { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; width: 100%; }
.accordion-header h4 { margin: 0; font-size: 1.1rem; color: var(--text-primary); display: flex; align-items: center; gap: 12px; pointer-events: none; }
.accordion-header h4 span { color: var(--primary-green); font-size: 0.9rem; }
.accordion-icon { width: 24px; height: 24px; color: var(--primary-green); transition: transform 0.3s; }
.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; background: rgba(0, 0, 0, 0.2); }
.accordion-content-inner { padding: 0 24px 24px 24px; color: var(--text-secondary); line-height: 1.6; }
.accordion-content-inner ul { list-style: none; margin-top: 12px; }
.accordion-content-inner ul li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.accordion-content-inner ul li::before { content: "→"; position: absolute; left: 0; color: var(--primary-green); }