/* ==========================================================================
   VERSATO — Landing Page
   Estilo premium inspirado na LP One World Shoes (limpo, moderno, profissional)
   ========================================================================== */

:root {
    /* Colors — paleta monocromática premium (preto/branco/cinza) */
    --black: #0f0f0f;
    --ink: #1a1a1a;
    --gray-900: #2a2a2a;
    --gray-600: #6b6b6b;
    --gray-400: #9a9a9a;
    --gray-200: #e6e6e6;
    --gray-100: #f2f2f3;
    --gray-50:  #f7f7f8;
    --white: #ffffff;

    --bg-color: #ffffff;
    --bg-light: #f4f4f5;
    --bg-dark: #0f0f0f;

    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #ffffff;
    --border-color: #e8e8ea;

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Radius */
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    /* Hero detached block */
    --hero-gap: 30px;   /* respiro alrededor del bloque del banner */
    --header-h: 84px;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
    --transition: 0.45s var(--ease);

    /* Shadows */
    --shadow-sm: 0 4px 14px rgba(0,0,0,0.05);
    --shadow-md: 0 16px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 70px rgba(0,0,0,0.14);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

::selection { background: var(--black); color: var(--white); }

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding { padding: var(--spacing-xl) 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4079A5;
    margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.65); }

.section-title {
    font-size: clamp(2rem, 4.2vw, 3.25rem);
    margin-bottom: 1.25rem;
}

.section-text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
}
.section-text--light { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.7rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.15;
    max-width: 100%; /* nunca ultrapassa o container (evita estourar no mobile) */
}
.btn i { font-size: 1.1em; transition: transform var(--transition-fast); }
.btn:hover i { transform: translateX(3px); }

.btn-primary { background-color: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background-color: #2c2c2c; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-light { background-color: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

.btn-large { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* No mobile, botões podem quebrar o texto e usam padding menor → nunca estouram */
@media (max-width: 768px) {
    .btn { white-space: normal; }
    .btn-large { padding: 0.95rem 1.5rem; font-size: 1rem; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: var(--transition);
}
.header.scrolled {
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}

.header-container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo { display: flex; align-items: center; z-index: 1001; }
.logo img { height: 38px; width: auto; transition: var(--transition-fast); }

.nav-list { display: flex; gap: 2.2rem; }
.nav-link {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 2px;
    background-color: currentColor;
    transition: width var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block; width: 26px; height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .nav {
        position: fixed; inset: 0;
        background-color: var(--white);
        display: flex; align-items: center; justify-content: center;
        opacity: 0; visibility: hidden;
        transition: var(--transition);
        z-index: 1200;
    }
    .nav.active { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: center; gap: 2rem; }
    .nav-link { color: var(--text-main); font-size: 1.6rem; }
    .mobile-toggle { display: flex; z-index: 1300; }
    .header-actions .btn { display: none; }
    /* logo e hamburger sempre visíveis acima do overlay */
    .logo { z-index: 1300; }
    /* quando menu aberto: remove backdrop-filter para evitar stacking context que
       bloqueia o overlay z-index do .nav (filho do header) */
    .header.nav-open {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: var(--white);
        box-shadow: none;
    }
}

/* ==========================================================================
   01 · Hero — bloque redondeado "descolado" + carrusel tipo deck
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    --hero-top-trim: 10px; /* desktop: 10px menos de espacio entre header y banner */
    /* respiro alrededor del bloque: header arriba + gap a los lados/abajo */
    padding: calc(var(--header-h) + var(--hero-gap) - var(--hero-top-trim)) var(--hero-gap) var(--hero-gap);
}

.hero-stage {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-h) - var(--hero-gap) * 2);
    height: calc(100svh - var(--header-h) - var(--hero-gap) * 2);
    min-height: 480px;
    /* deja respirar el deck que asoma a la derecha (clip de overflow horizontal global) */
}

.hero-slide {
    position: absolute;
    top: 0; bottom: 0; left: 0;
    /* el activo no ocupa todo el ancho: deja un "gutter" a la derecha
       donde asoman los próximos slides (efecto deck) */
    width: var(--hero-w, 80%);
    display: flex;
    align-items: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
    transform-origin: center right;
    transition: transform 0.9s var(--ease), opacity 0.9s var(--ease), filter 0.9s var(--ease);
    will-change: transform, opacity, filter;
    /* background-image é definido direto no style="" de cada slide */
    background-size: cover;
    background-position: center;
}
/* sombras bem mais leves nos "próximos" banners (deck) */
.hero-slide:not(.pos-0) { box-shadow: 0 6px 16px rgba(0,0,0,0.10); }

/* ::before sem imagem — só garante a camada para o ::after gradient */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
}
/* Degradado para legibilidad del texto (lado izquierdo) */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12,12,12,0.78) 0%, rgba(12,12,12,0.45) 42%, rgba(12,12,12,0.05) 75%);
}

/* --- Posiciones del deck (asoman a la derecha; origen a la derecha)
   tuned para que TODOS los slides queden dentro del stage → respeta el
   respiro de la derecha (no quedan pegados al borde) --- */
.hero-slide.pos-0 { transform: translateX(0)   scale(1);    opacity: 1;    filter: none;                         z-index: 40; }
.hero-slide.pos-1 { transform: translateX(11%) scale(0.94); opacity: 0.97; filter: blur(1.5px) brightness(0.95); z-index: 30; }
.hero-slide.pos-2 { transform: translateX(16%) scale(0.88); opacity: 0.66; filter: blur(5px)   brightness(0.82); z-index: 20; }
.hero-slide.pos-3 { transform: translateX(20%) scale(0.82); opacity: 0.42; filter: blur(9px)   brightness(0.76); z-index: 10; }

/* Solo el slide activo muestra el contenido */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
    padding: 0 clamp(1.5rem, 5vw, 4.5rem);
    color: var(--text-light);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}
.hero-slide.pos-0 .hero-content { opacity: 1; pointer-events: auto; }
.hero-inner { width: 100%; }

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.03;
    margin-bottom: 1.3rem;
}
.hero-subtitle {
    font-size: clamp(1.02rem, 1.5vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 2rem;
}

/* Entrada animada del contenido del slide activo */
.hero-slide.pos-0 .hero-title    { animation: fadeUp 0.8s var(--ease) 0.30s both; }
.hero-slide.pos-0 .hero-subtitle { animation: fadeUp 0.8s var(--ease) 0.45s both; }
.hero-slide.pos-0 .btn           { animation: fadeUp 0.8s var(--ease) 0.60s both; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Navegación por arrastre / clic en el peek --- */
.hero-stage { cursor: grab; }
.hero-stage.is-dragging { cursor: grabbing; }
.hero-stage.is-dragging .hero-slide { transition: none; } /* respuesta inmediata al arrastrar */
/* los peeks invitan al clic */
.hero-slide:not(.pos-0) { cursor: pointer; }

/* --- Mobile --- */
@media (max-width: 768px) {
    .hero {
        --hero-gap: 20px;
        --header-h: 64px;
        --hero-w: 89%;
        --hero-top-trim: 0px; /* mantém o espaço original no mobile */
    }
    .hero-slide::after {
        background: linear-gradient(180deg, rgba(12,12,12,0.25) 0%, rgba(12,12,12,0.82) 100%);
    }
    /* deck más sutil en mobile (dentro do stage, sem grudar) */
    .hero-slide.pos-1 { transform: translateX(7%)  scale(0.95); opacity: 0.95; }
    .hero-slide.pos-2 { transform: translateX(11%) scale(0.90); }
    .hero-slide.pos-3 { transform: translateX(14%) scale(0.85); }
    .hero-content { max-width: 100%; }
    .hero-slide { background-position: right center; }
}

/* ==========================================================================
   02 · Tres Boxes
   ========================================================================== */
.boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.box-card {
    position: relative;
    min-height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* background-image é definido direto no style="" de cada box */
    background-size: cover;
    background-position: right center;
    isolation: isolate;
}
.box-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: right center;
    transition: transform 0.8s var(--ease);
    z-index: -2;
}
.box-card:hover::before { transform: scale(1.06); }
.box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,15,0.1) 0%, rgba(15,15,15,0.85) 100%);
    z-index: -1;
}
.box-body { padding: 2rem; color: var(--white); }
.box-icon { font-size: 2.2rem; margin-bottom: 0.9rem; display: block; }
.box-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.box-text { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 320px; }

@media (max-width: 860px) {
    .boxes-grid { grid-template-columns: 1fr; }
    .box-card { min-height: 260px; }
}

/* ==========================================================================
   03 · Brands
   ========================================================================== */
.brands { padding-top: 0; }
.brands-panel {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark) url('../assets/brands-bg.webp') center right / cover no-repeat;
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 5rem clamp(1.5rem, 5vw, 5rem);
}
.brands-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.80);
    z-index: 0;
}
.brands-panel > * { position: relative; z-index: 1; }
/* sem max-width no head → título e parágrafo não são forçados a quebrar */
.brands-head { margin-bottom: 3.5rem; }
.brands-head .section-text { max-width: none; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    transition: var(--transition);
}
.brand-item:hover { transform: translateY(-4px); }
.brand-logo {
    max-height: 48px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition-fast);
}
.brand-logo--lg { max-height: 70px; }
.brand-item:hover .brand-logo { opacity: 1; }

@media (max-width: 860px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .brands-panel { padding: 3rem 1.5rem; }
}

/* ==========================================================================
   04 · Partner / Ventajas
   ========================================================================== */
.partner-head { max-width: 720px; margin-bottom: 3.5rem; }
.partner-head .btn { margin-top: 1.5rem; }

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.advantage-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
}
.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.adv-icon {
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 1.2rem;
    display: block;
}
.adv-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.adv-text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.65; }

.mission {
    margin-top: 4rem;
    background: var(--bg-dark);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 5vw, 4rem);
    text-align: center;
}
.mission .btn { width: 100%; max-width: 360px; } /* CTA centrado, sem estourar a caixa */
.mission .eyebrow { color: rgba(255,255,255,0.6); }
.mission-text {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.92);
}

@media (max-width: 1024px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .partner-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   05 · Numbers / Stats
   ========================================================================== */
.numbers-head { text-align: center; margin: 0 auto 3.5rem; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
}
.stats-grid::before, .stats-grid::after {
    content: '';
    position: absolute;
    top: 12%; bottom: 12%;
    width: 1px;
    background-color: var(--border-color);
}
.stats-grid::before { left: 33.33%; }
.stats-grid::after { left: 66.66%; }

.stat-item { text-align: center; padding: 0 1.5rem; }
.stat-number {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--black);
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
}
.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.5;
}

.numbers-foot {
    text-align: center;
    max-width: 760px;
    margin: 3.5rem auto 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-grid::before, .stats-grid::after { display: none; }
}

/* ==========================================================================
   06 · Contact
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item i {
    font-size: 1.35rem;
    color: var(--black);
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.contact-item span, .contact-item a { color: var(--text-muted); line-height: 1.5; }
.contact-item a:hover { color: var(--black); }

.contact-social { display: flex; gap: 0.8rem; font-size: 1.5rem; margin-top: 0.5rem; }
.contact-social a {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--black);
    background: var(--white);
}
.contact-social a:hover { background: var(--black); color: var(--white); transform: translateY(-3px); }

.contact-form-wrapper {
    background: var(--white);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-bottom: 1.4rem; }
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: var(--transition-fast);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
}
.form-feedback { margin-top: 1rem; font-size: 0.95rem; text-align: center; min-height: 1.2em; }
.form-feedback.success { color: #1a7f4b; }
.form-feedback.error { color: #c0392b; }

@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   07 · About
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-content .section-text + .section-text { margin-top: 1.2rem; }
.about-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-logo img { max-height: 200px; width: auto; }

@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; gap: 2.5rem; }
    /* ícone "V" depois do texto (sem order:-1) */
    .about-logo { padding: 2rem; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.social-links { display: flex; gap: 0.8rem; font-size: 1.4rem; }
.social-links a {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--black);
}
.social-links a:hover { background: var(--black); color: var(--white); transform: translateY(-3px); }

/* Variante clara/sem círculo para a barra do footer escuro */
.social-links--light { font-size: 1.5rem; }
.social-links--light a {
    width: auto; height: auto;
    border: none; border-radius: 0;
    background: none;
    color: rgba(255,255,255,0.6);
}
.social-links--light a:hover { background: none; color: var(--white); transform: translateY(-2px); }

.footer-bottom { background: var(--bg-dark); color: rgba(255,255,255,0.55); padding: 1.75rem 0; }
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-credit { color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
    .footer-bottom-container { flex-direction: column; text-align: center; gap: 1.25rem; }
    .footer-bottom-right { flex-direction: column; gap: 1.25rem; }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    will-change: opacity, transform;
}
.reveal.active { opacity: 1; transform: translateY(0); }

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