﻿/* ════════════════════════════════════
   RESET & BASE
════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --ink: #0f0e0c;
    --ink-mid: #2c2a25;
    --ink-light: #5a574f;
    --paper: #faf8f4;
    --paper-2: #f2efe8;
    --paper-3: #e8e3d8;
    --accent: #c8861a;
    --accent-d: #9e6510;
    --red: #c0392b;
    --green: #1e7a4a;
    --white: #ffffff;
    --col-w: 760px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

    /* Grain texture overlay */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9000;
    }

/* ════════════════════════════════════
   MASTHEAD / HEADER
════════════════════════════════════ */
.masthead {
    border-bottom: 3px double var(--ink);
    padding: 18px 40px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--paper);
    z-index: 800;
}

.masthead-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -1px;
}

    .masthead-logo span {
        color: var(--accent);
    }

.masthead-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-light);
}

.masthead-cta {
    background: var(--accent);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

    .masthead-cta:hover {
        background: var(--accent-d);
    }

/* ════════════════════════════════════
   NEWSPAPER BANNER
════════════════════════════════════ */
.banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 0;
    text-align: center;
    position: relative;
}

.banner-edition {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-light);
    border-top: 1px solid var(--ink-light);
    border-bottom: 1px solid var(--ink-light);
    padding: 6px 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--ink);
    max-width: 900px;
    margin: 0 auto 28px;
}

    .banner h1 em {
        font-style: italic;
        color: var(--accent);
    }

.banner-deck {
    font-family: 'Source Serif 4', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink-mid);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 36px;
}

.banner-byline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: var(--ink-light);
    text-transform: uppercase;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--ink);
}

.byline-divider {
    opacity: 0.3;
}

/* ════════════════════════════════════
   HIGHLIGHT STRIP
════════════════════════════════════ */
.highlight-strip {
    background: var(--ink);
    color: var(--white);
    padding: 22px 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hl-item {
    text-align: center;
}

.hl-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.hl-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

/* ════════════════════════════════════
   ARTICLE LAYOUT
════════════════════════════════════ */
.article-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Two-column newspaper layout */
.newspaper-cols {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--paper-3);
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-mid);
    margin-bottom: 1.4em;
}

    .article-body p:first-child::first-letter {
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        font-weight: 900;
        float: left;
        line-height: 0.75;
        margin-right: 12px;
        margin-top: 10px;
        color: var(--accent);
    }

.article-body strong {
    color: var(--ink);
    font-weight: 600;
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--accent);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--paper-2);
    position: relative;
}

    .pull-quote::before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 7rem;
        color: var(--accent);
        opacity: 0.15;
        position: absolute;
        top: -20px;
        left: 20px;
        line-height: 1;
    }

    .pull-quote p {
        font-family: 'Playfair Display', serif;
        font-size: 1.35rem !important;
        font-style: italic;
        color: var(--ink) !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .pull-quote cite {
        display: block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.68rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--ink-light);
        margin-top: 14px;
        font-style: normal;
    }

/* Sidebar */
.sidebar {
}

.sidebar-widget {
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    border-top: 3px solid var(--ink);
    padding: 28px 24px;
    margin-bottom: 28px;
}

.widget-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-light);
    border-bottom: 1px solid var(--paper-3);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.widget-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--paper-3);
}

    .widget-item:last-child {
        border-bottom: none;
    }

.widget-icon {
    font-size: 1.4rem;
    min-width: 30px;
}

.widget-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 3px;
}

.widget-text p {
    font-size: 0.78rem !important;
    color: var(--ink-light) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.sidebar-cta {
    background: var(--accent);
    color: var(--white);
    display: block;
    padding: 18px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 12px;
}

    .sidebar-cta:hover {
        background: var(--accent-d);
        transform: translateY(-2px);
    }

.sidebar-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--ink-light);
    letter-spacing: 1px;
    text-align: center;
}

/* Section heading (newspaper style) */
.section-heading {
    text-align: center;
    padding: 50px 0 40px;
    position: relative;
}

    .section-heading::before,
    .section-heading::after {
        content: '';
        display: block;
        height: 1px;
        background: var(--ink);
        margin: 12px 0;
    }

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* ════════════════════════════════════
   INFOGRAPHIC: EXCEL VS OBRABI
════════════════════════════════════ */
.compare-block {
    background: var(--white);
    border: 2px solid var(--ink);
    padding: 40px;
    margin: 40px 0;
    position: relative;
}

    .compare-block::before {
        content: 'COMPARATIVO';
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.6rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        background: var(--ink);
        color: var(--white);
        padding: 4px 12px;
        position: absolute;
        top: -12px;
        left: 30px;
    }

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.compare-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid;
}

.compare-col.excel h3 {
    border-color: var(--red);
    color: var(--red);
}

.compare-col.obrabi h3 {
    border-color: var(--green);
    color: var(--green);
}

.compare-list {
    list-style: none;
}

    .compare-list li {
        padding: 8px 0;
        font-size: 0.9rem;
        border-bottom: 1px solid var(--paper-3);
        display: flex;
        align-items: center;
        gap: 10px;
    }

.compare-col.excel .compare-list li::before {
    content: '✗';
    color: var(--red);
    font-weight: 700;
    min-width: 16px;
}

.compare-col.obrabi .compare-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    min-width: 16px;
}

/* ════════════════════════════════════
   FEATURE CARDS — 3 col
════════════════════════════════════ */
.features-section {
    padding: 20px 0 60px;
    border-bottom: 1px solid var(--paper-3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 10px;
    border: 1px solid var(--paper-3);
}

.feat-card {
    padding: 30px 26px;
    border: 1px solid var(--paper-3);
    background: var(--white);
    transition: background 0.3s;
    position: relative;
}

    .feat-card:hover {
        background: var(--paper-2);
    }

    .feat-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s;
    }

    .feat-card:hover::after {
        transform: scaleX(1);
    }

.feat-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.feat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feat-card p {
    font-size: 0.85rem;
    color: var(--ink-light);
    line-height: 1.6;
}

/* ════════════════════════════════════
   STORY — ENGENHEIRO EDUARDO
════════════════════════════════════ */
.story-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--paper-3);
}

.story-header {
    background: var(--ink);
    color: var(--white);
    padding: 40px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

    .story-header::before {
        content: 'ESTUDO DE CASO';
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.6rem;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--accent);
        display: block;
        margin-bottom: 16px;
    }

    .story-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3.5vw, 3rem);
        font-weight: 900;
        line-height: 1.15;
        max-width: 700px;
    }

        .story-header h2 em {
            font-style: italic;
            color: var(--accent);
        }

.story-body {
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    border-top: none;
    padding: 50px 60px;
}

    .story-body p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--ink-mid);
        margin-bottom: 1.4em;
        max-width: 680px;
    }

    .story-body strong {
        color: var(--ink);
        font-weight: 600;
    }

.story-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--paper-3);
    margin: 40px 0;
    border: 1px solid var(--paper-3);
}

.story-stat {
    background: var(--white);
    padding: 24px 20px;
    text-align: center;
}

.story-stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.story-stat-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-top: 6px;
    display: block;
}

/* ════════════════════════════════════
   HOW IT WORKS — TIMELINE
════════════════════════════════════ */
.timeline-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--paper-3);
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--accent), var(--paper-3));
    }

.tl-step {
    position: relative;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .tl-step.visible {
        opacity: 1;
        transform: translateX(0);
    }

.tl-bullet {
    position: absolute;
    left: -41px;
    top: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--accent);
}

.tl-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.tl-step p {
    font-size: 0.98rem;
    color: var(--ink-light);
    line-height: 1.7;
    max-width: 580px;
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tl-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    color: var(--ink-light);
    padding: 4px 10px;
    border-radius: 2px;
}

/* ════════════════════════════════════
   TESTIMONIAL / DEPOIMENTO
════════════════════════════════════ */
.testimonial-block {
    margin: 50px 0;
    padding: 40px;
    background: var(--ink);
    position: relative;
}

    .testimonial-block::before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 12rem;
        color: rgba(200,134,26,0.12);
        position: absolute;
        top: -30px;
        left: 20px;
        line-height: 1;
        pointer-events: none;
    }

    .testimonial-block p {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-style: italic;
        color: var(--white);
        line-height: 1.6;
        position: relative;
        max-width: 660px;
        margin-bottom: 24px !important;
    }

.testimonial-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-section {
    background: var(--accent);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
        background-size: 50px 50px;
    }

    .cta-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 900;
        color: var(--white);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 20px;
        position: relative;
    }

    .cta-section p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.85);
        max-width: 540px;
        margin: 0 auto 40px;
        position: relative;
    }

.btn-cta-big {
    display: inline-block;
    background: var(--ink);
    color: var(--white);
    padding: 20px 52px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .btn-cta-big:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

.cta-subtext {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 20px;
    position: relative;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 50px 40px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
}

    .footer-brand span {
        color: var(--accent);
    }

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

            .footer-col ul li a:hover {
                color: var(--accent);
            }

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom a {
        color: rgba(255,255,255,0.3);
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: var(--accent);
        }

/* ════════════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble {
    background: var(--white);
    border: 1px solid var(--paper-3);
    border-radius: 12px 12px 2px 12px;
    padding: 12px 18px;
    font-size: 0.8rem;
    color: var(--ink-mid);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    max-width: 220px;
    line-height: 1.5;
    animation: bubblePop 0.4s ease 1.5s both;
    display: none;
}

@keyframes bubblePop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.whatsapp-float:hover .whatsapp-bubble {
    display: block;
}

.wa-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3s infinite;
}

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(37,211,102,0.45);
    }

    50% {
        box-shadow: 0 6px 50px rgba(37,211,102,0.7);
    }
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}

.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 900px) {
    .masthead {
        padding: 14px 20px;
    }

    .masthead-tag {
        display: none;
    }

    .banner, .article-wrap {
        padding: 0 20px;
    }

    .banner {
        padding: 40px 20px 0;
    }

    .banner-edition {
        font-size: 0.55rem;
    }

    .highlight-strip {
        gap: 30px;
        padding: 20px;
    }

    .newspaper-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar {
        display: none;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-body {
        padding: 30px 24px;
    }

    .story-stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .banner h1 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .story-stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
