* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

header {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Menú Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.banner {
    height: 100vh;
    background: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 4rem;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: fadeInDown 1s ease, shimmer 3s infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.banner p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s backwards;
    font-weight: 300;
    letter-spacing: 2px;
}

.btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s;
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s backwards;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contenedor principal de la sección */
.bio-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Grid para dividir en 2 columnas */
.bio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- ESTILO DE LA IMAGEN (Lado Izquierdo) --- */
.bio-visual {
    position: relative;
    padding: 1rem;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.image-frame img {
    width: 100%;
    border-radius: 10px;
    display: block;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.bio-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #d4af37;
    border-radius: 10px;
    transform: translate(-15px, -15px);
    z-index: 1;
    opacity: 0.6;
    transition: transform 0.4s ease;
}

.bio-container:hover .bio-visual::before {
    transform: translate(-5px, -5px);
}

/* --- ESTILO DEL TEXTO (Lado Derecho) --- */
.bio-content h2 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 3.5rem;
}

.bio-content h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-left: 3px solid #d4af37;
    padding-left: 1rem;
}

.bio-content p {
    color: #ccc;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.signature {
    font-family: serif;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
}

/* Grid base */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.member-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.member-image-wrapper {
    width: 100%;
    height: 100%;
}

.member-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    transition: transform 0.4s ease;
}

.member-card:hover .member-image-wrapper img{
    transform: scale(1.15);
    transform-origin: center top;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.member-card:hover .member-info {
    transform: translateY(0);
    background: linear-gradient(to top, #000 0%, rgba(212, 175, 55, 0.1) 100%);
}

.member-name {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,1);
    text-align: center;
}

.member-role {
    font-size: 1rem;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}

.music-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 6rem 2rem;
}

.spotify-embed {
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.videos-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

/* Sección principal Full Width */
.instagram-section {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.instagram-info {
    text-align: left;
    padding-right: 2rem;
}

.instagram-info h2 {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insta-handle {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: monospace;
}

.insta-description {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.btn-insta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.btn-insta:hover {
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.5);
    transform: translateY(-3px);
}

.insta-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
}

.stat-label {
    color: #d4af37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instagram-embed-wrapper {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    padding: 2rem;
    border-radius: 20px;
}

.instagram-media {
    min-width: 326px !important;
    max-width: 540px !important;
    width: 100% !important;
    border-radius: 15px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
}

.gallery-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 6rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Carrusel para móvil */
.gallery-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1rem;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.carousel-caption {
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 10px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #d4af37;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.social-media {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 3px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.4s;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 0.3;
}

.social-icon:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 4rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}

input, textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

textarea {
    resize: vertical;
    min-height: 180px;
}

footer {
    background: #000;
    text-align: center;
    padding: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

footer p {
    color: #d4af37;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

/* ===== MODAL AVISO DE PRIVACIDAD ===== */
.privacy-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    z-index: 12000;
    backdrop-filter: blur(5px);
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    width: min(900px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.privacy-modal-content h2 {
    margin: 0 0 1.5rem;
    color: #d4af37;
    font-size: 2.5rem;
    text-align: center;
}

.privacy-modal-content h3 {
    margin: 2rem 0 1rem;
    color: #d4af37;
    font-size: 1.4rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-text p,
.privacy-text li {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.privacy-text ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

.privacy-text a {
    color: #d4af37;
    text-decoration: underline;
    transition: all 0.3s;
}

.privacy-text a:hover {
    color: #f4d03f;
}

.privacy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    color: #d4af37;
    font-size: 28px;
    line-height: 41px;
    text-align: center;
    transition: all 0.3s;
    font-weight: 300;
}

.privacy-close:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #fff;
    transform: scale(1.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE PARA MÓVIL === */

@media (max-width: 768px) {
    /* --- HEADER Y NAVEGACIÓN --- */
    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0 1rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Mostrar hamburguesa en móvil */
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 2px solid rgba(212, 175, 55, 0.3);
        z-index: 999;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    nav a {
        display: block;
        font-size: 1.1rem;
        padding: 0.5rem 2rem;
    }

    nav a::after {
        display: none;
    }

    /* --- BANNER --- */
    .banner {
        height: 60vh;
        padding-bottom: 2rem;
        background-attachment: scroll;
    }

    .banner h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }

    .banner p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* --- SECCIONES GENERALES --- */
    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* --- BIOGRAFÍA --- */
    .bio-section {
        padding: 3rem 1rem;
    }

    .bio-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .bio-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
        border-left: none;
        border-bottom: 2px solid #d4af37;
        padding-bottom: 0.5rem;
        padding-left: 0;
        display: inline-block;
    }

    .bio-content {
        text-align: center;
    }

    .bio-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: justify;
    }

    .signature {
        font-size: 2rem;
        margin-top: 1rem;
        text-align: center;
    }

    .bio-visual::before {
        transform: translate(10px, 10px);
    }

    /* --- INTEGRANTES (SIN ESCALERA) --- */
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        align-items: start;
    }

    .member-card {
        aspect-ratio: 3/4;
        height: auto;
    }

    .member-info {
        padding: 1rem 0.5rem;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
        opacity: 1;
    }

    .member-name {
        font-size: 1rem;
        text-align: center;
    }

    .member-role {
        font-size: 0.7rem;
        letter-spacing: 1px;
        text-align: center;
    }

    /* --- MÚSICA --- */
    .music-section {
        padding: 3rem 1rem;
    }

    .spotify-embed {
        margin: 1rem 0;
    }

    .music-section p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    /* --- VIDEOS --- */
    .videos-section {
        padding: 3rem 1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-card iframe {
        height: 200px;
    }

    .videos-section > p {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    /* --- GALERÍA (CAMBIAR A CARRUSEL) --- */
    .gallery-section {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        display: none;
    }

    .gallery-carousel {
        display: block;
    }

    /* --- LIGHTBOX --- */
    .lightbox {
        padding: 1rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-prev {
        left: 5px;
        font-size: 2rem;
        padding: 0.5rem;
    }

    .lightbox-next {
        right: 5px;
        font-size: 2rem;
        padding: 0.5rem;
    }

    .lightbox-close {
        top: 5px;
        right: 5px;
        font-size: 2rem;
    }

    /* --- INSTAGRAM --- */
    .instagram-section {
        padding: 3rem 1rem;
    }

    .instagram-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .instagram-info {
        text-align: center;
        padding-right: 0;
        order: 1;
    }

    .instagram-info h2 {
        text-align: center;
        font-size: 2rem;
    }

    .insta-handle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .insta-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .insta-stats {
        gap: 2rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .instagram-embed-wrapper {
        order: 2;
        padding: 1rem;
    }

    /* --- REDES SOCIALES --- */
    .social-media {
        padding: 3rem 1rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* --- CONTACTO --- */
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    input, textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    textarea {
        min-height: 120px;
    }

    /* --- MODAL PRIVACIDAD RESPONSIVE --- */
    .privacy-modal {
        padding: 15px;
    }

    .privacy-modal-content {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

    .privacy-modal-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .privacy-modal-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem;
    }

    .privacy-text p,
    .privacy-text li {
        font-size: 0.95rem;
    }

    .privacy-text ul {
        margin-left: 1.5rem;
    }

    .privacy-close {
        width: 35px;
        height: 35px;
        font-size: 22px;
        line-height: 31px;
        top: 0.5rem;
        right: 0.5rem;
    }

    /* --- FOOTER --- */
    footer {
        padding: 2rem 1rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    footer p:last-child {
        font-size: 0.8rem;
    }
}

/* === MÓVILES EXTRA PEQUEÑOS === */
@media (max-width: 480px) {
    .banner {
        height: 50vh;
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    .banner p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .bio-content h2 {
        font-size: 1.6rem;
    }

    .bio-content h3 {
        font-size: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .privacy-modal-content {
        padding: 1.5rem 1rem;
    }

    .privacy-modal-content h2 {
        font-size: 1.5rem;
    }

    .privacy-modal-content h3 {
        font-size: 1.1rem;
    }
}