/* CSS reset & vars */
:root {
    --bg-dark: #161514;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-section: #014651;
    --primary: #CEF431;
    --primary-dark: #03D26F;
    --text-light: #EAF4F4;
    --text-muted: rgba(234, 244, 244, 0.6);
    --border-subtle: rgba(234, 244, 244, 0.08);
    --shadow-card: 0 15px 35px rgba(0,0,0,0.5);
    --transitions: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.text-green { color: var(--primary); }
.text-center { text-align: center; }

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

.section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(206, 244, 49, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: driftLeft 15s infinite alternate ease-in-out;
}

.section:nth-child(even)::before {
    left: auto;
    right: -200px;
    background: radial-gradient(circle, rgba(3, 210, 111, 0.02) 0%, transparent 70%);
    animation: driftRight 18s infinite alternate ease-in-out;
}

@keyframes driftLeft {
    0% { transform: translateY(-50%) translate(0, 0) scale(1); }
    100% { transform: translateY(-50%) translate(80px, 50px) scale(1.15); }
}

@keyframes driftRight {
    0% { transform: translateY(-50%) translate(0, 0) scale(1); }
    100% { transform: translateY(-50%) translate(-80px, -50px) scale(1.1); }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-inline: auto;
}

/* When a seo-support-copy follows the header, reduce bottom spacing of header */
.section-header:has(+ .seo-support-copy) {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #161514;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 22px 48px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(206, 244, 49, 0.25);
    transition: var(--transitions);
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 440px;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(206, 244, 49, 0.4);
    background: linear-gradient(135deg, #E6FA72 0%, var(--primary) 100%);
}

.btn:active {
    transform: translateY(1px);
}

.btn-aux {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 14px;
}/* --- HEADER NAV --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(22, 21, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transitions);
}

.nav-cta:hover {
    background: #E6FA72;
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }
}

/* --- 1. HERO --- */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: var(--bg-dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
}

.hero::before {
    content: '';
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(206, 244, 49, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    filter: blur(100px);
    animation: pulseGlow 10s infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-logo {
    display: inline-block;
    margin-bottom: 30px;
}

.hero-logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.hero-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.hero-bullets li svg {
    color: var(--primary);
    width: 24px; height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.seo-support-copy {
    margin: 18px auto 0;
    max-width: 860px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.seo-support-copy:last-of-type {
    margin-bottom: 60px;
}

/* Positive breathing room between section-header and seo-support-copy */
.section-header + .seo-support-copy {
    margin-top: 0;
    margin-bottom: 50px;
}

.seo-support-copy-centered {
    text-align: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80%; height: 80%;
    border: 2px solid var(--primary);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

/* --- 2. VIDEO --- */
.bg-secondary {
    background-color: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.video-wrapper img,
.video-wrapper video {
    width: 100%;
    display: block;
}

.video-play-mask {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.28) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.video-wrapper.is-playing .video-play-mask {
    opacity: 0;
}

.video-play-badge {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(215, 35, 35, 0.92);
    border: 2px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon {
    width: 0;
    height: 0;
    margin-left: 7px;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 30px solid #FFFFFF;
}

.video-btn-container {
    margin-top: 50px;
    text-align: center;
}

/* --- 3. CARDS REVEAL --- */
.grid-reveal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card-reveal {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px 30px;
    border-radius: 12px;
    transition: var(--transitions);
}

.card-reveal:hover {
    border-color: rgba(206, 244, 49, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.card-reveal .icon {
    width: 48px; height: 48px;
    background: rgba(206, 244, 49, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.card-reveal:hover .icon {
    transform: scale(1.1);
}

.card-reveal h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* --- 4. PARA QUEM É --- */
.list-checks {
    max-width: 700px;
    margin: 0 auto 50px;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
}

.list-checks li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.15rem;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    transition: transform 0.2s ease;
}

.list-checks li:hover {
    transform: translateX(5px);
}

.list-checks li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.list-checks li svg {
    color: var(--primary);
    margin-right: 20px;
    width: 28px; height: 28px;
    flex-shrink: 0;
}

/* --- 6. SPLIT ANALOGY --- */
.split-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.split-text h2 { margin-bottom: 24px; font-size: 2.5rem; }
.split-text p { margin-bottom: 20px; font-size: 1.1rem; color: var(--text-muted); }

.highlight-box {
    background: rgba(206, 244, 49, 0.05);
    border-left: 4px solid var(--primary);
    padding: 24px;
    margin-top: 30px;
}

.highlight-box p { margin: 0; color: var(--white); font-weight: 600; font-size: 1.15rem; }

/* --- LINCOLN BIO --- */
.lincoln-bio {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.lincoln-bio-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 2px solid var(--primary);
}

.lincoln-bio-text strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.lincoln-bio-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- 6. REASON CARDS & MOCKUP --- */
.reason-cards {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reason-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transitions);
}

.reason-card:hover {
    background: rgba(206, 244, 49, 0.05);
    border-color: rgba(206, 244, 49, 0.3);
    transform: translateX(5px);
}

.reason-card .rc-icon {
    width: 44px; height: 44px;
    background: rgba(206, 244, 49, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.reason-card h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.reason-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-muted);
}

/* CSS Mockup Dashboard */
.mockup-wrapper {
    position: relative;
    padding: 20px;
}

.mockup-wrapper::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(206, 244, 49, 0.1) 0%, transparent 70%);
    top: 0; left: 0;
    filter: blur(40px);
    z-index: 0;
}

.css-mockup {
    position: relative;
    z-index: 1;
    background: rgba(13, 19, 28, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

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

.mockup-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.mockup-header .dot.red { background: #FF5F56; }
.mockup-header .dot.yellow { background: #FFBD2E; }
.mockup-header .dot.green { background: #27C93F; }

.mockup-title {
    margin-left: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-body {
    padding: 30px;
}

.mockup-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.mockup-kpi {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 10px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.kpi-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
}

.mockup-chart-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    margin-bottom: 30px;
    gap: 10px;
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chart-bar {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(255,255,255,0.02);
    border-radius: 4px 4px 0 0;
}

.chart-fill {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.chart-fill.highlight {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(206, 244, 49, 0.4);
}

.mockup-alert {
    display: flex;
    align-items: center;
    background: rgba(206, 244, 49, 0.1);
    color: var(--primary);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.mockup-alert svg {
    margin-right: 12px;
    flex-shrink: 0;
}/* --- CERTIFICADOS --- */
.certificados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cert-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1.4 / 1;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: zoom-in;
}

.cert-img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

/* --- PROOFS CAROUSEL --- */
.proofs-carousel-container {
    margin-top: 100px;
    text-align: center;
}

.proofs-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 40px;
    font-family: 'Manrope', sans-serif;
}

.proofs-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    cursor: grab;
}

.proofs-track-wrapper:active {
    cursor: grabbing;
}

.proofs-track {
    display: flex;
    width: max-content;
}

.proofs-set {
    display: flex;
    gap: 30px;
    padding-right: 30px;
}

.proof-img {
    height: 450px;
    width: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    cursor: pointer;
}

.proof-img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10000;
    line-height: 1;
}

/* --- 7. TIMELINE COMO FUNCIONA --- */
.timeline-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(206, 244, 49, 0.2);
}

.step {
    position: relative;
    margin-bottom: 50px;
}

.step:last-child { margin-bottom: 0; }

.step::before {
    content: '';
    position: absolute;
    /* left: 48px padding − 20px line centre = −28px; translateX(-50%) centres the 14px dot on that line */
    left: -28px;
    /* top: aligns dot centre with cap-height of h3 first line */
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    box-shadow: 0 0 10px rgba(206, 244, 49, 0.4);
    transform: translateX(-50%);
}

.step h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 5px;
    color: var(--white);
}

.step p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- 10. OFERTA --- */
.oferta-section {
    background: radial-gradient(circle at center, rgba(30, 80, 40, 0.2) 0%, var(--bg-dark) 70%);
}

.pricing-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(13, 19, 28, 0.9) 100%);
    border: 1px solid rgba(206, 244, 49, 0.4);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 2px 15px rgba(206, 244, 49, 0.05);
    text-align: center;
}

.pricing-card h2 { font-size: 2.2rem; margin-bottom: 10px; }
.pricing-card .sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; display: block; }

.pricing-list {
    text-align: left;
    margin-bottom: 40px;
    list-style: none;
}

.pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

.pricing-list li svg {
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.price-box {
    margin: 40px 0;
}

.price-box s {
    display: block;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price-box .amount {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-box .amount span { font-size: 1.5rem; }

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

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    user-select: none;
    transition: var(--transitions);
}

.faq-question:hover { color: var(--primary); }

.faq-question svg { transition: transform 0.3s ease; }

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 24px 30px;
    color: var(--text-muted);
}

/* --- FOOTER --- */
footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: radial-gradient(circle at center, rgba(206, 244, 49, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

footer h2 { font-size: 2.2rem; margin-bottom: 20px; }
footer p.copy { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 50px; max-width: 600px; margin-inline: auto; }
footer .legal { font-size: 0.9rem; color: #555; margin-top: 80px; }

/* --- FOOTER LOGO --- */
.footer-logo {
    margin-bottom: 32px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
    opacity: 1;
}

/* ANIMATIONS */
.fade-up {
    opacity: 1;
    transform: none;
}

.js-enabled .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.js-enabled .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .container { padding: 0 20px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-logo { margin: 0 auto 30px; }
    .hero-bullets li { justify-content: center; }
    .hero-image { max-width: 600px; margin: 0 auto; }
    .hero h1 { font-size: 2.8rem; }
    .split-box { grid-template-columns: 1fr; gap: 40px; }
    .split-box img, .split-box video { display: block; max-width: 600px; margin: 0 auto; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.4rem; }
    .hero .subheadline { font-size: 1.1rem; }
    .section-header h2 { font-size: 2rem; }
    .split-text h2 { font-size: 2rem; }
    .split-text { text-align: center; }
    .highlight-box { text-align: left; }
    .btn { width: 100%; padding: 20px; font-size: 1rem; }
    .pricing-card { padding: 40px 20px; }
    .price-box .amount { font-size: 3rem; }
    .faq-question { font-size: 1.05rem; padding: 20px; }
    .list-checks { padding: 25px; }
    .grid-4 { grid-template-columns: 1fr; }
    
    /* CSS Mockup Adapts */
    .mockup-body { padding: 20px; }
    .mockup-row { flex-direction: column; gap: 15px; }
    .mockup-kpi { padding: 12px 15px; }
    .kpi-value { font-size: 1.3rem; }
    .chart-bar { display: none; } /* Hide chart bars if space is too tight, or let them stay */
    .mockup-chart { height: 80px; }
    .chart-bar:nth-child(even) { display: flex; } /* Or keep them but make chart shorter */
    
    /* Elements spacing */
    .split-box { gap: 30px; }
    .section { padding: 70px 0; }
    
    .proof-img { height: 250px; }
    .proofs-title { font-size: 1.5rem; }
    .proofs-carousel-container { margin-top: 60px; }
}

/* --- FLOATING ACTION BUTTONS --- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFF;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-wpp {
    background: #25D366;
}

.fab-wpp:hover {
    background: #20BA5A;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.fab-top {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--primary);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.fab-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-top:hover {
    background: var(--bg-section);
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
    }
    
    .fab svg {
        width: 22px;
        height: 22px;
    }
}
