/* =========================================
   0. GLOBALES, VARIABLES Y CURSOR
   ========================================= */
:root {
    --bg-light: #F9F9F7;
    --text-dark: #1A1A1A;
    --accent: #B85B35;
    --font-heading: 'Times New Roman', Times, serif;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html, body {
    overflow-x: hidden;
    width: 100%; /* Obliga al navegador a no usar ni un pixel más de la pantalla */
    position: relative; /* Contiene cualquier elemento rebelde */
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
}

/* Barra de desplazamiento (Gris Grafito Premium) */
/* --- RECUPERAMOS EL SCROLLBAR (Ahora sí, versión Premium) --- */
::-webkit-scrollbar { 
    width: 12px; /* Un pelín más ancha para el diseño editorial */
}
/* Fondo oscuro para que combine con el footer y las secciones negras */
::-webkit-scrollbar-track { 
    background: var(--text-dark); 
}
/* El "pulgar" gris con un borde del mismo color que el fondo para efecto de margen */
::-webkit-scrollbar-thumb { 
    background: #4A4A4A; 
    border-radius: 6px; 
    border: 3px solid var(--text-dark); 
}
::-webkit-scrollbar-thumb:hover { 
    background: #666666; 
}

/* Cursor CAD */
.cad-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;
}
.cad-cursor::before { content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background-color: #fff; }
.cad-cursor::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background-color: #fff; }
.cad-cursor.hovering { transform: translate(-50%, -50%) rotate(45deg); transition: transform 0.3s ease; }

@media screen and (max-width: 900px) {
    .cad-cursor { display: none; }
    * { cursor: auto; }
}


/* =========================================
   1. HEADER Y NAVEGACIÓN
   ========================================= */
.nav-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav-minimal.scrolled {
    background-color: rgba(249, 249, 247, 0.9) !important; 
    backdrop-filter: blur(12px) !important;
    padding: 1rem 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #FFFFFF; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    transition: color 0.3s;
}
.logo span { font-family: var(--font-sans); font-size: 0.8rem; font-weight: normal; margin-left: 5px; }
.nav-minimal.scrolled .logo { color: var(--text-dark); text-shadow: none; }

.desktop-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}
.desktop-menu a {
    text-decoration: none;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.desktop-menu a:hover { color: var(--accent); }
.btn-wa-nav { border-bottom: 1px solid #FFFFFF; padding-bottom: 2px; }

.nav-minimal.scrolled .desktop-menu a { color: var(--text-dark); text-shadow: none; }
.nav-minimal.scrolled .btn-wa-nav { border-color: var(--text-dark); }

/* Hamburguesa */
.menu-trigger { width: 40px; height: 10px; position: relative; z-index: 101; }
.draft-line { position: absolute; width: 100%; height: 1px; background-color: #FFFFFF; transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.line-1 { top: 0; }
.line-2 { bottom: 0; right: 0; width: 60%; }
/* .menu-trigger:hover .line-2 { width: 100%; } */
/* Solo aplica el hover si el dispositivo soporta hover real (Desktop/Mouse) */
@media (hover: hover) {
    .menu-trigger:hover .line-2 { 
        width: 100%; 
    }
}
.menu-trigger.active .draft-line { background-color: var(--bg-light); }
.menu-trigger.active .line-1 { top: 50%; transform: rotate(45deg); }
.menu-trigger.active .line-2 { top: 50%; width: 100%; transform: rotate(-45deg); }
.nav-minimal.scrolled .draft-line { background-color: var(--text-dark); }

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--text-dark); color: var(--bg-light); z-index: 99;
    display: flex; align-items: center; justify-content: center;
    clip-path: inset(0 0 100% 0); transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.fullscreen-menu.active { clip-path: inset(0 0 0 0); }
.menu-links { list-style: none; text-align: center; }
.menu-links li { margin: 2rem 0; }
.menu-links a { color: var(--bg-light); text-decoration: none; font-family: var(--font-heading); font-size: 3rem; transition: color 0.3s; }
.menu-links a:hover { color: var(--accent); }
.menu-footer { margin-top: 4rem; text-align: center; }
.btn-wa-menu { 
    display: inline-block;
    background-color: var(--accent); 
    color: var(--bg-light); 
    text-decoration: none; 
    padding: 1rem 2rem; 
    border-radius: 2px;
    font-size: 1.2rem; 
    font-family: var(--font-heading);
    transition: background 0.3s;
}
.btn-wa-menu:hover { background-color: #9c4d2d; }

@media screen and (min-width: 901px) {
    .menu-trigger { display: none; } /* Oculta hamburguesa en PC */
}
@media screen and (max-width: 900px) {
    .desktop-menu { display: none; } /* Oculta menú PC en celular */
    .menu-trigger { display: block; }
    .nav-minimal { padding: 1.5rem 2rem; }
    .nav-minimal.scrolled { padding: 1rem 2rem; }
    .menu-links a { font-size: 2rem; }
}


/* =========================================
   2. HERO PRINCIPAL REDISEÑADO
   ========================================= */
.redesigned-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh; 
    /* El gradiente oscuro permite que el texto blanco resalte perfectamente */
    background-image: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.7)), url("img/hero-2.webp");
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.redesigned-hero .hero-big-title {
    font-family: var(--font-heading);
    font-size: 6vw; /* Fluido según la pantalla */
    font-weight: normal;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 3rem 0;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.redesigned-hero .hero-big-title span {
    font-family: var(--font-sans);
    font-size: 2.5vw;
    font-style: italic;
    font-weight: 300;
    color: #E0E0E0;
    display: block;
    margin-top: 0.5rem;
}

/* Botón Glassmorphism (Elegante y no tapa la foto) */
.btn-glass {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFF;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFF;
    transform: translateY(-3px);
}

/* Indicador de Scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-indicator p {
    color: #FFF;
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #FFF;
    border-radius: 2px;
    animation: scrollAnimation 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scrollAnimation {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media screen and (max-width: 900px){
    .hero-scroll-indicator{
        display: none;
    }
}

/* =========================================
   ANIMACIÓN MENÚ: ARQUITECTURA -> CAFÉ
   ========================================= */
.arch-coffee-trigger {
    width: 35px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.arch-coffee-trigger .draft-line {
    background-color: #FFF;
    height: 2px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cup-smoke { width: 100%; }
.cup-body { width: 80%; }
.cup-plate { width: 100%; }

/* Hover estado normal: Efecto de planos desfasados */
.arch-coffee-trigger:hover .cup-smoke { width: 80%; }
.arch-coffee-trigger:hover .cup-body { width: 100%; }

/* Estado Activo: Transformación a Taza de Café */
.nav-minimal.scrolled .arch-coffee-trigger .draft-line { background-color: var(--text-dark); }
.menu-trigger.active .draft-line { background-color: var(--bg-light) !important; }

/* El humo (se vuelve curvado y sube) */
.menu-trigger.active .cup-smoke {
    width: 15px;
    transform: translateY(-4px) translateX(-10px) rotate(-15deg);
    border-radius: 50%;
    height: 10px;
    background: transparent !important;
    border: 2px solid transparent;
    border-top-color: var(--bg-light);
    border-left-color: var(--bg-light);
}

/* El cuerpo de la taza (forma de U con asa falsa) */
.menu-trigger.active .cup-body {
    width: 20px;
    height: 14px;
    background: transparent !important;
    border: 2px solid var(--bg-light);
    border-radius: 2px 2px 10px 10px;
    transform: translateY(-2px) translateX(-5px);
}

/* El plato */
.menu-trigger.active .cup-plate {
    width: 28px;
    transform: translateY(-6px) translateX(-1px);
}

@media screen and (max-width: 900px) {
    .redesigned-hero .hero-big-title { font-size: 3rem; }
    .redesigned-hero .hero-big-title span { font-size: 1.5rem; }
    .btn-glass { padding: 1rem 2rem; font-size: 0.8rem; }
}


/* =========================================
   3. SECCIÓN ASIMÉTRICA (Manifiesto / Especialidades) - REVISADA PARA DESBORDE
   ========================================= */
.hero-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 100vh;
    padding-top: 15vh;
    padding-bottom: 10vh; /* <-- Espacio seguro para proteger tu botón */
    align-items: center;
    position: relative; 
    z-index: 10; 
}

/* --- MANTENEMOS EL RESTO DE ESTILOS QUE YA FUNCIONARON RESPONSIVAMENTE --- */
.hero-text-box { 
    padding: 0 4rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.subtitle { 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8rem; 
    color: gray; 
    margin-bottom: 1.5rem; 
}

.hero-text-box h1 { 
    font-family: var(--font-heading); 
    /* MANTENEMOS EL CLAMP RESPONSIVO */
    font-size: clamp(3rem, 4.5vw, 5rem); 
    line-height: 1; 
    margin-bottom: 1.5rem; 
    font-weight: normal; 
    color: var(--text-dark); 
}

.manifiesto-desc {
    font-family: var(--font-sans);
    font-size: 1rem; 
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem; 
    max-width: 83%;
}

.manifiesto-list {
    list-style: none;
    margin-bottom: 2rem; 
}

.manifiesto-list li {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.manifiesto-list li span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: bold;
}

.btn-wa-hero { 
    display: inline-block; 
    padding: 1rem 2rem; 
    background-color: var(--text-dark); 
    color: var(--bg-light); 
    text-decoration: none; 
    align-self: flex-start; 
    border-radius: 2px; 
    transition: background 0.3s; 
}

.btn-wa-hero:hover { 
    background-color: var(--accent); 
}

.hero-image-box { position: relative; padding-right: 4rem; padding-bottom: 2rem; }
.img-main { width: 100%; height: 80vh; object-fit: cover; }
.img-secondary { 
    position: absolute; 
    bottom: -5%; 
    left: -15%; 
    width: 40%; 
    height: auto; 
    border: 15px solid var(--bg-light); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    z-index: 2; 
    /* <-- ESTO ES LA MAGIA --> */
    transform: translateY(12vh); /* Empuja solo la foto hacia la sección negra */
}

@media screen and (max-width: 900px) {
    /* 1. Apilamos todo en una sola columna */
    .hero-grid { 
        grid-template-columns: 1fr; 
        min-height: auto; /* Quitamos la altura forzada en móvil */
        padding-top: 12vh; 
        padding-bottom: 2rem; 
    }
    
    /* 2. Ajustamos los textos para que respiren y se centren un poco mejor */
    .hero-text-box { 
        padding: 0 2rem; 
        margin-bottom: 3rem; 
    }
    
    .hero-text-box h1 { 
        font-size: 3.5rem; 
    }
    
    .manifiesto-desc {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .manifiesto-list li {
        font-size: 1rem;
    }

    /* 3. Controlamos las imágenes para que no desborden a lo loco */
    .hero-image-box { 
        padding: 0 2rem; 
        margin-top: 2rem;
    }
    
    .img-main { 
        height: 60vh; 
    }
    
    /* 4. Reseteamos el truco de la imagen secundaria para pantallas chicas */
    .img-secondary { 
        width: 60%; 
        bottom: -5%; 
        left: 5%; 
        border-width: 10px; /* Borde más fino en móvil */
        /* Reducimos el empuje para que desborde elegante pero no se trague el botón u otras secciones */
        transform: translateY(3vh); 
    }
}


/* =========================================
   4. SECCIÓN PROYECTOS (OSCURO)
   ========================================= */
.projects-section { background-color: var(--text-dark); color: var(--bg-light); padding: 8rem 4rem; margin-top: 0; }
.section-header { display: flex; align-items: flex-end; gap: 2rem; margin-bottom: 6rem; }
.section-title { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1; font-weight: normal; }
.header-line { flex-grow: 1; height: 1px; background-color: rgba(249, 249, 247, 0.2); margin-bottom: 1rem; }
.section-desc { max-width: 300px; font-size: 0.9rem; color: #A0A0A0; line-height: 1.5; margin-bottom: 0.5rem; }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2rem; margin-bottom: 4rem; }
.project-card { text-decoration: none; color: var(--bg-light); display: block; position: relative; overflow: hidden; }
.card-large { grid-column: 1 / 8; }
.card-small { grid-column: 9 / 13; }
.card-tall { grid-column: 3 / 11; margin-top: 4rem; }
.offset-down { margin-top: 8rem; }
.img-wrapper { width: 100%; height: 100%; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s ease; filter: grayscale(30%) brightness(0.8); }
.project-info { position: absolute; bottom: -50px; left: 0; padding: 2rem; width: 100%; background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0) 100%); opacity: 0; transition: all 0.4s ease; }
.project-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.project-name { font-family: var(--font-heading); font-size: 2rem; font-weight: normal; }
.project-card:hover .img-wrapper img { transform: scale(1.05); filter: grayscale(0%) brightness(1); }
.project-card:hover .project-info { bottom: 0; opacity: 1; }
.btn-outline-light { display: inline-block; padding: 1rem 3rem; border: 1px solid var(--bg-light); color: var(--bg-light); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; transition: all 0.3s ease; }
.btn-outline-light:hover { background-color: var(--bg-light); color: var(--text-dark); }

@media screen and (max-width: 900px) {
    .projects-section { padding: 4rem 2rem; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .section-title { font-size: 3rem; }
    .header-line { display: none; }
    .projects-grid { display: flex; flex-direction: column; gap: 3rem; }
    .offset-down, .card-tall { margin-top: 0; }
    .project-info { bottom: 0; opacity: 1; background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0) 80%); }
}


/* =========================================
   5. SECCIÓN EL ESTUDIO (CLARO)
   ========================================= */
.studio-section { background-color: var(--bg-light); color: var(--text-dark); padding: 10rem 4rem; }
.studio-container { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1400px; margin: 0 auto; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); display: block; margin-bottom: 2rem; }
.studio-text h2 { font-family: var(--font-heading); font-size: 4rem; line-height: 1.1; margin-bottom: 2rem; font-weight: normal; }
.studio-text h2 span { font-style: italic; color: gray; }
.studio-text p { font-family: var(--font-sans); font-size: 1.1rem; line-height: 1.8; color: #4A4A4A; margin-bottom: 3rem; max-width: 450px; }
.studio-stats { display: flex; gap: 4rem; border-top: 1px solid rgba(0,0,0,0.1); padding-top: 2rem; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 2.5rem; color: var(--accent); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: gray; font-weight: bold; }
.studio-image { position: relative; padding-left: 2rem; }
.studio-image img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(15%) contrast(1.1); position: relative; z-index: 2; }
.image-accent { position: absolute; bottom: -3rem; left: 0; width: 60%; height: 60%; border: 1px solid var(--text-dark); z-index: 1; }

@media screen and (max-width: 900px) {
    .studio-section { padding: 6rem 2rem; }
    .studio-container { grid-template-columns: 1fr; gap: 4rem; }
    .studio-text h2 { font-size: 3rem; }
    .studio-image { padding-left: 0; }
    .image-accent { bottom: -1.5rem; left: -1rem; width: 80%; border-width: 1px; }
}


/* =========================================
   6. MEGA FOOTER PREMIUM
   ========================================= */
.footer-premium { background-color: var(--text-dark); color: var(--bg-light); padding: 8rem 4rem 2rem 4rem; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 8rem; }
.footer-cta-wrapper { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title { font-family: var(--font-heading); font-size: 5rem; font-weight: normal; line-height: 1.1; margin-bottom: 1.5rem; }
.cta-title span { color: var(--accent); font-style: italic; }
.cta-desc { font-size: 1.1rem; color: #A0A0A0; margin-bottom: 3.5rem; }
.btn-wa-massive { display: inline-block; background-color: var(--bg-light); color: var(--text-dark); padding: 1.5rem 4rem; border-radius: 2px; text-decoration: none; font-family: var(--font-heading); font-size: 1.5rem; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.btn-wa-massive:hover { background-color: var(--accent); color: var(--bg-light); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); }
.footer-info-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 4rem; position: relative; z-index: 2; }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--bg-light); }
.footer-col p, .footer-col ul { color: #888; font-size: 0.9rem; line-height: 1.8; list-style: none; }
.footer-col a { color: #888; text-decoration: none; transition: color 0.3s; }
.hover-link:hover { color: var(--accent); }
.brand-col .footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; color: var(--bg-light); }
.brand-col .footer-logo span { font-family: var(--font-sans); font-size: 1rem; }
.brand-col p { max-width: 300px; }
.footer-watermark { position: absolute; bottom: -5%; left: 50%; transform: translateX(-50%); font-family: var(--font-heading); font-size: 18vw; font-weight: bold; color: rgba(255, 255, 255, 0.02); white-space: nowrap; z-index: 1; pointer-events: none; letter-spacing: -5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; font-size: 0.8rem; color: #555; position: relative; z-index: 2; }
.agency-link { color: #777; text-decoration: none; border-bottom: 1px solid #777; transition: all 0.3s; }
.agency-link:hover { color: var(--accent); border-color: var(--accent); }

@media screen and (max-width: 900px) {
    .footer-premium { padding: 6rem 2rem 2rem 2rem; gap: 4rem; }
    .cta-title { font-size: 3rem; }
    .btn-wa-massive { font-size: 1.1rem; padding: 1.2rem 2rem; width: 100%; box-sizing: border-box; }
    .footer-info-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .brand-col p { max-width: 100%; margin: 0 auto; }
    .footer-watermark { font-size: 25vw; bottom: 5%; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}


/* =========================================
   7. CLASES UTILITARIAS Y ANIMACIONES
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.reveal-left { transform: translateX(-50px); }
.reveal.reveal-right { transform: translateX(50px); }
.reveal.active { opacity: 1; transform: translate(0, 0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }