/* =============================================
   SONOTECA: CREAMUNDOS, CREASONIDOS
   CSS Mejorado — Diseño Visual Completo
   ============================================= */

/* ROOT VARIABLES */
:root {
    --bg-main: #FFFDF5;
    --text-dark: #1E1B2E;
    --accent-pink: #FF3B7C;
    --accent-blue: #0050FF;
    --accent-yellow: #FFD500;
    --accent-mint: #00D49A;
    --accent-orange: #FF7A00;
    --accent-pink-hover: #ff1c66;
    --accent-blue-hover: #003cc2;
    
    --font-heading: 'Nunito', 'Montserrat Alternates', sans-serif;
    --font-body: 'Lato', 'Open Sans', sans-serif;

    --diy-border: 4px solid var(--text-dark);
    --diy-radius-1: 255px 15px 225px 15px/15px 225px 15px 255px;
    --diy-radius-2: 15px 225px 15px 255px/255px 15px 225px 15px;
    --diy-radius-3: 40px 10px 50px 10px / 10px 50px 10px 40px;
    
    --shadow-paper: 0 10px 20px -5px rgba(0,0,0,0.08), 0 3px 6px -3px rgba(0,0,0,0.05);
    --shadow-solid: 6px 6px 0px var(--text-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =============================================
   FONDO PRINCIPAL — PATRÓN DE ONDAS SONORAS
   ============================================= */
body {
    background-color: var(--bg-main);
    /* Patrón SVG de ondas sonoras en colores de marca, muy sutil */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M0 60 C15 45 30 75 45 60 C60 45 75 75 90 60 C105 45 115 70 120 60' stroke='%23FF3B7C' stroke-width='1.5' fill='none' opacity='0.12'/%3E%3Cpath d='M0 80 C15 65 30 95 45 80 C60 65 75 95 90 80 C105 65 115 90 120 80' stroke='%230050FF' stroke-width='1' fill='none' opacity='0.08'/%3E%3Cpath d='M0 40 C15 25 30 55 45 40 C60 25 75 55 90 40 C105 25 115 50 120 40' stroke='%23FFD500' stroke-width='1' fill='none' opacity='0.10'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%2300D49A' opacity='0.15'/%3E%3Ccircle cx='70' cy='15' r='1.5' fill='%23FF3B7C' opacity='0.15'/%3E%3Ccircle cx='110' cy='100' r='2' fill='%230050FF' opacity='0.12'/%3E%3Ccircle cx='35' cy='105' r='1.5' fill='%23FFD500' opacity='0.15'/%3E%3C/svg%3E");
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

/* UTILITY CLASSES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.center { text-align: center; }
.c-pink { color: var(--accent-pink); }
.c-blue { color: var(--accent-blue); }
.c-yellow-text { color: #c49000; }
.c-mint-text { color: #007a5a; }
.c-dark { color: var(--text-dark); }
.bg-white { background-color: #ffffff; }
.bg-yellow { background-color: var(--accent-yellow); }
.bg-mint { background-color: var(--accent-mint); }
.bg-pink { background-color: var(--accent-pink); color: white;}

/* GRID LAYOUTS */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   TARJETAS CON IDENTIDAD DE COLOR
   ============================================= */
.diy-card {
    padding: 2.5rem;
    border: var(--diy-border);
    border-radius: var(--diy-radius-1);
    background-color: #fff;
    box-shadow: var(--shadow-paper);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.diy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-solid);
}
.card-rotate-left { transform: rotate(-1deg); border-radius: var(--diy-radius-2); }
.card-rotate-right { transform: rotate(1deg); border-radius: var(--diy-radius-1); }

/* Colores de tarjetas que faltaban */
.card-yellow {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFF8C0 100%);
    border-color: #c49000;
}
.card-yellow:hover {
    box-shadow: 6px 6px 0px #c49000;
}
.card-mint {
    background: linear-gradient(135deg, #E0FFF5 0%, #C8F5E8 100%);
    border-color: #007a5a;
}
.card-mint:hover {
    box-shadow: 6px 6px 0px #007a5a;
}

/* TAPES */
.tape {
    position: absolute;
    width: 60px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 10;
}
.tape-1 { top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
.tape-2 { top: 20px; right: -20px; transform: rotate(45deg); width: 80px; }
.tape-3 { top: -5px; left: -10px; transform: rotate(-10deg); width: 40px; }
.tape-4 { top: -10px; right: -10px; transform: rotate(15deg); width: 45px; background-color: #fffac2; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 253, 245, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 3px solid var(--text-dark);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    /* El logo tiene fondo negro, lo hacemos redondo con sombra */
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--accent-orange), 0 4px 12px rgba(255,122,0,0.3);
}
.nav-logo-img:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 0 4px var(--accent-pink), 0 6px 20px rgba(255,59,124,0.4);
}
.nav-links { display: none; }
.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    display: block;
}
@media (min-width: 992px) {
    .mobile-menu-btn { display: none; }
    .nav-links {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    .nav-link {
        font-weight: 700;
        font-family: var(--font-heading);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 5px;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--accent-pink);
        transition: width 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 10px;
    }
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }
    
    .dropdown { position: relative; display: inline-block; }
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        min-width: 200px;
        border: 3px solid var(--text-dark);
        border-radius: var(--diy-radius-3);
        box-shadow: var(--shadow-solid);
        padding: 1rem 0;
        z-index: 1000;
    }
    .dropdown:hover .dropdown-content { display: block; animation: popIn 0.3s ease; }
    .dropdown-content a {
        display: block;
        padding: 0.5rem 1.5rem;
        font-weight: 700;
        transition: background 0.2s;
    }
    .dropdown-content a:hover { background-color: rgba(255, 59, 124, 0.1); color: var(--accent-pink); }
}

@keyframes popIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =============================================
   BOTONES
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: var(--diy-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 4px 4px 0px var(--text-dark);
    letter-spacing: 0.5px;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0px var(--text-dark); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0px var(--text-dark); }
.btn-primary { background-color: var(--accent-blue); color: white; }
.btn-secondary { background-color: white; color: var(--text-dark); }
.btn-pink { background-color: var(--accent-pink); color: white; }
.btn-yellow { background-color: var(--accent-yellow); color: var(--text-dark); }
.btn-mint { background-color: var(--accent-mint); color: var(--text-dark); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.9rem; border-width: 2px; box-shadow: 3px 3px 0px var(--text-dark); }
.btn-sm:hover { box-shadow: 4px 4px 0px var(--text-dark); }

/* =============================================
   NOTAS MUSICALES FLOTANTES — MÁS VISIBLES
   ============================================= */
.music-notes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.note {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: floatUp 18s linear infinite;
    color: var(--accent-pink);
}
.note-1 { left: 5%; bottom: -60px; animation-duration: 20s; animation-delay: 0s; color: var(--accent-blue); width: 35px; }
.note-2 { left: 20%; bottom: -60px; animation-duration: 28s; animation-delay: 6s; color: var(--accent-yellow); width: 28px; }
.note-3 { left: 45%; bottom: -60px; animation-duration: 22s; animation-delay: 3s; color: var(--accent-mint); width: 55px; }
.note-4 { right: 20%; bottom: -60px; animation-duration: 25s; animation-delay: 9s; color: var(--accent-pink); width: 38px; }
.note-5 { right: 5%; bottom: -60px; animation-duration: 19s; animation-delay: 1.5s; color: var(--accent-orange); width: 45px; }
.note-6 { left: 70%; bottom: -60px; animation-duration: 23s; animation-delay: 12s; color: var(--accent-blue); width: 30px; }
.note-7 { left: 35%; bottom: -60px; animation-duration: 30s; animation-delay: 15s; color: var(--accent-pink); width: 22px; }

@keyframes floatUp {
    0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
    8%   { opacity: 0.28; }
    50%  { transform: translateY(-50vh) rotate(200deg) scale(1.15) translateX(30px); opacity: 0.22; }
    90%  { opacity: 0.18; }
    100% { transform: translateY(-105vh) rotate(400deg) scale(0.9) translateX(-20px); opacity: 0; }
}

/* =============================================
   HERO SECTION — GRADIENTE CÁLIDO
   ============================================= */
.hero {
    position: relative;
    padding: 6rem 20px 9rem;
    max-width: 100%;
    overflow: hidden;
    /* Fondo cálido inspirado en el logo naranja/dorado */
    background: 
        radial-gradient(ellipse 70% 80% at 65% 40%, rgba(255, 200, 80, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 60%, rgba(255, 59, 124, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(0, 80, 255, 0.07) 0%, transparent 50%),
        linear-gradient(170deg, #FFF8E8 0%, #FFFDF5 40%, #F0F8FF 100%);
}

/* Detalles decorativos en el hero */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 180, 50, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 124, 0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}
@media (min-width: 992px) {
    .hero-content { flex-direction: row; align-items: center; justify-content: space-between; }
    .hero-text { flex: 1; padding-right: 2rem; }
    .hero-visual { flex: 1; display: flex; justify-content: center; }
}
/* =============================================
   MASCOTA ANIMADA — SISTEMA COMPLETO
   ============================================= */

/* Contenedor escena — posiciona todos los elementos */
.mascot-scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 460px;
}

/* Marco removido — PNG limpio sin borde, más grande */
.image-wrapper {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-width: 480px;
    width: 100%;
    animation: mascot-float 3.2s ease-in-out infinite;
    transform-origin: center bottom;
}
@keyframes mascot-float {
    0%   { transform: rotate(2deg)   translateY(0px);  }
    25%  { transform: rotate(3.5deg) translateY(-14px); }
    50%  { transform: rotate(1.5deg) translateY(-6px);  }
    75%  { transform: rotate(3deg)   translateY(-18px); }
    100% { transform: rotate(2deg)   translateY(0px);  }
}

.mascot-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    /* Leve pulso de brillo — simula "respiración" */
    animation: mascot-glow 3.2s ease-in-out infinite;
}
@keyframes mascot-glow {
    0%, 100% { filter: brightness(1)    drop-shadow(0 0  0px rgba(255,122,0,0)); }
    40%       { filter: brightness(1.04) drop-shadow(0 0 12px rgba(255,180,50,0.35)); }
    70%       { filter: brightness(1.02) drop-shadow(0 0  8px rgba(255,122,0,0.25)); }
}

/* Halo giratorio detrás del marco */
.mascot-halo {
    position: absolute;
    border-radius: 50%;
    border: 3px dashed rgba(255, 122, 0, 0.22);
    pointer-events: none;
    animation: halo-spin 10s linear infinite;
}
.mascot-halo.h1 { width: 110%; height: 110%; }
.mascot-halo.h2 { width: 122%; height: 122%; border-color: rgba(0, 80, 255, 0.12); border-width: 2px; animation-direction: reverse; animation-duration: 15s; }
@keyframes halo-spin { to { transform: rotate(360deg); } }

/* Sombra pulsante en el suelo */
.mascot-shadow {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,0,0,0.18) 0%, transparent 70%);
    animation: shadow-pulse 3.2s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shadow-pulse {
    0%, 100% { transform: translateX(-50%) scaleX(1);   opacity: 0.7; }
    25%       { transform: translateX(-50%) scaleX(0.82); opacity: 0.4; }
    75%       { transform: translateX(-50%) scaleX(0.75); opacity: 0.3; }
}

/* Badge "¡ESCÚCHAME!" que sube y baja */
.mascot-badge {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-mint);
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 3px 3px 0 var(--text-dark);
    animation: badge-bounce 3.2s ease-in-out infinite;
    z-index: 15;
    pointer-events: none;
}
@keyframes badge-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0);    }
    35%       { transform: translateX(-50%) translateY(-12px); }
    65%       { transform: translateX(-50%) translateY(-16px); }
}

/* ── NOTAS MUSICALES que brotan de la mascota ── */
.mascot-note {
    position: absolute;
    font-size: 1.6rem;
    font-weight: 900;
    pointer-events: none;
    z-index: 20;
    /* Punto de origen: centro del marco */
    top: 50%;
    left: 50%;
    opacity: 0;
    animation: note-fly var(--dur, 3s) ease-out infinite;
    animation-delay: var(--del, 0s);
    color: var(--col, #FF3B7C);
    line-height: 1;
}
@keyframes note-fly {
    0%   { opacity: 0; transform: translate(-50%, -50%) translate(0, 0) scale(0.3) rotate(0deg); }
    12%  { opacity: 1; transform: translate(-50%, -50%) translate(calc(var(--nx)*0.25), calc(var(--ny)*0.25)) scale(1.15) rotate(10deg); }
    75%  { opacity: 0.85; transform: translate(-50%, -50%) translate(calc(var(--nx)*1.4), var(--ny)) scale(0.9) rotate(25deg); }
    100% { opacity: 0; transform: translate(-50%, -50%) translate(calc(var(--nx)*2), calc(var(--ny)*1.5)) scale(0.5) rotate(40deg); }
}

/* ── ESTRELLAS / CHISPAS titilantes ── */
.mascot-star {
    position: absolute;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    animation: star-twinkle var(--sd, 1.8s) ease-in-out infinite;
    animation-delay: var(--sde, 0s);
}
.mascot-star svg { width: 100%; height: 100%; display: block; }
@keyframes star-twinkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg);   }
    40%       { opacity: 1; transform: scale(1) rotate(20deg);  }
    60%       { opacity: 1; transform: scale(1.1) rotate(35deg);}
}

/* ── BARRAS DE SONIDO en la base ── */
.mascot-soundbar {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
    pointer-events: none;
}
.mascot-bar {
    width: 6px;
    border-radius: 4px 4px 2px 2px;
    background: linear-gradient(to top, var(--accent-pink), var(--accent-yellow));
    animation: bar-dance var(--bd, 0.55s) ease-in-out infinite alternate;
    animation-delay: var(--bde, 0s);
}
@keyframes bar-dance {
    0%   { height: 4px;  opacity: 0.6; }
    100% { height: var(--bh, 22px); opacity: 1; }
}
.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, var(--accent-mint) 0%, #00b882 100%);
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    box-shadow: 3px 3px 0 var(--text-dark);
    text-transform: uppercase;
}
.hero .title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    -webkit-text-stroke: 1px var(--text-dark);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.08);
    line-height: 1.15;
}
.hero .subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #4a4060;
    max-width: 580px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   DIVISORES SVG ENTRE SECCIONES
   ============================================= */
.divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}
.divider svg {
    display: block;
    width: 100%;
}

/* Divisor ola (Hero → Sonoteca) */
.div-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.div-wave::after {
    content: '';
    display: block;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 L1440,60 L0,60 Z' fill='%23FFF8E1'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* =============================================
   SECTION PADDINGS & TITLES
   ============================================= */
section { padding: 5rem 0; position: relative; z-index: 10; }
.section-header { margin-bottom: 3rem; }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--accent-pink);
    border-radius: 10px;
}
.center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 0.8rem;
}
.subsection-title {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    text-align: center;
}

/* =============================================
   SONOTECA SECTION — FONDO CÁLIDO CREMA
   ============================================= */
.sonoteca-section {
    background: 
        linear-gradient(180deg, #FFF8E1 0%, #FFFEF8 100%);
    border-top: 3px solid var(--text-dark);
    border-bottom: 3px solid var(--text-dark);
    position: relative;
    overflow: hidden;
}
.sonoteca-section::before {
    content: '🎵';
    position: absolute;
    font-size: 200px;
    opacity: 0.04;
    top: -30px;
    right: -20px;
    pointer-events: none;
    line-height: 1;
}

.card-icon { font-size: 3rem; margin-bottom: 1rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.team-card { text-align: center; }
.team-avatar-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    position: relative;
}
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--text-dark);
    background-color: var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: bold;
    box-shadow: 4px 4px 0 var(--text-dark);
}

/* =============================================
   FASES SECTION — FONDO OSCURO PROFUNDO
   Hace que los números de colores brillen
   ============================================= */
.fases-section {
    background: 
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 59, 124, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 80, 255, 0.10) 0%, transparent 50%),
        linear-gradient(160deg, #12082A 0%, #1C1040 50%, #0D1B3E 100%);
    border-top: 3px solid var(--text-dark);
    border-bottom: 3px solid var(--text-dark);
    position: relative;
    overflow: hidden;
}
/* Patrón de puntos sutil en el fondo oscuro */
.fases-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
/* Ajustar textos para el fondo oscuro */
.fases-section .section-title { color: #ffffff; }
.fases-section .section-title::after { background: var(--accent-yellow); }
.fases-section .section-subtitle { color: rgba(255,255,255,0.7); }
.fases-section .diy-container { background: rgba(255,255,255,0.96); }

.fases-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.fase-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 768px) {
    .fase-card { flex-direction: row; }
    .fase-card.reverse { flex-direction: row-reverse; }
}
.fase-number {
    font-size: 9rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-pink);
    -webkit-text-stroke: 3px rgba(255,255,255,0.4);
    text-shadow: 
        4px 4px 0px rgba(0,0,0,0.4),
        0 0 40px rgba(255, 59, 124, 0.5);
    line-height: 1;
    min-width: 130px;
    text-align: center;
}
.fase-number.c-yellow-text {
    color: var(--accent-yellow);
    text-shadow: 
        4px 4px 0px rgba(0,0,0,0.4),
        0 0 40px rgba(255, 213, 0, 0.5);
}
.fase-number.c-mint-text {
    color: var(--accent-mint);
    text-shadow: 
        4px 4px 0px rgba(0,0,0,0.4),
        0 0 40px rgba(0, 212, 154, 0.5);
}

.diy-container {
    padding: 3rem;
    border: var(--diy-border);
    box-shadow: var(--shadow-paper);
    flex: 1;
}
.shape-1 { border-radius: 200px 15px 225px 15px/15px 225px 15px 255px; }
.shape-2 { border-radius: 15px 225px 15px 255px/255px 15px 225px 15px; }
.shape-3 { border-radius: 255px 50px 225px 50px/50px 225px 50px 255px; }
.fase-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.fase-content p { margin-bottom: 2rem; font-size: 1.1rem; color: #444; }

/* =============================================
   CURADURÍA SECTION — FONDO AMARILLO VIBRANTE
   ============================================= */
.curaduria-section {
    background: 
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 213, 0, 0.3) 0%, transparent 70%),
        linear-gradient(160deg, #FFFDE7 0%, #FFF9C4 50%, #FFFEF5 100%);
    padding: 5rem 0;
}
.highlight-box {
    padding: 4rem 2.5rem;
    border: var(--diy-border);
    border-radius: var(--diy-radius-3);
    position: relative;
    box-shadow: var(--shadow-solid);
    background: linear-gradient(135deg, #FFD500 0%, #FFDF33 60%, #FFE566 100%);
}
/* Patrón de estrellas en el highlight-box */
.highlight-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--diy-radius-3);
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.highlight-box .section-title { position: relative; z-index: 2; }
.highlight-box .section-title::after { background: var(--text-dark); }
.highlight-box .section-subtitle { position: relative; z-index: 2; }

.gallery-preview {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.gallery-item {
    background: white;
    padding: 1.5rem;
    border: 3px solid var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    width: 140px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 4px 4px 0 var(--text-dark);
}
.gallery-item:hover { transform: scale(1.08) rotate(5deg); }
.gallery-item i { font-size: 3rem; }
.clip-paper-1 { clip-path: polygon(0% 5%, 100% 0%, 95% 100%, 5% 95%); }
.clip-paper-2 { clip-path: polygon(5% 0%, 95% 5%, 100% 95%, 0% 100%); }

/* =============================================
   ENTREVISTAS SECTION — FONDO FRESCO
   ============================================= */
.entrevistas-section {
    background: 
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0, 212, 154, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255, 59, 124, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F4FFF9 0%, #EEF6FF 100%);
    border-top: 3px solid rgba(0,0,0,0.06);
}

.tag {
    display: inline-block;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--text-dark);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.entrevistas-section .diy-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.play-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: gap 0.2s;
}
.play-link:hover { gap: 0.8rem; }
.play-link i { font-size: 2rem; transition: transform 0.2s; }
.play-link:hover i { transform: scale(1.2); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: linear-gradient(160deg, #12082A 0%, #1E1B2E 60%, #0D1B3E 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 0;
    border-top: 4px solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
}
/* Patrón de fondo en el footer */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: var(--accent-pink); }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo { 
    font-size: 1.3rem; 
    color: var(--accent-yellow); 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}
.footer-links { position: relative; z-index: 2; }
.footer-links h4 { color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1rem; }
.footer-social { position: relative; z-index: 2; }
.footer-social h4 { color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.2s;
}
.social-icons a:hover { 
    background-color: var(--accent-pink); 
    border-color: var(--accent-pink); 
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,59,124,0.4);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
}

/* =============================================
   DECORATIVE TAPE (tape clases con z-index
   ============================================= */
.decorative-tape {
    position: absolute;
    width: 60px;
    height: 22px;
    background-color: rgba(255, 250, 180, 0.80);
    backdrop-filter: blur(2px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 10;
}

/* =============================================
   ANIMACIONES DE ENTRADA
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-text, .hero-visual {
    animation: fadeInUp 0.8s ease both;
}
.hero-visual { animation-delay: 0.2s; }



@media (max-width: 991px) {
    .nav-links {
        background-color: rgba(255, 253, 245, 0.97) !important;
        border-bottom: 3px solid var(--text-dark);
    }
    .nav-link { padding: 0.8rem 1.5rem; }
}