/* =========================================
   RESET Y ESTILOS GLOBALES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f0f0f;
    color: #fff;
    line-height: 1.6;
}

/* =========================================
   HEADER Y NAVEGACIÓN
   ========================================= */
header {
    background: #000;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo { height: 65px; }

/* BREADCRUMB NEÓN MORADO */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #ffffff;
    flex-wrap: wrap;
}

.home-link { display: inline-block; transition: none; }

.home-icon {
    width: 34px;
    height: 34px;
    /* Brillo morado intenso */
    filter: drop-shadow(0 0 10px rgba(160, 32, 240, 0.8));
    transition: all 0.35s ease;
}

.home-link:hover .home-icon {
    transform: scale(1.3) rotate(-12deg);
    filter: drop-shadow(0 0 22px #a020f0);
}

.separator { color: #aaa; font-size: 22px; }

.current-page {
    color: #a020f0;
    font-weight: bold;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* =========================================
   TIPOGRAFÍA Y TÍTULOS
   ========================================= */
h1, h2, .paquete h3, .paquete-extra h3, .precio {
    font-family: 'Share Tech Mono', monospace !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 { 
    font-size: 2.8rem; 
    color: #a020f0; 
    text-shadow: 0 0 20px rgba(160,32,240,0.7); 
    margin-bottom: 70px; 
    text-align: center; 
}

h2 { 
    font-size: 2.3rem; 
    color: #a020f0; 
    text-shadow: 0 0 15px rgba(160,32,240,0.6); 
    margin-bottom: 60px; 
    text-align: center; 
}

.paquete h3, .paquete-extra h3 { 
    font-size: 1.9rem; 
    color: #ffffff; 
    margin-bottom: 20px; 
    text-align: center; 
    text-shadow: 0 0 12px rgba(160,32,240,0.4); 
}

.precio { 
    font-size: 2.7rem !important; 
    color: #a020f0 !important; 
    font-weight: bold; 
    margin: 25px 0 !important; 
    text-align: center; 
    text-shadow: 0 0 18px rgba(160,32,240,0.8); 
}

/* =========================================
   ESTILOS DE PAQUETES (XV y EXTRAS)
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }

/* Contenedores Flex para alinear alturas */
.paquetes-xv, .paquetes-extra { 
    display: flex; 
    gap: 35px; 
    flex-wrap: wrap; 
    justify-content: center; 
    margin-bottom: 90px;
    align-items: stretch; /* Estira cajas */
}

/* Estilo Visual Base */
.paquete, .paquete-extra { 
    background: #1a1a1a; 
    border: 2px solid #333; 
    border-radius: 15px; 
    padding: 30px; 
    position: relative; 
    transition: all 0.3s;
    display: flex;       
    flex-direction: column; 
}

/* Anchos específicos */
.paquete { width: 360px; }
.paquete-extra { width: 450px; } 

/* Hover compartido */
.paquete:hover, .paquete-extra:hover { 
    transform: translateY(-12px); 
    border-color: #a020f0; 
    box-shadow: 0 10px 30px rgba(160,32,240,0.3); 
}

/* Etiqueta "Más Solicitado" */
.mas-solicitado { border-color: #a020f0; }
.mas-solicitado::before { 
    content: "MÁS SOLICITADO"; 
    position: absolute; 
    top: -14px; left: 50%; transform: translateX(-50%); 
    background: #a020f0; color: #fff; 
    padding: 8px 25px; 
    border-radius: 30px; 
    font-weight: bold; font-size: 0.9rem; 
}

.paquete-extra .precio {
    font-size: 2rem !important; 
    margin: 15px 0 !important;
}

/* Listas y Palomitas */
.paquete ul, .paquete-extra ul { 
    list-style: none; 
    margin-bottom: 30px; 
    flex-grow: 1; /* Empuja el botón al fondo */
}

.paquete li, .paquete-extra li { 
    margin: 12px 0; 
    padding-left: 38px; 
    position: relative; 
    text-align: left;
}

.paquete li::before, .paquete-extra li::before {
    content: "✓";
    color: #a020f0;
    position: absolute;
    left: 0; 
    top: 50%; transform: translateY(-50%);
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 0 0 12px #a020f0;
    line-height: 1;
}

/* Botón Elegir */
.btn-elegir { 
    display: block; 
    width: 100%; 
    padding: 18px 20px; 
    font-family: 'Share Tech Mono', monospace; 
    font-size: 20px; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #fff; 
    background-color: rgba(255,255,255,0.08); 
    border: 2px solid #fff; 
    border-radius: 12px; 
    text-decoration: none; 
    text-align: center; 
    cursor: pointer; 
    position: relative; 
    overflow: hidden; 
    transition: all 0.4s ease; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    z-index: 1;
    margin-top: auto; 
}

.btn-elegir::before { 
    content: ""; 
    position: absolute; 
    top: -2px; left: -2px; right: -2px; bottom: -2px; 
    background: linear-gradient(270deg, #a020f0, #ff007f, #00c6ff, #a020f0); 
    background-size: 600% 600%; 
    border-radius: 12px; 
    z-index: -1; 
    opacity: 0; 
    filter: blur(10px); 
    transition: opacity 0.5s ease; 
}

.btn-elegir:hover { 
    transform: scale(1.05) translateY(-4px); 
    border-color: transparent; 
    box-shadow: 0 10px 35px rgba(160,32,240,0.7); 
}

.btn-elegir:hover::before { 
    opacity: 1; 
    animation: glowMove 3s linear infinite; 
}

@keyframes glowMove { 
    0% { background-position: 0% 50%; } 
    50% { background-position: 100% 50%; } 
    100% { background-position: 0% 50%; } 
}

/* =========================================
   SECCIÓN CREAR PAQUETE
   ========================================= */
.crear-paquete-section {
    max-width: 1300px;
    margin: 140px auto;
    padding: 60px 50px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a001a 50%, #0f0f0f 100%);
    background-size: 300% 300%;
    animation: discoBg 20s ease infinite;
    box-shadow: 0 0 40px rgba(160,32,240,0.5), 0 0 80px rgba(255,0,162,0.3), inset 0 0 60px rgba(160,32,240,0.15);
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes discoBg { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.crear-paquete-section::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(160,32,240,0.25) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255,0,162,0.25) 0%, transparent 40%),
                radial-gradient(circle at 20% 70%, rgba(0,198,255,0.15) 0%, transparent 40%);
    animation: rotateLights 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes rotateLights { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Título */
.crear-paquete-header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.crear-paquete-header h2 {
    font-size: 3.5rem !important;
    background: linear-gradient(90deg, #a020f0, #ff008c, #00d0ff, #ff008c, #a020f0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowFlow 6s ease infinite;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(160,32,240,0.6);
}
@keyframes rainbowFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* Grid Contenido */
.crear-paquete-grid {

    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.columna-texto {
    flex: 2;
    text-align: left;
}

.columna-texto > p {
    font-size: 1.6rem;
    color: #eee;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.columna-boton {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lista */
.complementos-personalizados {
    columns: 2;
    column-gap: 50px;
    margin-top: 25px;
    list-style: none;
}
.complementos-personalizados li {
    color: #fff;
    font-size: 1.3rem;
    margin: 16px 0;
    padding-left: 42px;
    position: relative;
    break-inside: avoid;
}
.complementos-personalizados li::before {
    content: "◆";
    color: #a020f0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    text-shadow: 0 0 8px #a020f0, 0 0 16px #a020f0, 0 0 30px #a020f0;
    line-height: 1;
}

.nota-precio {
    font-size: 1.1rem !important;
    color: #aaa;
    font-style: italic;
    margin-top: 20px;
}

/* Botón Crear */
.btn-crear-paquete {
    display: inline-block;
    padding: 25px 40px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background: linear-gradient(45deg, #a020f0, #ff008c);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(160,32,240,0.4), 0 0 30px rgba(255,0,140,0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

.btn-crear-paquete::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.btn-crear-paquete:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(160,32,240,0.6), 0 0 50px rgba(255,0,140,0.7);
}
.btn-crear-paquete:hover::before {
    left: 100%;
    transition: left 0.7s ease;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE MÓVIL Y TABLET)
   ========================================= */
@media (max-width: 992px) {
    .crear-paquete-grid {
        flex-direction: column;
        text-align: center;
    }
    .columna-texto {
        text-align: center;
        width: 100%;
    }
    .complementos-personalizados {
        display: inline-block;
        text-align: left;
        columns: 1; /* Una columna para que no se apriete */
    }
    .btn-crear-paquete { margin-top: 30px; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; flex-direction: column; text-align: center; }
    .breadcrumb { margin: 10px 0; }
    
    .paquetes-xv, .paquetes-extra { flex-direction: column; align-items: center; }
    .paquete, .paquete-extra { width: 100%; max-width: 400px; }
    
    h1 { font-size: 2.3rem; }
    .precio { font-size: 2.4rem !important; }
    
    .crear-paquete-header h2 { font-size: 2.5rem !important; }
}

/* =========================================
   AJUSTE DE SCROLL (ANCLAS) - VITAL PARA LA NAVEGACIÓN
   ========================================= */
html { scroll-behavior: smooth; }

/* El margen superior compensa la altura del header pegajoso (Sticky) */
#xv, #boda, #sexto {
    scroll-margin-top: 140px; 
}