/* --- Paleta de Colores ExtraÃ­da del Logo --- */
:root {
    --rosa-lele: #D31D5D;    /* Fucsia del logo */
    --azul-lele: #1D89E3;    /* Azul del logo */
    --amarillo-lele: #FBD000; /* Amarillo del logo */
    --verde-lele: #45AF49;   /* Verde del logo */
    --morado-lele: #7A338F;  /* Morado del logo */
    --crema: #FCF9F2;
    --texto: #2D3E50;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--crema);
    color: var(--texto);
    overflow-x: hidden;
}

/* --- NavegaciÃ³n --- */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 50px; }
.logo-text { font-family: 'Pacifico', cursive; font-size: 1.3rem; color: var(--rosa-lele); }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li a { text-decoration: none; color: var(--texto); margin-left: 25px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links li a:hover { color: var(--azul-lele); }
.btn-nav { background: var(--rosa-lele); color: white !important; padding: 8px 20px; border-radius: 25px; box-shadow: 0 4px 10px rgba(211, 29, 93, 0.2); }
.btn-nav-2 { background: var(--azul-lele); color: white !important; padding: 8px 20px; border-radius: 25px; box-shadow: 0 4px 10px rgba(211, 29, 93, 0.2); }

/* --- Hero con Listones Ondeantes --- */
.hero-vibrant {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f8fb 100%);
    position: relative;
    text-align: center;
}

.hero-card {
    background: rgba(255,255,255,0.85);
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    z-index: 10;
    max-width: 700px;
    border-bottom: 10px solid var(--amarillo-lele);
}

.main-logo-hero { max-width: 200px; margin-bottom: 25px; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1)); }
h1 { font-size: 2.8rem; color: var(--texto); margin-bottom: 10px; font-weight: 800; line-height: 1.1; }
.subtitle { font-family: 'Pacifico'; font-size: 2rem; color: var(--rosa-lele); margin-bottom: 15px; }
.tagline { font-size: 1.1rem; color: #666; margin-bottom: 30px; }

/* --- AnimaciÃ³n de Listones --- */
.lele-ribbons-animated { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; pointer-events: none; }
.ribbon {
    position: absolute; width: 14px; height: 160vh; top: -30vh; opacity: 0.45;
    animation: sway 7s ease-in-out infinite; transform-origin: top center;
}
.pink { background: var(--rosa-lele); left: 8%; animation-delay: 0s; }
.yellow { background: var(--amarillo-lele); left: 35%; animation-delay: -2s; }
.blue { background: var(--azul-lele); left: 65%; animation-delay: -4s; }
.green { background: var(--verde-lele); left: 88%; animation-delay: -5.5s; }
.purple { background: var(--morado-lele); left: 88%; animation-delay: -5.5s; }

@keyframes sway {
    0%, 100% { transform: rotate(5deg) skewX(2deg); }
    50% { transform: rotate(-5deg) skewX(-2deg); }
}

/* --- Secciones y Botones --- */
.section-vibrant { padding: 100px 10%; position: relative; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; font-weight: 800; }
.section-title::after {
    content: ''; display: block; width: 100px; height: 6px; 
    background: linear-gradient(to right, var(--rosa-lele), var(--azul-lele), var(--amarillo-lele)); 
    margin: 15px auto; border-radius: 10px;
}

.btn-mexicano {
    display: inline-block; background: var(--azul-lele); color: white; padding: 18px 45px;
    text-decoration: none; border-radius: 50px; font-weight: 800; border: none;
    box-shadow: 4px 4px 0 #000; transition: 0.3s; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
}
.btn-mexicano:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 #000; background: var(--rosa-lele); }

.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.card { background: white; padding: 40px; border-radius: 30px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.icon { width: 60px; height: 60px; line-height: 60px; border-radius: 50%; color: white; margin: 0 auto 20px; font-size: 1.8rem; }

/* --- Cronograma --- */
.timeline { border-left: 5px solid var(--amarillo-lele); padding-left: 40px; max-width: 700px; margin: 0 auto; }
.event { margin-bottom: 40px; position: relative; }
.event::before { content: ''; position: absolute; left: -51px; top: 8px; width: 18px; height: 18px; background: white; border: 5px solid var(--morado-lele); border-radius: 50%; }
.time { font-weight: 800; font-size: 1.2rem; margin-bottom: 5px; }

/* --- FAQ y Registro --- */
.faq-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1000px; margin: 0 auto; }
.faq-item { background: white; padding: 30px; border-radius: 20px; border-top: 6px solid var(--azul-lele); box-shadow: 0 10px 25px rgba(0,0,0,0.03); }
.faq-item:nth-child(2) { border-top-color: var(--rosa-lele); }
.faq-item:nth-child(3) { border-top-color: var(--amarillo-lele); }
.faq-item:nth-child(4) { border-top-color: var(--verde-lele); }
.faq-item:nth-child(5) { border-top-color: var(--morado-lele); }
.faq-item:nth-child(6) { border-top-color: var(--azul-lele); }
.faq-item:nth-child(7) { border-top-color: var(--rosa-lele); }
.faq-item:nth-child(8) { border-top-color: var(--amarillo-lele); }

.cta { background: linear-gradient(135deg, var(--morado-lele), var(--rosa-lele)); color: white; padding: 100px 10%; text-align: center; }
.registro-form { margin-top: 40px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
input { padding: 18px 30px; border-radius: 40px; border: none; width: 320px; font-size: 1rem; outline: none; }

/* --- Footer --- */
footer { padding: 60px 10%; text-align: center; background: white; }
.footer-logo-img { height: 80px; margin-bottom: 30px; opacity: 0.8; }
.social-links { margin-bottom: 25px; display: flex; justify-content: center; gap: 20px; }
.social-icon { width: 50px; height: 50px; background: #f8f8f8; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--texto); text-decoration: none; transition: 0.3s; font-size: 1.2rem; }
.social-icon:hover { background: var(--amarillo-lele); color: white; transform: scale(1.1); }

.facebook { background-color: var(--azul-lele); }
.instagram { background-color: var(--morado-lele); }
.whatsapp { background-color: var(--verde-lele); }
.youtube { background-color: var(--rosa-lele); } /* Color est¨¢ndar YouTube */

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.countdown-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.countdown-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--texto);
}

.countdown-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin: 0;
    color: #888;
    font-weight: 600;
}

input[type="tel"]:invalid:not(:placeholder-shown) {
    border-color: var(--rosa-lele);
    background-color: #fff5f8;
}

/* --- Responsive --- */
@media (max-width: 850px) {
    .nav-links { display: none; }
    h1 { font-size: 2.2rem; }
    .faq-container { grid-template-columns: 1fr; }
    .hero-card { padding: 30px; margin: 20px; }
}

@media (max-width: 480px) {
    .countdown-container { gap: 8px; }
    .countdown-item { min-width: 65px; padding: 10px; }
    .countdown-item span { font-size: 1.3rem; }
}
