/* ==========================================
   IDEO MUSIC - PREMIUM WEBSITE
   Estética sofisticada y profesional
   ========================================== */

/* VARIABLES */
:root {
    /* Colores Premium */
    --color-primary: #C9A961;      /* Dorado elegante */
    --color-secondary: #8B7355;    /* Bronce */
    --color-accent: #D4AF37;       /* Oro */
    
    --color-dark: #0A0A0A;         /* Negro profundo */
    --color-dark-2: #151515;       /* Negro suave */
    --color-dark-3: #1F1F1F;       /* Gris oscuro */
    
    --color-light: #FFFFFF;        /* Blanco puro */
    --color-light-2: #F5F5F5;      /* Gris muy claro */
    --color-light-3: #E8E8E8;      /* Gris claro */
    
    --color-text: #FFFFFF;
    --color-text-secondary: #B8B8B8;
    
    /* Tipografía */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* TIPOGRAFÍA */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* CONTENEDORES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* SECCIONES */
.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background-color: var(--color-light-2);
    color: var(--color-dark);
}

.section-light .section-title,
.section-light h3,
.section-light h4 {
    color: var(--color-dark);
}

.section-light .lead,
.section-light .section-subtitle {
    color: #666;
}

.section-dark {
    background-color: var(--color-dark-2);
    color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto var(--spacing-sm);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: var(--spacing-md) auto;
}

/* UTILITIES */
.text-center { text-align: center; }
.mb-large { margin-bottom: var(--spacing-lg); }
.mt-large { margin-top: var(--spacing-lg); }

/* HEADER / NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition-normal);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-normal);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-light);
    transition: var(--transition-fast);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-dark);
    z-index: 2000;
    padding: 2rem;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--color-light);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-logo img {
    height: 160px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-break {
    display: inline;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 30px; opacity: 0.3; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: none;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    border-radius: 0;
}

.btn-secondary:hover {
    background: transparent;
    color: var(--color-dark);
    border-top-color: var(--color-dark);
    border-bottom-color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ARTISTS CAROUSEL */
.artists-section {
    background: transparent;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

/* Eliminar fondo en dispositivos móviles y tablets para no tapar la imagen */
@media (max-width: 1024px) {
    .artists-section {
        background: transparent;
        padding: 1rem 0;
    }
}

.artists-label {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    width: 100%;
}

.artists-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.artists-track {
    display: flex;
    gap: 3rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
    will-change: transform;
}

.artist-name {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    color: var(--color-primary);
    white-space: nowrap;
    opacity: 0.8;
    transition: var(--transition-normal);
}

.artist-name:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.content-text {
    padding-right: var(--spacing-md);
}

.content-subtitle {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.features-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.features-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.content-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.content-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-light);
    padding: 2rem 1.5rem 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-normal);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background: rgba(201, 169, 97, 0.05);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CAROUSEL GRANDE (Estudio A) */
.studio-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.studio-carousel {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-indicator.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

/* STUDIO INFO */
.studio-info {
    padding: var(--spacing-md);
}

.studio-info h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.services-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: var(--spacing-md) 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-fast);
}

.service-item:hover {
    background: rgba(201, 169, 97, 0.1);
    transform: translateX(5px);
}

.service-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

/* STUDIOS GRID (Estudios en Alquiler) */
.studios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.studio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
    transition: var(--transition-normal);
}

.studio-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.studio-carousel-small {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.carousel-container-small {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide-small.active {
    opacity: 1;
}

.carousel-btn-small {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition-normal);
}

.carousel-btn-small:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.carousel-prev-small {
    left: 0.5rem;
}

.carousel-next-small {
    right: 0.5rem;
}

.studio-card-content {
    padding: var(--spacing-md);
}

.studio-card-content h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.studio-specs {
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.studio-dimensions {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-sm);
}

.studio-dimensions i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* RENTAL BENEFITS */
.rental-benefits {
    background: rgba(201, 169, 97, 0.05);
    padding: var(--spacing-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: var(--spacing-lg);
}

.rental-benefits h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.benefit-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* VIDEOS GRID */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.video-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: var(--spacing-sm);
}

.video-info h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* ACCORDION (Equipamiento) */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--color-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.accordion-header:hover {
    background: rgba(201, 169, 97, 0.1);
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-header i.fas {
    color: var(--color-primary);
}

.accordion-icon {
    transition: var(--transition-normal);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.equipment-list {
    list-style: none;
    padding: 1.5rem;
}

.equipment-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
}

.equipment-list li:last-child {
    border-bottom: none;
}

.equipment-list strong {
    color: var(--color-primary);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-light-3);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: left;
}

.faq-question:hover {
    background: var(--color-light-2);
}

.faq-icon {
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.5rem;
    color: #666;
    margin-bottom: 0;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--color-primary);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* CONTACT FORM */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--color-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* FOOTER */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    height: 80px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    color: var(--color-text-secondary);
    font-style: italic;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

.footer-contact p {
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .studio-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Hero responsive para tablets */
    .hero {
        background-position: 35% center;
        background-size: cover;
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.65) 0%,
            rgba(10, 10, 10, 0.45) 50%,
            rgba(10, 10, 10, 0.75) 100%
        );
    }
    
    .hero-logo img {
        height: 140px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .artist-name {
        font-size: 1.3rem;
    }
    
    .artists-label {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        padding: 0 1rem;
        text-align: center;
        display: block;
    }
    
    .studios-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .carousel-container-small {
        height: 350px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .header-content {
        padding: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Hero responsive para móviles */
    .hero {
        background-position: 30% center;
    }
    
    .hero-logo img {
        height: 120px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.4) 50%,
            rgba(10, 10, 10, 0.7) 100%
        );
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1.5px;
        line-height: 1.3;
    }
    
    .hero-title-break {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* SOLUCIÓN CENTRADO DE CLIENTES EN MÓVILES */
    .artists-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
    }
    
    .artists-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
        line-height: 1.3;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .artist-name {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-container-small {
        height: 280px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
}
