:root {
    --yellow: #FFC700;
    --yellow-deep: #E0B200;
    --ink: #111111;
    --graphite: #1B1B1B;
    --gray: #6B7280;
    --sand: #F7F5F0;
    --line: #E7E4DC;
    --font-display: 'Fraunces', 'Georgia', serif;
    --font-body: 'Inter', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

em { font-style: italic; color: inherit; }

a { color: inherit; }

/* =====================================================
   NAVBAR (igual ao restante do site)
===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 40px; width: auto; display: block; }

.nav-center { list-style: none; display: flex; gap: 32px; }

.nav-center a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
    position: relative;
}

.nav-center a::after {
    content: '';
    width: 0; height: 2px;
    background-color: var(--yellow);
    position: absolute; bottom: -6px; left: 0;
    transition: width 0.3s ease;
}

.nav-center a:hover::after { width: 100%; }

.btn-anuncie {
    padding: 5px 22px;
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-anuncie.is-active,
.btn-anuncie:hover {
    background: linear-gradient(135deg, var(--yellow-deep), var(--yellow));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.4);
}

.menu-toggle {
    display: none;
    margin-left: 14px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background-color: #fff;
    z-index: 2000; padding: 30px;
    transition: right 0.3s ease;
}

.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; margin-top: 40px; }
.mobile-menu li { margin-bottom: 20px; }
.mobile-menu a { text-decoration: none; font-size: 18px; font-weight: 600; color: #111; }
.mobile-anuncie { display: inline-block; margin-top: 10px; padding: 12px 20px; background: var(--yellow); border-radius: 30px; }
.close-menu { background: none; border: none; font-size: 22px; cursor: pointer; }

.overlay {
    position: fixed; inset: 0;
    background-color: rgba(0,0,0,0.4);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }

/* =====================================================
   BARRA DE PROGRESSO
===================================================== */
.progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: var(--yellow);
    z-index: 1500;
    transition: width 0.1s linear;
}

/* =====================================================
   ÍNDICE LATERAL (sumário do dossiê)
===================================================== */
.kit-index {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
}

.kit-index ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kit-index a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.kit-index a span {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--gray);
}

.kit-index a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 0.3s ease;
}

.kit-index a.active,
.kit-index a:hover {
    opacity: 1;
    color: var(--ink);
}

.kit-index a.active::before,
.kit-index a:hover::before {
    width: 18px;
}

@media (max-width: 1280px) {
    .kit-index { display: none; }
}

/* =====================================================
   REVEAL ON SCROLL
===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================
   SECTION HEAD (reutilizado)
===================================================== */
.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head.light .eyebrow { color: var(--yellow); }
.section-head.light h2 { color: #fff; }

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow-deep);
    margin-bottom: 14px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

.section-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--gray);
    font-style: italic;
}

/* =====================================================
   HERO
===================================================== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--yellow);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 120px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(0,0,0,0.08), transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1.5px solid rgba(0,0,0,0.35);
    border-radius: 30px;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.08;
    font-weight: 600;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 24px auto 0;
    color: rgba(17,17,17,0.75);
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--ink);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(17,17,17,0.35);
    transition: border-color 0.3s ease;
}

.btn-ghost:hover { border-color: var(--ink); }

/* Faixa de texto rolante */
.hero-marquee {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: var(--ink);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 24px;
    white-space: nowrap;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--yellow);
    text-transform: uppercase;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* =====================================================
   SOBRE
===================================================== */
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.about-text .lead {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-text p { color: var(--gray); font-size: 1.02rem; margin-bottom: 20px; }

.about-points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }

.about-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }

.about-points i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* =====================================================
   FRASE DE IMPACTO
===================================================== */
.statement {
    padding: 140px 20px;
    text-align: center;
    background: var(--sand);
}

.statement h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.25;
}

/* =====================================================
   NÚMEROS
===================================================== */
.numbers {
    padding: 120px 20px;
    text-align: center;
}

.numbers-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.number-card {
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--sand);
}

.number-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 8px;
}

.number-card span { color: var(--gray); font-size: 0.9rem; }

/* =====================================================
   ONDE ESTAMOS
===================================================== */
.platforms {
    padding: 120px 20px;
    text-align: center;
    background: var(--sand);
}

.platform-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-card {
    padding: 44px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
}

.platform-card i {
    font-size: 26px;
    color: var(--yellow-deep);
    margin-bottom: 14px;
    display: block;
}

.platform-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.platform-card span { color: var(--gray); font-size: 0.85rem; }

/* =====================================================
   FORMATOS
===================================================== */
.formats-section {
    background: var(--graphite);
    color: #fff;
    padding: 130px 6%;
}

.formats-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 100px;
}

.formats-chips span {
    padding: 12px 24px;
    border-radius: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yellow);
}

.format-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.format-item.reverse { grid-template-columns: 1fr 1.1fr; }
.format-item.reverse .format-text { order: 2; }

.format-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--yellow);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 14px;
}

.format-text h3 { font-size: 2rem; margin-bottom: 20px; }

.format-text p {
    font-size: 1.05rem;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 26px;
}

.format-publish strong { display: block; margin-bottom: 6px; font-size: 0.9rem; }
.format-publish span { font-size: 0.9rem; color: #aaa; }

.format-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 32px;
    border-radius: 40px;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.format-btn:hover { transform: scale(1.05); }

.format-image img { width: 100%; border-radius: 24px; object-fit: cover; display: block; }

.format-divider { border: none; height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 100px; }

/* =====================================================
   DEPOIMENTOS
===================================================== */
.testimonials { padding: 120px 20px; max-width: 1200px; margin: 0 auto; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--sand);
    border-left: 3px solid var(--yellow);
}

.testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 18px;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

/* =====================================================
   CTA FINAL
===================================================== */
.cta {
    padding: 150px 20px;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.cta h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 18px; line-height: 1.2; }

.cta p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 40px;
    background: var(--yellow);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-btn i { font-size: 20px; }

.cta-btn:hover { transform: scale(1.05); }

/* =====================================================
   FOOTER
===================================================== */
.kit-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 40px 20px;
}

.kit-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo { height: 32px; margin-bottom: 14px; }

.kit-footer p { font-size: 13px; color: var(--gray); }

/* =====================================================
   RESPONSIVIDADE
===================================================== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .format-item, .format-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .format-item.reverse .format-text { order: 0; }
}

@media (max-width: 768px) {
    .nav-center { display: none; }
    .menu-toggle { display: block; }
    .btn-anuncie { display: none; }
    .hero { min-height: 80vh; padding: 50px 20px 100px; }
    .about, .numbers, .platforms, .testimonials, .formats-section, .cta, .statement {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 600px) {
    .numbers-grid { grid-template-columns: 1fr; }
    .platform-grid { grid-template-columns: 1fr; }
}