

        /* --- RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: auto; background-color: #8fb9d8; }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #4a4a4a;
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Comienza arriba */
            overflow-x: hidden; 
        }

        h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; }

        /* --- FONDO FIJO --- */
        .background-fijo {
            position: fixed;
            top: -5%;
            left: 0;
            width: 100%;
            height: 110%;
            background-image: url('./assets/cielo.avif');
            background-size: cover;
            background-position: center top;
            z-index: -1;
            pointer-events: none;
            will-change: transform;
        }

        /* --- OVERLAY BOLETO DE ABORDAJE --- */
        #sobre-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100dvh;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            background-color: #1a1a1a;
            transition: opacity 1s ease 0.5s;
            overflow: hidden;
        }

        .panel-arriba, .panel-abajo {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
            padding: 20px;
            transition: transform 1.5s cubic-bezier(0.5, 0, 0.2, 1);
        }

        .panel-arriba {
            height: 55%;
            background-color: #fff;
            justify-content: center;
            border-bottom: 3px dashed #ccc;
            z-index: 20;
            gap: 1vh;
        }

        .panel-abajo {
            height: 45%;
            background-color: #f9f9f9;
            justify-content: center;
            z-index: 10;
        }

        .ticket-header { font-size: clamp(0.6rem, 2vw, 0.8rem); letter-spacing: 4px; color: #888; text-transform: uppercase; }
        .ticket-title { font-size: clamp(1.8rem, 7vw, 4rem); color: #c5a059; text-align: center; line-height: 1.1; }
        .ticket-info { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(15px, 5vw, 40px); margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px; width: 100%; max-width: 600px; }
        .ticket-info--stub { border-top: none; margin-top: 0; padding-top: 0; }
        .info-item { display: flex; flex-direction: column; align-items: center; }
        .info-label { font-size: 0.6rem; color: #aaa; text-transform: uppercase; margin-bottom: 2px; }
        .info-value { font-weight: 600; font-size: clamp(0.75rem, 2.5vw, 1rem); color: #444; }

        .sello-contenedor { position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%); z-index: 30; cursor: pointer; transition: all 0.5s; }
        .sello { width: clamp(115px, 28vw, 160px); height: clamp(115px, 28vw, 160px); background: white; border: 4px double #c5a059; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 5px 20px rgba(0,0,0,0.15); animation: latido 2.5s infinite ease-in-out; }
        .sello-iniciales { font-size: clamp(1.2rem, 5vw, 2rem); color: #c5a059; line-height: 1; }
        .sello-texto { color: #c5a059; font-size: clamp(0.5rem, 1.5vw, 0.65rem); letter-spacing: 1px; font-weight: 700; margin-top: 4px; }
        .sello-ayuda { font-size: 0.5rem; color: #aaa; margin-top: 2px; text-transform: uppercase; }

        body.abierto #sobre-overlay { pointer-events: none; opacity: 0; }
        body.abierto .panel-arriba { transform: translateY(-105%); }
        body.abierto .panel-abajo { transform: translateY(105%); }
        body.abierto .sello-contenedor { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }

        /* --- ELEMENTOS DE NAVEGACIÓN --- */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #c5a059;
            opacity: 0;
            transition: opacity 0.5s;
        }
        body.abierto .scroll-indicator { opacity: 1; }

        .scroll-arrow { width: 30px; height: 30px; transform: rotate(180deg); animation: rebote-abajo 2s infinite; }
        .scroll-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; font-weight: 600; text-shadow: 0 2px 4px rgba(255,255,255,0.8); }

        .plane-container {
            position: fixed;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: clamp(200px, 40vw, 400px);
            z-index: 1;
            pointer-events: none;
            animation: flotar 3s ease-in-out infinite;
            will-change: transform;
        }
        .plane-img { width: 100%; height: auto; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2)); }

        /* --- SECCIONES --- */
        .hero { height: 100vh; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; z-index: 10; }
         .hero-texts { margin-top: 200px; }
        .hero-title { font-size: clamp(3rem, 10vw, 6rem); color: #c5a059; text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8); }
        .hero-pretitle { font-size: clamp(1rem, 2vw, 1.5rem); letter-spacing: 3px; text-transform: uppercase; color: #666; margin-bottom: 10px; }

        .secciones-superiores {
            position: relative;
            z-index: 10;
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            gap: 150px;
        }

        /* --- TARJETAS --- */
        .card {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(3px);
            border-radius: 20px;
            padding: 40px 25px;
            width: 85%;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: scale(0.8);
            will-change: transform, opacity;
        }

        .card h2 { font-size: 1.8rem; color: #c5a059; margin-bottom: 15px; }
        .card p { font-size: 0.95rem; line-height: 1.6; color: #555; margin-bottom: 20px; }

        /* --- ICONOS UNIVERSALES --- */
        .card-icon { height: 80px; display: flex; justify-content: center; align-items: center; margin-bottom: 20px; }
        .card-icon svg { height: 100%; width: auto; max-width: 80px; }
        .card-icon svg path, .card-icon svg circle, .card-icon svg rect, .card-icon svg line, .card-icon svg g {
            stroke: #c5a059 !important;
            stroke-width: 5px !important;
            fill: none !important;
        }

                /* Caso especial: El icono de Save the Date que tiene un diseño distinto */
        .card-icon.save svg g path {
            stroke-width: 1px !important;
        }

        /* --- BOTONES Y DATOS --- */
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background-color: #c5a059; color: white; text-decoration: none; padding: 12px 25px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:hover { transform: scale(1.05); }
        
        .datos-bancarios { background: #fdfdfd; border: 1px solid #eee; border-radius: 15px; padding: 15px; margin-top: 20px; text-align: left; }
        .dato-pago-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
        .dato-pago-row:last-child { border-bottom: none; }
        .dato-pago-label { font-size: 0.6rem; color: #999; text-transform: uppercase; }
        .dato-pago-value { font-size: 0.8rem; font-weight: 600; color: #444; }
        .btn-copy-small { padding: 5px 10px; font-size: 0.6rem; background: #eee; color: #666; border-radius: 5px; cursor: pointer; border: none; }

        #mensaje-copia { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: #27ae60; color: white; padding: 10px 25px; border-radius: 50px; font-size: 0.8rem; z-index: 10000; opacity: 0; pointer-events: none; transition: 0.3s; }
        #mensaje-copia.show { opacity: 1; }

        /* --- ANIMACIONES --- */
        @keyframes rebote-abajo { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(180deg); } 40% { transform: translateY(10px) rotate(180deg); } 60% { transform: translateY(5px) rotate(180deg); } }
        @keyframes flotar { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, -55%); } }
        @keyframes latido { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); } 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); } }

        .countdown { display: flex; justify-content: center; gap: 15px; margin: 20px 0; }
        .time-box { display: flex; flex-direction: column; }
        .time-number { font-size: 1.5rem; font-weight: 700; color: #444; }
        .time-label { font-size: 0.6rem; text-transform: uppercase; color: #999; }


        /* --- BOTÓN CONFIRMAR --- */
.btn-confirmar {
    background-color: #c5a059 !important; /* Dorado */
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 10px auto;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* --- VENTANA MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 20000; /* Por encima de todo */
    backdrop-filter: blur(5px);
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 600px;
    height: 85vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: aparecerModal 0.4s ease forwards;
}

@keyframes aparecerModal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #c5a059;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 21000;
}

.modal-body {
    width: 100%;
    height: 100%;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Bloquear scroll del body cuando el modal está abierto */
body.modal-abierto {
    overflow: hidden;
}