:root {
            --primary-color: #8a6d3b;
            --secondary-color: #f5f5f5;
            --accent-color: #d4af37;
            --dark-color: #333333;
            --light-color: #ffffff;
            --light-gold: #f9f0d2;
            --text-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--dark-color);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Navegación */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: var(--light-color);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }


/* Contenedor para centrar */
.btn-wrapper{
  display: flex;
  justify-content: center;
  margin: 20px 0;
  text-decoration: none;
}

/* Botón dorado */
.btn-gold{
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Hover */
.btn-gold:hover{
  background: linear-gradient(135deg, #c9a227, #b8961e);
  transform: translateY(-2px);
}

/* Click (activo) */
.btn-gold:active{
  background: linear-gradient(135deg, #a88414, #8f7411);
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}



        .navbar img {
            height: 80px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            height: 3px;
            width: 25px;
            background-color: var(--dark-color);
            margin: 3px 0;
            transition: var(--transition);
        }

        /* Banner Principal - Salón */
        .salon-hero-banner {
            height: 85vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light-color);
            padding: 0 20px;
        }

        .salon-hero-content {
            max-width: 800px;
            animation: fadeIn 1.5s ease;
        }

        .salon-hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--light-color);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .salon-hero-content p {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
        }

        /* Sección de Servicios */
        .services-section {
            padding: 5rem 0;
            background-color: var(--secondary-color);
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background-color: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .service-content p {
            margin-bottom: 1.5rem;
            color: #666;
        }

        .service-price {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Galería del Salón */
        .salon-gallery {
            padding: 5rem 0;
            background-color: var(--light-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 300px;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Sección de Testimonios */
        .testimonials-section {
            padding: 5rem 0;
            background-color: var(--light-gold);
        }

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial::before {
            content: "\201C";
            font-size: 4rem;
            color: var(--accent-color);
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }

        /* Sección de Contacto */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--secondary-color);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background-color: var(--light-color);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .contact-info p {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 1.2rem;
            width: 25px;
        }

        .mapa-container {
            margin-top: 2rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .mapa-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        /* Galería de ubicación */
        .galeria-lugar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .galeria-lugar .item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: 550px;
        }

        .galeria-lugar img {
            width: 100%;
            height: 500px;
            
        }

        /* Footer */
        .main-footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 3rem 0 1.5rem;
        }

        .footer-content {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin: 0 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }

        .social-icons i {
            font-size: 1.2rem;
        }

        .copyright {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: #aaa;
        }

        .copyright a {
            color: var(--accent-color);
        }

        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .salon-hero-content h1 {
                font-size: 3rem;
            }
            
            .salon-hero-content p {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--light-color);
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .salon-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .salon-hero-content p {
                font-size: 1.3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .salon-hero-content h1 {
                font-size: 2rem;
            }
            
            .salon-hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .services-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        .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;
        }

.video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, 250px);
            gap: 20px;
            justify-content: center;
            padding: 20px;
            font-family: sans-serif;
        }

        /* Estilo de cada contenedor de video */
        .video-item {
            width: 250px;
            height: 250px;
            background-color: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            position: relative;
        }

        /* Forzar el video a cubrir el área de 250x250 */
        .video-item video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Mantiene la estética sin deformar el video */
        }

        .video-caption {
            position: absolute;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            color: white;
            width: 100%;
            font-size: 12px;
            padding: 5px;
            text-align: center;
        }

h1 {
    text-align: center;
}