:root {
    --bg-dark: #0e3d52;
    --bg-darker: #0a2a3a;
    --accent-cream: #f4ecd8;
    --accent-orange: #f58732;
    --accent-teal: #1a7a7f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--accent-cream);
    font-family: 'Syne', sans-serif;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
}

/* --- HEADER & LOGO --- */
header, .menu-header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 2rem 4rem; display: flex;
    justify-content: space-between; align-items: center;
    z-index: 100;
}

.logo {
    font-family: 'Pacifico', cursive; font-size: 2.2rem;
    color: var(--accent-orange); text-shadow: 2px 2px 0px var(--accent-teal);
    text-transform: none; font-style: normal;
}

.menu-open, .menu-close { font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; cursor: pointer; transition: color 0.3s; }
.menu-open:hover, .menu-close:hover { color: var(--accent-orange); }

/* --- MENÚ OVERLAY MEJORADO --- */
/* --- MENÚ OVERLAY (Efecto Splash Orgánico / Agua) --- */
.menu-overlay {
    position: fixed; 
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 200;
    display: flex; flex-direction: column; justify-content: center;
    
    /* Ocultamos el contenedor y los textos al principio */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.5s;
    pointer-events: none;
    
    /* El fondo ya no es un color sólido acá, lo van a hacer las gotas */
    background: transparent; 
}

.menu-overlay.active { 
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease;
    pointer-events: auto; 
}

/* 1. Gota Principal de Agua (Azul Oscuro) */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: 1rem; right: 3rem; /* Nace cerca de tu botón MENÚ */
    width: 150px; height: 150px;
    background-color: rgba(10, 42, 58, 0.98); 
    backdrop-filter: blur(10px);
    
    /* MAGIA LÍQUIDA: Un border-radius irregular crea la forma de gota amorfa */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    
    transform-origin: center;
    transform: scale(0) rotate(0deg);
    /* Crece, cambia de forma orgánica y gira como agua fluyendo */
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), border-radius 1.2s ease;
    z-index: -1; 
}

/* 2. Gota Secundaria del Splash (Color Teal para contraste) */
.menu-overlay::after {
    content: '';
    position: absolute;
    top: 3rem; right: 5rem;
    width: 80px; height: 80px;
    background-color: var(--accent-teal);
    
    /* Otra forma irregular distinta */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    
    transform-origin: center;
    transform: scale(0) rotate(0deg);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -2; 
}

/* Animación cuando hacés clic en MENÚ + */
.menu-overlay.active::before {
    transform: scale(30) rotate(45deg); /* Inunda toda la pantalla */
    border-radius: 50%; /* Se estabiliza y aplana al final */
}

.menu-overlay.active::after {
    transform: scale(35) rotate(-20deg); /* Salpica por detrás */
}

.menu-content-wrapper {
    display: flex; justify-content: space-between; align-items: flex-end;
    width: 80%; max-width: 1200px; margin: 0 auto;
}

.menu-links { display: flex; flex-direction: column; text-align: left; gap: 1.5rem; }
.menu-links a {
    color: var(--accent-cream); text-decoration: none;
    font-family: 'Playfair Display', serif; font-size: 4rem; font-style: italic;
    transition: color 0.3s ease, transform 0.3s; transform-origin: left;
}
.menu-links a:hover { color: var(--accent-orange); transform: translateX(15px); }

.menu-info { display: flex; flex-direction: column; gap: 3rem; text-align: right; }
.menu-subtitle { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-teal); margin-bottom: 1rem; font-weight: 800; }
.social-links, .legal-links { display: flex; flex-direction: column; gap: 0.5rem; }
.social-links a, .legal-links a {
    color: var(--accent-cream); text-decoration: none; font-size: 1.1rem;
    transition: color 0.3s;
}
.social-links a:hover, .legal-links a:hover { color: var(--accent-orange); }
.legal-links a { font-size: 0.9rem; opacity: 0.8; }

/* Media Query para el menú en móviles */
@media (max-width: 768px) {
    .menu-content-wrapper { flex-direction: column; align-items: flex-start; gap: 3rem; }
    .menu-info { text-align: left; }
    .menu-links a { font-size: 2.5rem; }
}

/* --- HERO --- */
.hero {
    position: relative; height: 100vh; width: 100%;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    overflow: hidden; text-align: center;
}
.video-background {
    position: absolute; top: 50%; left: 50%;
    width: 100vw; height: 100vh; transform: translate(-50%, -50%);
    pointer-events: none; z-index: -2;
}
.video-background iframe {
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(14,61,82,0.3) 0%, rgba(14,61,82,0.95) 100%); z-index: -1;
}
.pre-title { font-size: clamp(0.65rem, 2.8vw, 1rem); font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--accent-cream); opacity: 0.75; margin-bottom: 1.5rem; }
.hero-content h1 { font-size: clamp(4rem, 10vw, 8rem); text-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.scroll-indicator { position: absolute; bottom: 40px; font-size: 0.8rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; animation: bounce 2s infinite; }

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* --- HORIZONTAL SCROLL & PANELS --- */
/* --- REGLA BASE PARA MATAR EL SCROLLBAR --- */
html, body {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
}

/* --- HORIZONTAL SCROLL & PANELS --- */
.horizontal-wrapper { 
    background: var(--accent-cream); 
    color: var(--bg-dark); 
    width: 100vw;      /* Forzamos el ancho a la ventana completa */
    max-width: 100%;   /* Evita que se desborde */
    overflow: hidden; 
}

.horizontal-container { 
    display: flex; 
    width: max-content; 
    height: 100vh; 
}

.panel {
    width: 100vw; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0 8vw;
    flex: 0 0 100vw; /* LA REGLA DE ORO: Le prohíbe a Flexbox restarle un solo píxel */
    box-sizing: border-box;
}

.panel:nth-child(even) { background: var(--accent-teal); color: var(--accent-cream); }
.panel:last-child { background: var(--bg-darker); color: var(--accent-cream); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; width: 100%; }
.split.reverse .text-block { order: 2; }
.split.reverse .mockup-block { order: 1; }

.text-block h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 1.5rem; }
.highlight { color: var(--accent-orange); }
.text-block p { font-size: 1.2rem; line-height: 1.7; font-weight: 500; margin-bottom: 2rem; opacity: 0.9; }

.feature-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.feature-tags span {
    padding: 7px 15px; border: 1px solid currentColor; border-radius: 30px;
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.feature-tags span:hover {
    background-color: currentColor;
    color: var(--bg-dark);
}

/* --- MOCKUP iPHONE STYLE --- */
.mockup-block { display: flex; justify-content: center; position: relative; }
.phone-mockup {
    width: 300px; height: 640px; 
    border: 14px solid #111; border-radius: 45px; 
    background-color: #222; overflow: hidden; position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 10px rgba(255,255,255,0.1);
}
.phone-mockup::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 110px; height: 25px; background: #111;
    border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; z-index: 10;
}
.app-screen { width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.float-anim { animation: floating 6s ease-in-out infinite; }
.float-anim-alt { animation: floating 6s ease-in-out infinite alternate-reverse; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- FORMULARIO WAITLIST (CTA) --- */
.text-center { text-align: center; max-width: 700px; margin: 0 auto; }
.waitlist-form {
    display: flex; gap: 10px; margin-top: 3rem; justify-content: center;
    flex-wrap: wrap;
}
.waitlist-input {
    padding: 1.2rem 1.5rem; border-radius: 50px; border: 2px solid transparent;
    outline: none; font-family: 'Syne', sans-serif; font-size: 1rem;
    width: 100%; max-width: 350px; background: rgba(255,255,255,0.1); color: #fff;
    transition: border-color 0.3s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.5); }
.waitlist-input:focus { border-color: var(--accent-orange); background: rgba(255,255,255,0.15); }

.btn-primary {
    padding: 1.2rem 2.5rem; background-color: var(--accent-orange); color: var(--accent-cream);
    text-decoration: none; font-weight: 800; font-family: 'Syne', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 50px; transition: transform 0.3s, background-color 0.3s; border: none; cursor: pointer;
}
.btn-primary:hover { background-color: #e07520; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(245, 135, 50, 0.4); }

/* --- FOOTER --- */
.site-footer { background-color: var(--bg-dark); padding: 4rem 4rem 2rem; text-align: center; }
.footer-links { margin: 2rem 0; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;}
.footer-links a { color: var(--accent-cream); text-decoration: none; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; transition: color 0.3s; letter-spacing: 1px;}
.footer-links a:hover { color: var(--accent-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.8rem; color: rgba(244, 236, 216, 0.5); }


/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {

    /* --- Horizontal scroll: desactivado en mobile --- */
    .horizontal-wrapper {
        display: block !important;
        height: auto !important;
        overflow: hidden;
    }

    .horizontal-container {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
    }

    /* --- Panels: bloques que respiran --- */
    .panel {
        width: 100%;
        height: auto;
        min-height: 100vh;   /* fallback para browsers viejos */
        min-height: 100svh;  /* small viewport height: excluye la chrome del browser */
        padding: clamp(4.5rem, 12vw, 6rem) clamp(1.25rem, 6vw, 2rem) clamp(3rem, 8vw, 4.5rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* --- Grid: pasa a flujo vertical centrado --- */
    .split {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 6vw, 3rem);
        text-align: center;
    }

    .split .text-block { order: 1; }
    .split .mockup-block { order: 2; }

    /* --- Hero --- */
    .hero-content h1 {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 0.95;
    }

    .pre-title {
        letter-spacing: 3px;
    }

    .scroll-indicator {
        font-size: 0.65rem;
        letter-spacing: 3px;
        bottom: 28px;
    }

    /* --- Tipografías de panel con clamp() --- */
    .text-block h2,
    .text-center h2 {
        font-size: clamp(2rem, 8.5vw, 3rem);
        line-height: 1.05;
        margin-bottom: clamp(0.75rem, 3vw, 1.25rem);
    }

    .text-block p,
    .text-center > p {
        font-size: clamp(0.9rem, 3.8vw, 1.1rem);
        line-height: 1.68;
        margin-bottom: clamp(1.25rem, 4vw, 1.75rem);
    }

    .feature-tags {
        justify-content: center;
        gap: 0.5rem;
    }

    .feature-tags span {
        font-size: 0.68rem;
        padding: 6px 13px;
    }

    /* --- Mockup iPhone: proporcional y profundo --- */
    .mockup-block {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 0.25rem;
    }

    .phone-mockup {
        width: clamp(200px, 54vw, 255px);
        height: clamp(420px, 114vw, 545px);
        border-width: 10px;
        border-radius: 34px;
        animation: none !important;
        box-shadow:
            0 22px 55px rgba(0, 0, 0, 0.45),
            inset 0 0 8px rgba(255, 255, 255, 0.07);
    }

    .phone-mockup::before {
        width: 70px;
        height: 16px;
    }

    /* --- CTA Panel (Revolución) --- */
    .panel-cta {
        padding-top: clamp(4rem, 10vw, 6rem);
        padding-bottom: clamp(4rem, 10vw, 6rem);
    }

    .panel-cta .text-center {
        width: 100%;
        padding: 0 0.25rem;
    }

    /* --- Waitlist Form --- */
    .waitlist-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
        margin-top: 1.75rem !important;
    }

    .waitlist-input {
        max-width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .btn-primary,
    .btn-submit {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    /* --- Header --- */
    header, .menu-header {
        padding: 1.25rem 1.5rem;
    }

    .logo {
        font-size: 1.7rem;
    }
}


/* --- LOGO BADGE (CTA Panel) --- */
.logo-badge {
    width: clamp(180px, 22vw, 240px);
    height: clamp(180px, 22vw, 240px);
    border-radius: 30%;
    object-fit: contain;
    object-position: center center;
    background-color: #0a2a3a;
    padding: 4%;
    border: 3px solid var(--accent-orange);
    box-shadow:
        0 0 0 6px rgba(245, 135, 50, 0.15),
        0 18px 45px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
    animation: badge-pulse 4s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(245, 135, 50, 0.15), 0 18px 45px rgba(0,0,0,0.5); }
    50%       { box-shadow: 0 0 0 12px rgba(245, 135, 50, 0.08), 0 22px 50px rgba(0,0,0,0.6); }
}

@media (max-width: 768px) {
    .logo-badge {
        width: clamp(140px, 36vw, 180px);
        height: clamp(140px, 36vw, 180px);
        margin-bottom: 1.5rem;
    }
}

/* --- APP STORES BUTTONS --- */
.app-stores {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.store-btn {
    background-color: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, border-color 0.3s;
    min-width: 180px;
}

.store-btn:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--accent-orange);
    box-shadow: 0 14px 32px rgba(245, 135, 50, 0.22);
}

.store-icon {
    font-size: 1.8rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.1;
}

.store-text small {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 800;
}

.store-text span {
    font-size: 1.1rem;
    font-weight: 700;
}

.waitlist-hint {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajuste para que el formulario no pegue tanto arriba */
.waitlist-form {
    margin-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .app-stores {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .store-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* --- CANVASES & 3D --- */
#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 90; /* Subilo a 90 para que no lo tapen los paneles en el celu */
    pointer-events: none;
}

#wind-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 80; /* El viento un poquito más atrás que el kite */
    pointer-events: none;
    opacity: 0.4;
}

/* --- OCULTAR SCROLLBAR --- */

/* Para Chrome, Safari y Opera */
::-webkit-scrollbar {
    display: none;
}

/* Para Firefox, IE y Edge */
body {
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;  /* Firefox */
}


/* El contenedor padre que aplica la física líquida */
.liquid-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: url('#gooey'); /* AQUÍ se aplica el ID del SVG */
    z-index: -1;
}

/* Estilo base de las gotas */
.drop {
    position: absolute;
    top: 2rem;
    right: 4rem; /* Nacen desde el botón de MENÚ */
    background-color: var(--bg-dark);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- MENÚ OVERLAY (VINTAGE PREMIUM EQUILIBRADO) --- */

/* 1. Fondo del Agua (Tonos profundos para contraste perfecto) */
.drop-1 { width: 100px; height: 100px; transition-delay: 0s; background-color: rgba(10, 42, 58, 0.98); } 
.drop-2 { width: 150px; height: 150px; transition-delay: 0.1s; background-color: var(--bg-darker); } 
.drop-3 { width: 120px; height: 120px; transition-delay: 0.2s; background-color: var(--accent-teal); opacity: 0.6; } 

/* 2. Cabecera */
.menu-header {
    position: absolute; top: 0; left: 0; width: 100%;
    padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center;
    z-index: 210;
}
.menu-header .logo { color: var(--accent-orange); text-shadow: none; }
.menu-header .menu-close { 
    color: var(--accent-cream); font-family: 'Syne', sans-serif; 
    font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; transition: color 0.3s; 
    cursor: pointer;
}
.menu-header .menu-close:hover { color: var(--accent-orange); }

/* 3. Contenedor Central (Acomodado para que no se corte abajo) */
.menu-content-wrapper {
    display: flex; flex-direction: column; justify-content: space-between; align-items: center;
    width: 100%; height: 100vh; 
    padding: 6rem 4rem 2rem; /* Achicamos los márgenes para que todo entre perfecto */
    box-sizing: border-box;
    max-width: 1200px; margin: 0 auto;
}

/* 4. Links Principales: Tipografía Playfair más chica y centrada */
.menu-links {
    display: flex; flex-direction: column; text-align: center; gap: 0.8rem;
    margin-top: auto; margin-bottom: auto; /* Centra el bloque verticalmente */
}

.menu-links a {
    color: var(--accent-cream);
    text-decoration: none;
    font-family: 'Playfair Display', serif; /* Volvemos a la elegante */
    font-size: clamp(2rem, 4vw, 3.5rem); /* Tamaños medidos y proporcionales */
    font-style: italic;
    font-weight: 700;
    line-height: 1.1;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* Hover "Vintage": Rotación y sombra serigráfica */
.menu-links a:hover {
    color: var(--accent-orange);
    transform: scale(1.05) rotate(-2deg); /* Inclinación sutil */
    text-shadow: -3px 3px 0px var(--accent-teal); /* Sombra dura retro */
    z-index: 10;
}

/* 5. Footer del Menú (Redes y Legales bien ubicados abajo) */
.menu-info {
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
    width: 100%; border-top: 1px solid rgba(244, 236, 216, 0.15);
    padding-top: 1.5rem;
}

.social-links, .legal-links { display: flex; gap: 1.5rem; flex-direction: row; }
.menu-subtitle { display: none; } /* Mantenemos limpio sin el título "Conectemos" */

.social-links a, .legal-links a {
    color: rgba(244, 236, 216, 0.6); font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: 0.8rem; text-decoration: none; 
    text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;
}

.social-links a:hover, .legal-links a:hover { color: var(--accent-cream); }

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .menu-header { padding: 1.5rem 2rem; }
    .menu-content-wrapper { padding: 6rem 2rem 2rem; }
    .menu-links { gap: 1rem; }
    .menu-links a { font-size: 2.2rem; }
    .menu-info { flex-direction: column; align-items: center; gap: 1.5rem; border-top: none; }
    .social-links, .legal-links { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

/* --- CURSOR VINTAGE --- */
@media (min-width: 769px) {
    /* 1. Escondemos el cursor aburrido del sistema */
    body, a, button, .menu-open, .menu-close, input {
        cursor: none !important;
    }

    /* 2. Propiedades base para ambas partes */
    .cursor-dot, .cursor-outline {
        position: fixed;
        top: 0; 
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none; /* Vital: permite que los clics traspasen el dibujo */
    }

    /* 3. El núcleo sólido */
    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--accent-orange);
    }

    /* 4. El anillo flotante */
    .cursor-outline {
        width: 35px;
        height: 35px;
        border: 1.5px solid var(--accent-cream);
        /* Transición para cuando cambia de estado */
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    /* 5. ESTADO MAGNÉTICO: Cuando pasa sobre un link o botón */
    .cursor-outline.hover {
        width: 60px;
        height: 60px;
        background-color: rgba(244, 236, 216, 0.15); /* Crema casi transparente */
        border-color: var(--accent-orange);
        backdrop-filter: blur(3px); /* Le da un efecto de lente de cámara vieja */
    }
}