/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-gold: #D4AF37;
    --secondary-gold: #F4D03F;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --border-light: #e9ecef;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);

    /* --- Variables de personalización del Chatbot n8n --- */
    /* Botón flotante del chat */
    --chat--toggle--background: var(--primary-gold); /* Fondo amarillo */
    --chat--toggle--color: var(--text-light); /* Ícono blanco */
    --chat--toggle--hover--background: var(--secondary-gold); /* Amarillo más claro al pasar el mouse */

    /* Mensajes del usuario */
    --chat--message--user--background: var(--primary-gold);
    --chat--message--user--color: var(--primary-black);

    /* Encabezado de la ventana del chat */
    --chat--header--background: #1a1a1a; /* Gris oscuro, igual que el menú de navegación */
    --chat--header--color: var(--text-light);
    --chat--heading--font-size: 1.5em; /* Ajustamos el tamaño del título */
    --chat--subtitle--color: #ccc;
    
    /* Color de acento para otros elementos (como el botón de enviar) */
    --chat--color-primary: var(--primary-gold);

    /* Solución para iPhone: Evita el zoom automático al hacer foco en el input del chat */
    --chat--input--font-size: 16px;

}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    /* Previene el desbordamiento horizontal, una causa común de problemas en móviles */
    overflow-x: hidden; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
}

.nav {
    padding: 15px 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-social a {
    color: var(--primary-gold);
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--secondary-gold);
}

.hostinger-btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hostinger-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-switcher span {
    color: var(--text-gray);
    font-size: 14px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 5px;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: var(--secondary-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 20px;
    word-break: break-word; /* Previene que títulos largos rompan el layout en pantallas pequeñas */
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    /* El .video-container interior ahora controla el tamaño y la apariencia para evitar conflictos. */
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover::before {
    opacity: 0.9;
}

.portfolio-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.portfolio-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Paquetes Section */
.packages-section {
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.package-image-card {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.package-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.package-image-link {
    position: relative;
    display: block;
}

.package-image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.package-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.package-image-link:hover .package-image-overlay {
    opacity: 1;
}

.package-image-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.package-image-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    padding: 15px 30px;
    margin: 25px auto;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Embajadores Section */
.embajadores-section {
    background: var(--primary-black);
    color: white;
}

.embajadores-section .section-title {
    color: var(--primary-gold);
}

.embajadores-section .section-subtitle {
    color: #ccc;
}

.embajadores-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.embajadores-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.embajadores-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #ccc;
}

.benefits-list i {
    color: var(--primary-gold);
}

.embajadores-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.embajadores-form h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-story {
    max-width: 800px;
    margin: 40px auto 60px;
    text-align: left;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-story p {
    margin-bottom: 20px;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.about-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.about-position {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3,
.representantes h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.reps-grid {
    display: grid;
    gap: 30px;
}

.rep-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.rep-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
}

.rep-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rep-card p {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: white;
    padding: 60px 0 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        height: 45px;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--primary-black);
        padding: 20px;
        padding-top: 0;
        flex-direction: column;
        align-items: center;
        display: none;
        gap: 25px;
    }
    
    .language-switcher {
        order: -1; /* Pone el selector de idioma al principio del menú móvil */
        padding: 20px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem; /* Reducimos el tamaño de los títulos de sección */
    }

    .services-grid,
    .embajadores-content,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Unificamos el espacio entre elementos en las secciones de una columna */
    }

    .packages-grid {
        grid-template-columns: 1fr; /* Aseguramos que los paquetes se apilen correctamente */
    }

    .service-card, .about-card, .embajadores-form {
        padding: 40px 25px; /* Reducimos el padding interno en las tarjetas para dar más espacio al contenido */
    }
    
    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-story {
        font-size: 1rem;
        text-align: justify;
        margin: 30px auto 40px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide.next {
    transform: translateX(100%);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.slider-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-gold);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive slider */
@media (max-width: 768px) {
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
}

/* Audio Player (Song) Styles */
.video-container {
    position: relative;
    width: 100%;
    height: auto; /* Eliminamos la altura fija para hacerlo responsivo */
    aspect-ratio: 1 / 1; /* Hacemos que el contenedor sea un cuadrado perfecto, ideal para grids */
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--primary-black);
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cambiado a 'cover' para que la imagen llene el contenedor sin distorsionarse y sin dejar espacios vacíos */
    transition: transform 0.4s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.play-btn {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-gold);
}

.video-cover:hover .play-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-cover:hover .cover-image {
    transform: scale(1.05);
}

.video-info {
    text-align: center;
    color: white;
    /* Los estilos existentes para esto están bien */
}

.video-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    /* Los estilos existentes para esto están bien */
}

.video-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    /* Los estilos existentes para esto están bien */
}

.audio-player {
    display: none;
}

.video-controls {
    position: absolute;
    bottom: -100%; /* Empieza oculto abajo */
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: bottom 0.4s ease;
}

/* --- Estados del Reproductor --- */

.video-container.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-container.playing .video-cover {
    cursor: default;
}

.video-container.playing .video-cover:hover .cover-image {
    transform: scale(1); /* Desactiva el zoom al pasar el mouse cuando está sonando */
}

.video-container.playing .video-controls {
    bottom: 0; /* Desliza los controles a la vista */
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.control-btn:hover {
    color: var(--primary-gold);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2.5px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background-color: var(--primary-gold);
    border-radius: 2.5px;
    width: 0%;
}

.time {
    color: white;
    font-size: 0.9rem;
    min-width: 40px;
    text-align: center;
}

/* Responsive video */
@media (max-width: 768px) {
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
/* Responsive grid para canciones */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columnas para desktop y tablet */
    gap: 30px;
}

/* Ocultar canciones 7-12 en móvil */
.mobile-hidden {
    display: block;
}

/* Móvil: 2 columnas (6 canciones visibles) */
@media (max-width: 767px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ocultar canciones 7-12 en móvil */
    .mobile-hidden {
        display: none;
    }
}

/* Móvil pequeño: 1 columna (6 canciones visibles) */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* Catálogo CTA */
.catalog-cta {
    text-align: center;
    margin: 60px 0 20px;
}

.catalog-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    text-decoration: none;
}

.catalog-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.catalog-btn i {
    font-size: 1.4rem;
}

.catalog-info {
    color: var(--text-gray);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Animación para mostrar catálogo completo */
.portfolio-grid.expanded .mobile-hidden {
    display: block;
}

.catalog-btn.hidden {
    display: none;
}
/* Footer actualizado */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-brand h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 15px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}

.footer-music a,
.footer-contact a {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-music a:hover,
.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact .contact-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.footer-form input::placeholder {
    color: #aaa;
}

.footer-form button {
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

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

/* Responsive footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-form button {
        margin: 0 auto;
    }
    .footer-contact .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
}
/* Solución para imágenes de fundadores */
.about-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    flex-shrink: 0;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive ajustado */
@media (max-width: 768px) {
    .about-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .about-image {
        width: 100px;
        height: 100px;
    }
}