/* ===================================================================
   Cristine Dilly Natural Chef — style.css
   Identidade: clean, muito respiro, blocos de cor alternados,
   cards arredondados, tags pill, acento itálico pêssego nos títulos.
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
    --green:        #274931;  /* verde escuro principal */
    --green-hover:  #1d3826;
    --peach:        #eebaa4;  /* acento */
    --peach-hover:  #e6a88d;
    --rose:         #c56a48;  /* pêssego aprofundado, legível sobre fundos claros */
    --sage:         #afc99f;  /* verde sálvia apoio */
    --sage-light:   #eef3ea;  /* fundo suave derivado */
    --gray-light:   #f5f5f3;  /* fundo alternado */
    --white:        #ffffff;
    --ink:          #274931;  /* texto principal = verde escuro */
    --ink-soft:     #4a5f50;  /* texto secundário */

    --font-display: 'Andika', 'Quicksand', system-ui, sans-serif;
    --font-body:    'Quicksand', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --maxw: 1160px;
    --radius-sm: 14px;
    --radius:    24px;
    --radius-lg: 36px;
    --shadow:    0 18px 50px -28px rgba(39, 73, 49, 0.35);
    --shadow-sm: 0 8px 24px -16px rgba(39, 73, 49, 0.3);

    --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; }
/* Acentos nos títulos: palavra em pêssego, sem itálico (mais legível) */
em { font-style: normal; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }

.section-title {
    font-size: clamp(1.7rem, 1rem + 2.6vw, 2.4rem);
    letter-spacing: -0.01em;
}
.section-title em { color: var(--peach); }

.section-sub {
    margin-top: 14px; color: var(--ink-soft);
    font-size: clamp(1.02rem, 1rem + 0.3vw, 1.15rem);
    max-width: 600px;
}
.section-head--center .section-sub { margin-inline: auto; }

/* Eyebrow (pill) */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--sage-light);
    border: 1px solid var(--sage);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.eyebrow-peach { background: var(--peach); border-color: var(--peach); color: var(--green); }

/* ---------- Botões ---------- */
.btn {
    --btn-bg: var(--green);
    --btn-fg: var(--white);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    padding: 15px 26px;
    border: 2px solid var(--btn-bg);
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 18px 34px; font-size: 1.08rem; }
.btn-ico { flex: 0 0 auto; }

.btn-green        { --btn-bg: var(--green); --btn-fg: var(--white); }
.btn-green:hover  { background: var(--green-hover); border-color: var(--green-hover); }

.btn-peach        { --btn-bg: var(--peach); --btn-fg: var(--green); }
.btn-peach:hover  { background: var(--peach-hover); border-color: var(--peach-hover); }

.btn-green-outline {
    background: transparent; border-color: var(--green); color: var(--green);
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

/* ================= MENU FIXO ================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    border-bottom: 1px solid #eceae4;
    box-shadow: 0 6px 20px -18px rgba(39, 73, 49, 0.4);
    height: var(--header-h);
    display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand-logo { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-list a { color: var(--green); font-weight: 600; font-size: 0.98rem; transition: color 0.15s ease; }
.nav-list a:not(.btn) { position: relative; }
.nav-list a:not(.btn)::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
    background: var(--peach); border-radius: 2px;
    transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav-list a:not(.btn):hover::after,
.nav-list a:not(.btn):focus-visible::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px;
    background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--green); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= HERO ================= */
.hero {
    background-color: var(--green); /* fallback */
    background-image:
        linear-gradient(180deg,
            rgba(39, 73, 49, 0.82) 0%,
            rgba(39, 73, 49, 0.88) 55%,
            rgba(39, 73, 49, 0.93) 100%),
        url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: clamp(60px, 10vw, 118px) 0 clamp(80px, 12vw, 150px);
}
.hero-inner { max-width: 940px; margin-inline: auto; }
.hero-title {
    font-size: clamp(2.4rem, 1.2rem + 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-title em { color: var(--peach); }
.hero-br { display: none; }
.hero-subtitle {
    font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px; margin: 0 auto 36px;
}
.hero-micro { margin-top: 16px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); }

/* ================= SOLUÇÕES ================= */
.solucoes { background: var(--white); }
.solucoes-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    align-items: start;
}
.card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 44px);
    display: flex; flex-direction: column; gap: 16px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-title { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.8rem); }
.card-curadoria .card-title { color: var(--rose); }
.diferenciais .section-title,
.depoimentos .section-title { color: var(--rose); }
.card p { color: var(--ink-soft); }
.card .btn { align-self: flex-start; margin-top: 10px; }

.card-curadoria { background: var(--sage-light); border: 1.5px solid var(--sage); box-shadow: var(--shadow-sm); }
.card-educacao  { background: var(--gray-light); border: 1.5px solid #e7e7e2; }

/* Ícone (badge circular) no topo do card */
.card-icon {
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2px;
}
.card-icon svg { width: 28px; height: 28px; }
.card-curadoria .card-icon { background: var(--peach); color: var(--green); }
.card-educacao  .card-icon { background: var(--green); color: var(--white); }


/* Tags pill */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.tag {
    font-size: 0.72rem; font-weight: 600; color: var(--green);
    background: var(--white);
    border: 1px solid var(--sage);
    padding: 5px 10px; border-radius: 999px;
    white-space: nowrap;
}
.card-educacao .tag { border-color: #d8d8d2; }

/* ================= DIFERENCIAIS ================= */
.diferenciais { background: var(--gray-light); }
.diferenciais-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.mini-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
}
.mini-card h3 { font-size: 1.22rem; margin-bottom: 10px; color: var(--green); }
.mini-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* 6º box: manifesto — a filosofia da Cris (fundo rosa/pêssego) */
.mini-card--accent {
    background: var(--peach);
    box-shadow: none;
    display: flex; flex-direction: column; justify-content: center; gap: 12px;
    position: relative; overflow: hidden;
}
.mini-card--accent::before {
    content: "\201C";
    position: absolute; top: -26px; right: 8px;
    font-family: var(--font-display); font-weight: 700;
    font-size: 9rem; line-height: 1; color: rgba(39, 73, 49, 0.13);
    pointer-events: none; z-index: 0;
}
.accent-eyebrow {
    position: relative; z-index: 1;
    font-family: var(--font-body);
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--green); opacity: 0.82;
}
.accent-phrase {
    position: relative; z-index: 1;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(1.35rem, 1rem + 1.15vw, 1.7rem);
    color: var(--green); line-height: 1.24;
}
.accent-phrase em {
    background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.7) 60%);
    padding: 0 2px;
}
.accent-sign {
    position: relative; z-index: 1;
    font-family: var(--font-display); font-weight: 700;
    color: var(--green); opacity: 0.72; font-size: 0.95rem;
}
.accent-sign::before { content: "— "; }

/* ================= SOBRE ================= */
.sobre { background: var(--white); }
.sobre-inner {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.sobre-img {
    width: 100%; height: auto; border-radius: var(--radius-lg);
    aspect-ratio: 3 / 4; object-fit: cover;
    box-shadow: var(--shadow);
}
.sobre-text .section-title { color: var(--green); margin-bottom: 4px; }
.sobre-text p { color: var(--ink-soft); margin-top: 16px; }
.sobre-text .eyebrow { margin-bottom: 10px; }
.sobre-text p:first-of-type { margin-top: 12px; }
.sobre-text p:last-of-type {
    margin-top: 22px;
    padding-left: 16px;
    border-left: 3px solid var(--peach);
    font-weight: 600;
    color: var(--ink);
}

/* ================= DEPOIMENTOS ================= */
.depoimentos { background: var(--sage-light); }

.depo-carousel { position: relative; }

.depo-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 6px 16px;
    margin: 0 -6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.depo-track::-webkit-scrollbar { display: none; }

.depo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 82px 32px 32px;
    display: flex; flex-direction: column; gap: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.depo-card::after {
    content: "";
    position: absolute; inset: 0 0 auto 0; height: 5px;
    background: linear-gradient(90deg, var(--peach), var(--rose));
}
.depo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Aspas decorativas — fora do fluxo do texto */
.depo-card::before {
    content: "\201C";
    position: absolute;
    top: 6px; left: 26px;
    font-family: var(--font-display);
    font-size: 5rem; line-height: 1;
    color: var(--peach);
    pointer-events: none;
}

.depo-card blockquote { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }

.depo-card figcaption {
    display: flex; flex-direction: column; gap: 3px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(39, 73, 49, 0.08);
}
.depo-name { font-family: var(--font-display); font-weight: 700; color: var(--green); }
.depo-role { font-size: 0.84rem; color: var(--rose); }

/* Controles (setas + dots) — abaixo do carrossel, longe do texto */
.depo-controls {
    display: flex; align-items: center; justify-content: center; gap: 20px;
    margin-top: 34px;
}
.depo-arrow {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    color: var(--green);
    border: 1px solid var(--sage);
    border-radius: 999px;
    font-size: 1.8rem; line-height: 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.depo-arrow span { transform: translateY(-2px); }
.depo-arrow:hover { background: var(--green); color: var(--white); transform: scale(1.07); }

.depo-dots { display: flex; align-items: center; gap: 9px; }
.depo-dots button {
    width: 9px; height: 9px; padding: 0;
    border: none; border-radius: 999px;
    background: var(--sage);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}
.depo-dots button.is-active { background: var(--rose); width: 26px; }

/* ================= FEIRA ================= */
.feira { background: var(--peach); color: var(--green); }
.feira-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(72px, 5vw + 40px, 96px);
    align-items: center;
}
.feira-text p { margin-top: 16px; }
.feira-horario {
    font-family: var(--font-display); font-weight: 700;
    color: var(--white);
    font-size: clamp(1.15rem, 0.9rem + 1.1vw, 1.5rem);
    margin: 6px 0 8px !important; line-height: 1.15;
    white-space: nowrap;
}
.feira-address {
    font-style: normal;
    margin-top: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.feira-text .btn { margin-top: 24px; }

.map-embed {
    border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
    background: var(--sage-light);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-link {
    display: inline-block; margin-top: 14px;
    font-weight: 700; color: var(--green);
    border-bottom: 2px solid rgba(39, 73, 49, 0.35);
    transition: border-color 0.2s ease;
}
.map-link:hover { border-color: var(--green); }

/* ================= LISTA DE ESPERA ================= */
.lista-espera { background: var(--white); }
.waitlist-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(130% 150% at 12% -10%, #315c3d 0%, var(--green) 46%, #1e3827 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 64px);
    text-align: center;
    max-width: 820px; margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}
.waitlist-card::before,
.waitlist-card::after {
    content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.waitlist-card::before {
    width: 360px; height: 360px; top: -130px; right: -90px;
    background: radial-gradient(circle, rgba(238, 186, 164, 0.38), transparent 68%);
}
.waitlist-card::after {
    width: 320px; height: 320px; bottom: -140px; left: -100px;
    background: radial-gradient(circle, rgba(175, 201, 159, 0.28), transparent 68%);
}
.waitlist-card > * { position: relative; z-index: 1; }
.waitlist-card .eyebrow { color: var(--green); }
.waitlist-card .section-title { color: var(--white); margin-bottom: 18px; }
.waitlist-card .section-title em { color: var(--peach); }
.waitlist-card > p { color: rgba(255, 255, 255, 0.88); max-width: 620px; margin: 0 auto; }

.waitlist-btn { margin-top: 32px; }
/* seletor com peso maior que ".waitlist-card > p", senão o margin some */
.waitlist-card > .waitlist-note {
    margin-top: 32px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}

/* ================= RODAPÉ ================= */
.site-footer { background: var(--green); color: var(--white); padding: clamp(56px, 7vw, 80px) 0 32px; }
.footer-inner {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-tagline { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; }
.footer-heading { font-size: 1.1rem; margin-bottom: 14px; color: var(--peach); }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--peach); color: var(--green); transform: translateY(-3px); }

.footer-bottom {
    padding-top: 24px;
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 8px 20px;
}
.footer-bottom p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); margin: 0; }
.footer-credit {
    margin-left: auto;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.15s ease;
}
.footer-credit:hover { color: var(--peach); }

/* ================= WHATSAPP FLUTUANTE ================= */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    width: 58px; height: 58px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #25d366; color: var(--white);
    box-shadow: 0 10px 28px -8px rgba(37, 211, 102, 0.7);
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ================= FOCO / ACESSIBILIDADE ================= */
/* Link "pular para o conteúdo": invisível até receber foco pelo teclado */
.skip-link {
    position: absolute; left: 16px; top: -100px; z-index: 999;
    background: var(--green); color: var(--white);
    font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
    padding: 12px 20px; border-radius: 999px;
    transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 16px; outline-offset: 3px; }

:focus-visible { outline: 3px solid var(--peach); outline-offset: 3px; border-radius: 4px; }
.site-header :focus-visible, .hero :focus-visible, .waitlist-card :focus-visible, .feira :focus-visible { outline-color: var(--green); }

/* ================= RESPONSIVO ================= */
/* Soluções colapsa cedo: em 2 colunas o card precisa ser largo o
   suficiente para as tags ficarem em 1 linha. */
@media (max-width: 1100px) {
    .solucoes-grid { grid-template-columns: 1fr; }
    .card { max-width: 620px; margin-inline: auto; }
}

@media (max-width: 940px) {
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .depo-card { flex-basis: calc((100% - 22px) / 2); }
}

@media (max-width: 820px) {
    :root { --header-h: 66px; }

    /* Menu mobile */
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; inset: var(--header-h) 0 auto 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--white);
        padding: 8px 24px 24px;
        border-top: 1px solid #eceae4;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 24px 40px -22px rgba(39, 73, 49, 0.45);
    }
    .nav-list.is-open { transform: translateY(0); }
    .nav-list li { border-bottom: 1px solid #f0eee8; }
    .nav-list li a:not(.btn) { display: block; padding: 16px 4px; }
    /* No mobile a sublinha animada atrapalha; usa cor no hover */
    .nav-list a:not(.btn)::after { display: none; }
    .nav-cta-item { border-bottom: 0 !important; margin-top: 16px; }
    .nav-cta-item .btn { width: 100%; }

    .solucoes-grid { grid-template-columns: 1fr; }
    .sobre-inner { grid-template-columns: 1fr; }
    /* No mobile a imagem vem DEPOIS do texto */
    .sobre-text { order: 1; }
    .sobre-media { order: 2; max-width: 460px; margin-inline: 0; }
    .feira-inner { grid-template-columns: 1fr; }

    /* Mobile: conteúdo das seções e boxes à esquerda (hero e footer seguem centralizados) */
    .section-head--center { text-align: left; margin-inline: 0; }
    .section-head--center .section-sub { margin-inline: 0; }
    .waitlist-card { text-align: left; }
    .waitlist-card > p { margin-inline: 0; }
}

@media (max-width: 620px) {
    body { font-size: 1rem; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .depo-card { flex-basis: 100%; }
    .depo-arrow--prev { left: -6px; }
    .depo-arrow--next { right: -6px; }
    .waitlist-btn { width: 100%; justify-content: center; }
    .waitlist-br { display: none; }

    /* Título do hero em duas linhas */
    .hero-br { display: inline; }

    /* Quebras de linha só no mobile */
    .u-break { display: block; }
    .u-hide-m { display: none; }

    /* Footer centralizado no mobile */
    .footer-inner { flex-direction: column; gap: 32px; }
    .site-footer { text-align: center; }
    .footer-logo { margin-inline: auto; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 6px; }
    .footer-credit { margin-left: 0; }
}

/* ================= MOTION ================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* Scroll reveal (progressivo, ativado via JS) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
