/* Variables de color y reset */
        :root {
            --gold: #D4AF37;
            --light-gold: #F4E6A2;
            --dark-gold: #B8951B;
            --black: #000000;
            --white: #FFFFFF;
            --gray: #1A1A1A;
            --light-gray: #F5F5F5;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--black);
            line-height: 1.6;
            background-color: var(--white);
        }
        
        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Navegación mejorada */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            background-color: var(--black);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        }
        
        .navbar img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            object-fit: cover;
        }
        
        /* Menú móvil avanzado */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--gold);
            margin: 4px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2.5rem;
        }
        
        .nav-links a {
            color: var(--white);
            font-weight: 400;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Banner principal con imagen */
        .hero-banner {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
            padding: 0 1rem;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        
        .btn-primary {
            display: inline-block;
            background-color: var(--gold);
            color: var(--black);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        /* Secciones generales */
        section {
            padding: 5rem 2rem;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: var(--black);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Galería */
        .gallery-container {
            background-color: var(--light-gray);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 800px;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }
        
        .gallery-item img {
            width: 350px;
            height: 500px;
          
            
            
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }

 .gallery-item h2 {
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.gallery-item button {
    display: block;              /* permite centrar */
    margin: 10px auto;            /* centra horizontalmente */
    padding: 10px 20px;
    background-color: gold;       /* dorado */
    color: white;                 /* letra blanca */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.gallery-item button:hover {
    background-color: #c9a000;    /* dorado más oscuro */
}


.premio{
  display: flex;
  justify-content: center; /* centra los items */
  gap: 12px;
  max-width: 600px;
  margin: 30px auto;       /* centra la galería completa */
}

.gall{
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.gall img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .3s ease;
  display: block;
}

.gall img:hover{
  transform: scale(1.06);
}



.pago-container { background:whitesmoke; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 100%; max-width: 400px; text-align: center; }
        h2 { color: #333; }
        .resumen { margin: 20px 0; padding: 15px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
        #total-pago { font-size: 1.5rem; font-weight: bold; color: #b38728; 
       
}

.pago-container h2{
    text-align: center;
}
        
        /* Info section */
        .info-section {
            background-color: var(--black);
            color: var(--white);
            text-align: center;
        }
        
        .info-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 3rem;
            border: 2px solid var(--gold);
            border-radius: 15px;
            background-color: rgba(26, 26, 26, 0.9);
        }
        
        .info-card h3 {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        
        .info-card p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--light-gray);
        }
        
        .info-link-box {
            background-color: var(--gold);
            color: var(--black);
            padding: 1rem 2rem;
            border-radius: 50px;
            display: inline-block;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .info-link-box:hover {
            background-color: var(--dark-gold);
            transform: translateY(-3px);
        }
        
        .salon-link {
            color: var(--black);
            font-weight: 600;
            text-decoration: underline;
        }
        
        /* Contacto */
        .contact-section {
            text-align: center;
        }
        
        .contact-section > p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: var(--gray);
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .contact-info i {
            color: var(--gold);
            font-size: 1.5rem;
        }
        
        /* Footer */
        .main-footer {
            background-color: var(--black);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gray);
            color: var(--gold);
            font-size: 1.3rem;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--gold);
            color: var(--black);
            transform: translateY(-5px);
        }
        
        .copyright {
            color: var(--light-gray);
            font-size: 0.9rem;
            margin-top: 1.5rem;
            border-top: 1px solid var(--gray);
            padding-top: 1.5rem;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        


        /* Responsive */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background-color: var(--black);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .nav-links a {
                font-size: 1.3rem;
            }
            
            .menu-toggle.active .bar:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active .bar:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .info-card {
                padding: 2rem 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .btn-primary, .info-link-box {
                padding: 0.8rem 1.5rem;
            }
            
            section {
                padding: 3rem 1rem;
            }
        }
        
        /* Mejoras de SEO visual */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
            border: 0;
        }


 h1{
    text-align: center;
    color: gold;
}

/* Estilos generales del contenedor */
.video-container {
  max-width: 1000px;      /* Ancho máximo solicitado */
  width: 90%;             /* Se ajusta en pantallas pequeñas */
  margin: 30px auto;      /* Centra el contenedor y da espacio entre ellos */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000; /* Fondo negro como YouTube */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Título superior */
.video-title {
  color: #fff;
  padding: 15px 20px;
  margin: 0;
  font-size: 1.1rem;
  background: #1a1a1a;
    text-align: center;
}

/* Contenedor del video para mantener proporciones */
.main-player video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9; /* Mantiene el formato panorámico */
  outline: none;
}

contact-hero h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--light-gold);
        }
        
        /* Sección principal de contacto */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        /* Formulario de contacto */
        .contact-form {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h2 {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-gold);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--medium-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-primary {
            background-color: var(--gold);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            background-color: #b89a5e;
        }
        
        /* Información de contacto */
         .contact-hero h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--light-gold);
        }
        
        /* Sección principal de contacto */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        /* Formulario de contacto */
        .contact-form {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .contact-form h2 {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-gold);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--medium-gray);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-primary {
            background-color: var(--gold);
            color: var(--white);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            background-color: #b89a5e;
        }
        
        /* Información de contacto */
        .contact-info {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .contact-info h2 {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--light-gold);
        }
        
        .contact-details {
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            background-color: var(--light-gold);
            color: var(--gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }
        
        .contact-text p {
            color: var(--medium-gray);
        }
        
        /* Horarios */
        .hours h3 {
            margin-bottom: 1rem;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .day {
            font-weight: 500;
        }
        
        .time {
            color: var(--medium-gray);
        }
        
        /* Mapa */
.mapa-container {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

    
/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .video-container {
    width: 95%; /* Más ancho en tablets */
  }
}

@media (max-width: 480px) {
  .video-container {
    width: 100%;    /* Ocupa todo el ancho en celulares */
    border-radius: 0; /* Estilo app móvil */
  }
  
  .video-title {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.galeria-lugar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.galeria-lugar .item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
}

.galeria-lugar img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galeria-lugar .item:hover img {
  transform: scale(1.08);
}
