/* =========================================
   1. VARIABLES Y FUENTES GLOBALES
   ========================================= */
:root {
    --black: #11120D;
    --olive: #565449;
    --bone: #D8CFBC;
    --white: #FFFBF4;
    --tape: rgba(210, 180, 140, 0.8);
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
    --phonk: 'PunkCustom', sans-serif;
    --shadow: rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: 'PunkCustom';
    src: url('../assets/fonts/Punk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* =========================================
   2. RESET Y ESTRUCTURA BASE
   ========================================= */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: var(--bone);
    background-image: url('/assets/fondo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--black);
    font-family: var(--sans);
}

.paper-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    pointer-events: none;
    opacity: 0.4;
    z-index: 9999;
}

.container {
    box-sizing: border-box;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bone) 100%);
    max-width: 1450px;
    width: 92%;
    margin: 60px auto;
    padding: 80px 40px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    position: relative;
    overflow: visible;
}

/* =========================================
   3. CONTROL DE VISTAS (PC vs MÓVIL)
   ========================================= */
.header-pc { display: flex; }
.header-mobile { display: none; }
.numbered-nav { display: none; }

/* =========================================
   4. MENÚ DESPLEGABLE (TOP NAV)
   ========================================= */
.main-nav {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 200;
}

.dropdown {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.dropbtn {
    background: transparent;
    color: var(--black);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    border: 1px solid var(--black);
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow {
    font-size: 0.6rem;
    margin-left: 8px;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.15);
    border: 1px solid var(--bone);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--black);
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--bone);
}

.dropdown.open .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease forwards;
}

@media (hover: hover) and (pointer: fine) {
    .dropdown:hover .dropdown-content {
        display: block;
        animation: fadeInDown 0.3s ease forwards;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translate(-50%, -15px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* =========================================
   5. HEADER PC
   ========================================= */
.epk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.main-title {
    text-align: center;
}

.title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.title-wrapper h1 {
    margin: 0 !important;
}

.title-star {
    width: clamp(40px, 6vw, 80px);
    height: auto;
    filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.15));
}

.star-right {
    transform: scaleX(-1);
}

.main-title h1 {
    font-family: var(--phonk);
    font-size: clamp(5rem, 12vw, 8rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 4px;
    background: linear-gradient(to bottom, var(--black) 20%, var(--olive) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(3px 5px 2px rgba(0,0,0,0.15));
}

.brand-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 13px;
    color: var(--olive);
}

.dot-separator {
    width: 6px; height: 6px;
    background: var(--black);
    border-radius: 50%;
}

/* =========================================
   6. ENLACE DE INSTAGRAM EN HEADER
   ========================================= */
.insta-link, .insta-link-mobile {
    text-decoration: none;
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: var(--sans);
    text-transform: uppercase;
}

.insta-link:hover, .insta-link-mobile:hover {
    color: var(--black);
    transform: translateY(-12px);
}

.insta-link i, .insta-link-mobile i {
    font-size: 1.1rem;
}

/* =========================================
   7. TEXTOS Y FILOSOFÍA
   ========================================= */
.section-text {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.wavy-title {
    font-family: var(--serif);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.content-text {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.Filosofia, .Ideales, .Valores {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin: 0;
}

.Filosofia strong, .Ideales strong, .Valores strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.collage-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--olive);
    margin-bottom: 50px;
    text-align: center;
}

/* =========================================
   8. FRAMES DE FOTOS (PORTADA)
   ========================================= */
.photo-frame {
    flex: 0 0 28vw;
    max-width: 320px;
    height: 420px;
    position: relative;
    background: white;
    padding: 5px;
    filter: sepia(30%) contrast(1.1);
    box-shadow: 15px 15px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photo-frame img {
    width: 100%; height: 100%; object-fit: cover;
}

.photo-frame:hover {
    transform: scale(1.05); z-index: 10;
}

/* =========================================
   9. COLLAGE DE INFLUENCIAS
   ========================================= */
.organic-collage {
    position: relative;
    width: 100%;
    height: 1550px;
    max-width: 1350px;
    margin: 50px auto;
}

.organic-collage .item {
    position: absolute;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.organic-collage .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: auto;
    background: white !important;
    padding: 12px 12px 35px 12px !important;
    border-radius: 2px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    filter: none !important;
    transition: box-shadow 0.3s ease;
}

.organic-collage .item::before {
    content: '';
    position: absolute;
    background: var(--tape);
    z-index: 10;
    pointer-events: none;
    top: -12px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 100px; height: 28px;
}

.organic-collage .item-1::before { transform: translateX(-50%) rotate(3deg); }
.organic-collage .item-2::before { transform: translateX(-50%) rotate(-4deg); }
.organic-collage .item-5::before { transform: translateX(-50%) rotate(1deg); }
.organic-collage .item-6::before { transform: translateX(-50%) rotate(-3deg); }
.organic-collage .item-7::before { transform: translateX(-50%) rotate(4deg); }
.organic-collage .item-9::before { transform: translateX(-50%) rotate(2deg); }

.organic-collage .item:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 50 !important;
}

.organic-collage .item:hover img {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

.item-1 { width: 440px; height: 350px; top: 20px; left: 4%; transform: rotate(-3deg); }
.item-2 { width: 330px; height: 530px; top: 0px; left: 38%; transform: rotate(2deg); z-index: 3; }
.item-4 { width: 400px; height: 520px; top: 60px; left: 66%; transform: rotate(-1deg); }
.item-5 { width: 360px; height: 360px; top: 480px; left: 6%; transform: rotate(4deg); z-index: 4; }
.item-6 { width: 460px; height: 460px; top: 450px; left: 34%; transform: rotate(-2deg); }
.item-7 { width: 440px; height: 310px; top: 660px; left: 65%; transform: rotate(3deg); z-index: 3; }
.item-8 { width: 360px; height: 480px; top: 920px; left: 14%; transform: rotate(-4deg); z-index: 5; }
.item-9 { width: 480px; height: 340px; top: 950px; left: 52%; transform: rotate(1deg); }

/* =========================================
   10. STICKERS DECORATIVOS (SCRAPBOOK)
   ========================================= */
.sticker {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.sticker img {
    width: 100%;
    height: auto;
    filter: drop-shadow(3px 5px 6px rgba(0,0,0,0.25));
}

.s-1 { width: 140px; top: 0px; left: 2%; transform: rotate(-15deg); }
.s-2 { width: 90px; top: -30px; right: 22%; transform: rotate(25deg); }
.s-3 { width: 110px; top: 200px; left: 25%; transform: rotate(8deg); z-index: 10; }
.s-4 { width: 120px; top: 50px; right: 2%; transform: rotate(-12deg); }
.s-5 { width: 100px; top: 400px; left: 21%; transform: rotate(-5deg); }
.s-6 { width: 80px; top: 550px; right: 10%; transform: rotate(18deg); }
.s-7 { width: 130px; bottom: 180px; left: 81%; transform: rotate(-25deg); }
.s-8 { width: 110px; bottom: 158px; right: 21%; transform: rotate(10deg); }
.s-9 { width: 140px; bottom: -20px; left: -2%; transform: rotate(15deg); }
.s-10 { width: 150px; bottom: -40px; right: 0%; transform: rotate(-8deg); }
.s-11 { width: 95px; bottom: 50px; left: 15%; transform: rotate(22deg); }

/* =========================================
   11. SECCIÓN DE VIDEOS
   ========================================= */
.video-section {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 140%;
    background-image: url('../assets/videos/vid_fondo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.video-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 20px;
}

.v-btn {
    background: var(--black); color: var(--white);
    border: none; padding: 15px 30px; border-radius: 100px;
    font-weight: 700; cursor: pointer; transition: 0.3s;
    width: 100%; max-width: 300px;
}

.v-btn:hover {
    background: transparent; color: var(--black); border: 1px solid var(--black);
}

.video-wrapper {
    width: 100%; position: relative; overflow: hidden;
    cursor: pointer; transition: transform 0.3s ease;
    border-radius: 8px;
}

.video-wrapper:hover { transform: scale(1.03); }

.video-wrapper video {
    width: 100%; height: 100%; object-fit: cover;
    display: block; pointer-events: none;
}

.tv-frame, .camera-frame, .phone-frame {
    background: transparent;
    margin: 0 auto;
    overflow: visible;
    border-radius: 0;
}

.tv-frame, .camera-frame { max-width: 480px; }
.phone-frame { max-width: 250px; }

.tv-frame .video-overlay,
.camera-frame .video-overlay,
.phone-frame .video-overlay {
    position: relative;
    width: 100%; height: auto; display: block;
    pointer-events: none; z-index: 2;
}

.tv-frame video {
    position: absolute;
    width: 82%; height: 61.5%;
    top: 6.5%; left: 8.8%;
    z-index: 1; border-radius: 4px;
}

.camera-frame video {
    position: absolute;
    width: 38%; height: 51%;
    top: 33%; left: 4%;
    z-index: 1; border-radius: 3px;
    transform: rotate(-2deg);
}

.phone-frame video {
    position: absolute;
    width: 82%; height: 42%;
    top: 10.5%; left: 9%;
    z-index: 1; border-radius: 4px;
    object-fit: cover;
}

/* =========================================
   12. VENTANA MODAL
   ========================================= */
.modal {
    display: none; position: fixed; z-index: 1000;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
}

.modal-content {
    position: relative; top: 50%; transform: translateY(-50%);
    width: 90%; max-width: 1000px; margin: 0 auto;
}

.close-modal {
    position: absolute; top: -50px; right: 0;
    color: white; font-size: 40px; cursor: pointer;
}

.video-container {
    position: relative; padding-bottom: 56.25%; height: 0;
    overflow: hidden; background: black;
}

.video-container video {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; border: none; background: black;
}

/* =========================================
   13. GALERÍA FOTOTECA (SCRAPBOOK)
   ========================================= */
.scrapbook-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.scrap-item {
    position: relative;
    width: 280px;
    background: white;
    padding: 15px 15px 45px 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    cursor: pointer;
}

.scrap-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.scrap-item .tape {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 90px;
    height: 25px;
    background: var(--tape);
    z-index: 10;
    pointer-events: none;
}

.scrap-item:nth-child(3n+1) { transform: rotate(-4deg) translateY(10px); }
.scrap-item:nth-child(3n+1) .tape { transform: translateX(-50%) rotate(3deg); }

.scrap-item:nth-child(3n+2) { transform: rotate(5deg) translateY(-15px); }
.scrap-item:nth-child(3n+2) .tape { transform: translateX(-50%) rotate(-4deg); }

.scrap-item:nth-child(3n+3) { transform: rotate(-1deg) translateY(20px); }
.scrap-item:nth-child(3n+3) .tape { transform: translateX(-50%) rotate(2deg); }

.scrap-item:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 50;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* =========================================
   14. REPERTORIO (GRID 2 COLUMNAS)
   ========================================= */
.repertorio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.genero-columna {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.genero-titulo {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 15px 10px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
}

.cancion-item {
    padding: 15px 20px;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #333;
    transition: background-color 0.3s ease;
}

.cancion-item:last-child {
    border-bottom: none;
}

.cancion-item:hover {
    background-color: var(--bone);
}

/* =========================================
   15. FOOTER
   ========================================= */
.footer-links {
    border-top: 1px solid var(--bone);
    padding-top: 40px;
    text-align: center;
}

.line-decorator {
    width: 100px; height: 2px;
    background: var(--black);
    margin: 15px auto;
}

.footer-links nav a {
    text-decoration: none;
    color: var(--black);
    margin: 0 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links nav a i {
    margin-right: 6px;
    font-size: 0.95rem;
    vertical-align: middle;
}

/* =========================================
   16. BIOGRAFÍA (ESTILOS INLINE)
   ========================================= */
.bio-text {
    font-family: var(--sans);
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.bio-text p {
    margin-bottom: 25px;
}

.bio-text strong {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--black);
    display: block;
    margin-bottom: 15px;
}

/* =========================================
   18. OPCIONES DE REPERTORIO (BOTONES GRANDES)
   ========================================= */
.opciones-repertorio {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.opcion-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 4px;
    padding: 50px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    flex: 1;
    transition: all 0.3s ease;
    /* Usamos el color oliva para una sombra sólida estilo retro */
    box-shadow: 8px 8px 0px var(--olive);
}

.opcion-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--black);
    background: var(--bone);
}

.icono-card {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px auto;
}

.icono-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.opcion-card h3 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.opcion-card p {
    font-family: var(--sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* =========================================
   19. GALERÍA ESTILO EXPOSICIÓN (Muro)
   ========================================= */
.gallery-wall {
    width: 100%;
    /* Oculta lo que se sale por los lados */
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    gap: 30px; /* Separación entre las 3 filas */
    padding: 40px 0;
    margin: 0 auto 60px auto;
}

.gallery-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Efecto de sombra interior opcional para dar profundidad al "muro" */
    /* box-shadow: inset 20px 0 30px -20px var(--bone), inset -20px 0 30px -20px var(--bone); */
}

/* El "track" es el tren largo de imágenes que se moverá */
.gallery-track {
    display: inline-flex;
    gap: 30px; /* Separación entre fotos */
    width: max-content;
    /* Ajusta este porcentaje en el hover para pausar si lo deseas */
}

.gallery-track:hover {
    animation-play-state: paused;
}

/* Las velocidades (puedes ajustar los segundos a tu gusto) */
.track-slow {
    animation: scrollRight 50s linear infinite;
}

.track-medium {
    animation: scrollRight 40s linear infinite;
}

.track-fast {
    animation: scrollRight 30s linear infinite;
}

/* El diseño del marco (inspirado en tu foto: marco negro, paspartú blanco) */
.framed-photo {
    background-color: #fff; /* Paspartú / María Luisa */
    padding: 15px; 
    border: 12px solid #1a1a1a; /* Marco negro sólido */
    box-shadow: 10px 15px 25px rgba(0,0,0,0.3); /* Sombra pesada de galería */
    border-radius: 2px;
    height: 250px; /* Altura de la foto (ajustable) */
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framed-photo img {
    height: 100%;
    width: auto; /* Mantiene la proporción de la imagen original */
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.2); /* Efecto blanco y negro como tu referencia */
    transition: filter 0.3s ease;
}

/* Efecto al pasar el mouse por encima de una foto */
.framed-photo:hover {
    transform: scale(1.05);
    box-shadow: 15px 20px 30px rgba(0,0,0,0.4);
}

.framed-photo:hover img {
    filter: grayscale(0%) contrast(1); /* Devuelve el color original */
}

/* Animación: Mueve el bloque desde la mitad negativa (lado izquierdo invisible) hacia 0 */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* =========================================
   17. RESPONSIVE (MÓVIL - MÁX 850px)
   ========================================= */
@media (max-width: 850px) {

    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        position: relative;
    }

    .container {
        width: 100% !important;
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 15px !important;
        box-shadow: none;
        background: var(--white);
        border-radius: 0;
        box-sizing: border-box;
    }

    .header-pc { display: none; }

    .main-nav { margin-bottom: 20px; text-align: center; }
    .dropbtn {
        width: 90%; max-width: 250px; padding: 12px;
        font-size: 0.9rem; border-radius: 8px;
    }

    .header-mobile {
        display: flex; flex-direction: column; align-items: center;
        text-align: center; gap: 8px; margin-bottom: 20px;
        padding-bottom: 15px; border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .profile-avatar {
        width: 90px; height: 90px; border-radius: 50%;
        border: 2px solid var(--black); overflow: hidden;
    }
    .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .profile-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .title-wrapper {
        margin-top: 5px;
        gap: 10px;
    }

    .title-star {
        width: 45px;
    }

    .profile-info h1 {
        margin: 0 !important;
        font-family: var(--phonk);
        font-size: 4.5rem;
        text-align: center;
        letter-spacing: 2px;
        line-height: 1;
        background: linear-gradient(to bottom, var(--black) 20%, var(--olive) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(2px 3px 1px rgba(0,0,0,0.15));
    }

    .brand-sub-mobile {
        margin-top: 15px;
        width: 100%;
        letter-spacing: 7px;
        font-size: 0.75rem;
    }

    .insta-link-mobile {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .insta-link-mobile i {
        font-size: 1rem;
    }

    .wavy-title { font-size: 1.4rem; margin-bottom: 25px; }
    .content-text { gap: 30px !important; padding: 0 10px; }
    .Filosofia, .Ideales, .Valores {
        text-align: center !important;
        margin: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    .Filosofia strong, .Ideales strong, .Valores strong { font-size: 1.5rem !important; }

    .organic-collage {
        position: relative;
        width: 100% !important;
        height: 180vw;
        max-height: 900px;
        display: block;
        padding: 0;
        margin: 20px 0;
        overflow: hidden;
    }

    .organic-collage .item {
        position: absolute !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .organic-collage .item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        background: transparent !important;
        filter: drop-shadow(4px 6px 8px rgba(0,0,0,0.35)) !important;
        pointer-events: auto !important;
    }

    .item-1 { width: 45% !important; top: 2%; left: 2%; transform: rotate(-6deg) !important; z-index: 2 !important; }
    .item-2 { width: 38% !important; top: 5%; right: 4% !important; left: auto !important; transform: rotate(5deg) !important; z-index: 4 !important; }
    .item-4 { width: 48% !important; top: 22%; left: 10%; transform: rotate(-2deg) !important; z-index: 1 !important; }
    .item-5 { width: 40% !important; top: 45%; left: 5%; transform: rotate(7deg) !important; z-index: 5 !important; }
    .item-6 { width: 55% !important; top: 42%; right: -2% !important; left: auto !important; transform: rotate(-4deg) !important; z-index: 2 !important; }
    .item-7 { width: 45% !important; top: 68%; left: 8%; transform: rotate(4deg) !important; z-index: 6 !important; }
    .item-8 { width: 40% !important; top: 78%; right: 8% !important; left: auto !important; transform: rotate(-6deg) !important; z-index: 3 !important; }
    .item-9 { width: 45% !important; top: 1%; left: 45%; transform: rotate(3deg) !important; z-index: 4 !important; }

    .organic-collage .item::before { display: none !important; }

    .video-section { margin-top: 25px; margin-bottom: 25px; }
    .video-grid { grid-template-columns: 1fr !important; gap: 30px; padding: 0; }
    .v-btn { width: 100% !important; padding: 12px; font-size: 0.85rem; border-radius: 8px; }

    .tv-frame, .camera-frame { max-width: 100%; }
    .phone-frame {
        max-width: 200px !important;
        margin: 0 auto;
    }

    .footer-links nav { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
    .footer-links nav a { margin: 0; padding: 4px; font-size: 0.85rem; }

    .sticker img { opacity: 0.35; }

    .s-1 { width: 70px; top: 0px; left: 0px; }
    .s-4 { width: 60px; top: 200px; right: 0px; }
    .s-5 { width: 50px; top: 350px; left: -5px; }
    .s-8 { width: 55px; bottom: 150px; right: 0px; }
    .s-9 { width: 75px; bottom: 0px; left: -5px; }
    .s-10 { width: 80px; bottom: -20px; right: -5px; }

    .s-2, .s-3, .s-6, .s-7, .s-11 { display: none; }

    .scrapbook-gallery { gap: 20px; padding: 20px 5px; }
    .scrap-item { width: 45%; padding: 8px 8px 30px 8px; }
    .scrap-item img { height: 150px; }
    .scrap-item .tape { width: 60px; height: 18px; top: -8px; }

    .repertorio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .genero-titulo {
        font-size: 0.85rem;
        padding: 12px 5px;
    }

    .cancion-item {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* ESTILOS DE BOTONES EN MÓVIL */
    .opciones-repertorio {
        flex-direction: column;
        gap: 30px;
    }

    .opcion-card {
        padding: 30px 20px;
        box-shadow: 6px 6px 0px var(--olive);
    }
}

