/* ================================================
   ETHEOS LIVE | Alta Costura Musical para Eventos de Lujo
   CSS Principal - VERSIÓN FINAL LIMPIA Y OPTIMIZADA
   ================================================ */

/* ================================================
   PALETA DE COLORES
   ================================================ */

:root {
    --bg-cream: #FBF9F5;
    --gold: #C5A059;
    --gold-light: #d4b86a;
    --gold-dark: #a07e2e;
    --dark-charcoal: #232323;
    --soft-gray: #666666;
    --white: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
}

/* ================================================
   RESET Y ESTILOS BASE
   ================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--dark-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ================================================
   CONTAINER Y UTILIDADES
   ================================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.gold-text {
    color: var(--gold);
    font-weight: 600;
}

/* ================================================
   NAVEGACIÓN
   ================================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 249, 245, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav.scrolled {
    background: rgba(251, 249, 245, 0.98);
    box-shadow: 0 5px 20px var(--shadow-light);
    border-bottom-color: var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--gold);
}

.logo span {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 400;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark-charcoal);
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.4s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-container {
        padding: 15px 20px;
    }
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1507838153414-b4b713384a76?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 249, 245, 0.95) 0%, rgba(251, 249, 245, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--dark-charcoal);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 10vw, 5.625rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: var(--dark-charcoal);
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: var(--gold);
    margin-bottom: 30px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.hero-divider span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-divider i {
    color: var(--gold);
    font-size: 18px;
}

.hero-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--soft-gray);
    margin-bottom: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--soft-gray);
    font-size: 11px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll i {
    display: block;
    margin-top: 8px;
    font-size: 12px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        letter-spacing: 8px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 6px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* ================================================
   BOTONES GENERALES
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--dark-charcoal);
    border: 1.5px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--gold);
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================================
   SECCIONES GENERALES
   ================================================ */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-align {
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 2.625rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}

.left-align .section-divider {
    margin: 20px 0;
}

.section-subtitle {
    color: var(--soft-gray);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-subtitle {
        font-size: 14px;
    }
}

/* ================================================
   EVENTOS / SERVICIOS
   ================================================ */

.events {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-bottom: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-light);
    border-bottom-color: var(--gold);
}

.card-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--soft-gray);
    line-height: 1.7;
    font-size: 14px;
}

.card-hover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .card-hover-bg {
    transform: scaleX(1);
}
/* ================================================
   INSTRUMENTOS - VERSIÓN 1 COLUMNA EN MÓVILES
   ================================================ */

.instruments {
    background: rgba(197, 160, 89, 0.03);
    padding: 80px 20px;
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.instrument-item {
    background: var(--white, #FFFFFF);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.instrument-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold, #C5A059);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instrument-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.9;
    overflow: hidden;
    background: #1a1a1a;
}

.instrument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instrument-item:hover .instrument-image img {
    transform: scale(1.08);
}

.instrument-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.9), rgba(197, 160, 89, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instrument-item:hover .instrument-overlay {
    opacity: 1;
}

.instrument-overlay i {
    font-size: 42px;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.instrument-item:hover .instrument-overlay i {
    transform: scale(1);
}

.instrument-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 8px;
    letter-spacing: 2px;
    color: var(--dark-charcoal, #232323);
    font-weight: 600;
}

.instrument-item p {
    font-size: 13px;
    color: var(--soft-gray, #666666);
    padding: 0 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-instrument {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    margin-bottom: 20px;
    background: transparent;
    border: 1.5px solid var(--gold, #C5A059);
    color: var(--dark-charcoal, #232323);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 40px;
    cursor: pointer;
}

.btn-instrument i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.btn-instrument:hover {
    background: var(--gold, #C5A059);
    color: white;
    border-color: var(--gold, #C5A059);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-instrument:hover i {
    transform: translateX(6px);
}

/* ================================================
   RESPONSIVE - 1 SOLA COLUMNA EN MÓVILES
   ================================================ */

/* Escritorio normal (hasta 1200px) - sigue 5 columnas pero más compacto */
@media (max-width: 1200px) {
    .instruments-grid {
        gap: 20px;
    }
}

/* Tablets grandes (hasta 992px) - cambia a 3 columnas */
@media (max-width: 992px) {
    .instruments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablets (hasta 768px) - cambia a 2 columnas */
@media (max-width: 768px) {
    .instruments {
        padding: 60px 15px;
    }
    
    .instruments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .instrument-item h3 {
        font-size: 18px;
    }
    
    .instrument-item p {
        font-size: 12px;
    }
}

/* Móviles (hasta 576px) - ¡1 SOLA COLUMNA! */
@media (max-width: 576px) {
    .instruments {
        padding: 50px 16px;
    }
    
    .instruments-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 100%;
    }
    
    .instrument-item {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .instrument-image {
        aspect-ratio: 1 / 0.8;
    }
    
    .instrument-item h3 {
        font-size: 20px;
        margin-top: 15px;
    }
    
    .instrument-item p {
        font-size: 13px;
        padding: 0 20px;
    }
    
    .btn-instrument {
        padding: 10px 24px;
        font-size: 11px;
        margin-bottom: 22px;
    }
}

/* Móviles muy pequeños (hasta 400px) */
@media (max-width: 400px) {
    .instruments {
        padding: 40px 12px;
    }
    
    .instruments-grid {
        gap: 20px;
    }
    
    .instrument-image {
        aspect-ratio: 1 / 0.7;
    }
    
    .instrument-item h3 {
        font-size: 18px;
    }
    
    .instrument-item p {
        font-size: 12px;
        padding: 0 15px;
    }
}

/* ================================================
   COMBINACIÓN PERSONALIZADA
   ================================================ */

.combinacion {
    background: var(--bg-cream);
    padding: 100px 0;
}

.combinacion-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.combinacion-selector {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.combinacion-selector h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-charcoal);
    text-align: center;
}

.instrumentos-checkbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 35px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-cream);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.checkbox-item:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(5px);
}

.checkbox-item input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input:checked+.checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-item input:checked+.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.instrument-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-charcoal);
}

.combinacion-adicional h4 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.form-group-combinacion {
    position: relative;
    margin-bottom: 25px;
}

.form-group-combinacion input,
.form-group-combinacion select,
.form-group-combinacion textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group-combinacion textarea {
    resize: none;
}

.form-group-combinacion .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.form-group-combinacion input:focus~.focus-border,
.form-group-combinacion select:focus~.focus-border,
.form-group-combinacion textarea:focus~.focus-border {
    width: 100%;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

#municipioEvento:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.btn-wa-combinacion {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-wa-combinacion i {
    font-size: 22px;
}

.btn-wa-combinacion:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.combinacion-resumen {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.combinacion-resumen h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--gold);
}

.resumen-seleccion {
    min-height: 200px;
    margin-bottom: 25px;
}

.empty-message {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    padding: 40px 0;
}

.resumen-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.3s ease;
}

.resumen-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.resumen-item i:first-child {
    color: var(--gold);
    width: 25px;
}

.resumen-item .remove-item {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.resumen-item .remove-item:hover {
    color: #ff4444;
}

.combinacion-nota {
    margin-top: 25px;
    padding: 15px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.combinacion-nota i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 2px;
}

.combinacion-nota p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .combinacion-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .combinacion-resumen {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .combinacion {
        padding: 60px 0;
    }
    .combinacion-selector {
        padding: 25px;
    }
    .instrumentos-checkbox {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   GALERÍA CON CARRUSEL
   ================================================ */

.galeria {
    background: var(--bg-cream);
    padding: 100px 0;
}

.carrusel-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
}

.carrusel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carrusel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrusel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
}

.carrusel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrusel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 15px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(197, 160, 89, 0.8);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 20px;
}

.carrusel-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carrusel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carrusel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .carrusel-caption {
        font-size: 14px;
        padding: 20px 15px 10px;
    }
}

/* ================================================
   VIDEOS ESTILO YOUTUBE SHORTS / INSTAGRAM
   ================================================ */

.videos-section {
    margin-top: 60px;
}

.videos-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--dark-charcoal);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.videos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.videos-grid::-webkit-scrollbar {
    height: 5px;
}

.videos-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.videos-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.video-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-info {
    padding: 15px;
    text-align: center;
    background: var(--white);
}

.video-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.video-info p {
    font-size: 12px;
    color: var(--soft-gray);
}

.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.scroll-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 5px;
    animation: pulse 1.5s ease infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.scroll-help {
    text-align: center;
    font-size: 12px;
    color: var(--soft-gray);
    margin-top: 15px;
}

.scroll-help i {
    color: var(--gold);
    margin: 0 5px;
}

@media (max-width: 768px) {
    .video-card {
        width: 280px;
    }
    .videos-title {
        font-size: 24px;
    }
    .video-info h4 {
        font-size: 14px;
    }
    .video-info p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .video-card {
        width: 260px;
    }
    .videos-grid {
        gap: 15px;
        padding: 15px 8px;
    }
}

/* ================================================
   CONTACTO
   ================================================ */

.contact {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #f0ece4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20,20 L80,20 M20,40 L80,40 M20,60 L80,60 M20,80 L80,80" stroke="%23C5A059" stroke-width="0.5"/><circle cx="50" cy="50" r="15" stroke="%23C5A059" stroke-width="0.5" fill="none"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.contact .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: transparent;
    box-shadow: none;
}

.contact .contact-info {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact .contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-info-header i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-info-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--gold);
}

.contact-info-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-details {
    margin-bottom: 35px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon {
    background: var(--gold);
    transform: scale(1.05);
}

.contact-icon i {
    font-size: 22px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.contact-detail:hover .contact-icon i {
    color: var(--dark-charcoal);
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-text span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3px;
}

.contact-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-social h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gold);
}

.contact .social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0;
}

.contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.contact .social-links a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact .social-links a:hover {
    background: var(--gold);
    color: var(--dark-charcoal);
    transform: translateY(-3px);
}

.contact .social-links a:hover i {
    transform: scale(1.1);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-charcoal);
    position: relative;
}

.contact-form h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    padding-top: 14px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 45px;
    top: 14px;
    font-size: 14px;
    color: var(--soft-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -10px;
    left: 15px;
    font-size: 11px;
    padding: 0 5px;
    background: var(--white);
    color: var(--gold);
}

.form-group select:focus~label,
.form-group select:valid~label {
    top: -10px;
    left: 15px;
    font-size: 11px;
    padding: 0 5px;
    background: var(--white);
    color: var(--gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 16px;
    pointer-events: none;
}

.form-group textarea~.input-icon {
    top: 18px;
    transform: none;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.form-group input:focus~.focus-border,
.form-group select:focus~.focus-border,
.form-group textarea:focus~.focus-border {
    width: 100%;
}

.form-actions {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-charcoal);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    gap: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    gap: 15px;
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--soft-gray);
    margin-top: 20px;
}

.form-note i {
    color: var(--gold);
    margin-right: 5px;
}

@media (max-width: 992px) {
    .contact .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact .contact-info {
        order: 2;
    }
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    .contact .contact-info {
        padding: 30px;
    }
    .contact-form {
        padding: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact .social-links {
        grid-template-columns: 1fr;
    }
    .contact-detail {
        padding: 8px;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    .contact-icon i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .contact-info-header h3 {
        font-size: 24px;
    }
    .contact-form h3 {
        font-size: 20px;
    }
    .btn-submit,
    .btn-whatsapp {
        padding: 12px;
        font-size: 12px;
    }
}

/* ================================================
   WHATSAPP FLOAT Y BACK TO TOP
   ================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--dark-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER
   ================================================ */

footer {
    background: #0a0a0a;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo .logo span {
    font-size: 10px;
    display: block;
    color: var(--gold);
}

.footer-logo p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-links h4,
.footer-hours h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-hours p {
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-links ul li a:hover {
        padding-left: 0;
    }
}

/* ================================================
   ANIMACIONES Y KEYFRAMES
   ================================================ */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}