/* ========================================
           ESTILOS GLOBALES
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #1a1a1a;
            color: white;
        }
        
        .btn-green {
            background-color: #6f42c1;
            border: none;
            color: white;
            font-weight: 600;
            border-radius: 25px;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }
        
        .btn-green:hover {
            background-color: #6f42c1;
            color: white;
            transform: translateY(-2px);
        }
        
        .btn-red {
            background-color: #6f42c1;
            border: none;
            color: white;
            font-weight: 600;
            border-radius: 25px;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }
        
        .btn-red:hover {
            background-color: #FFC107;
            color: white;
            transform: translateY(-2px);
        }
        
        /* ========================================
           HEADER STYLES
        ======================================== */
        .header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo:hover {
    color: white;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-item {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #6f42c1;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6f42c1;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
        color: black;
    }

    .btn-purple {
        background-color: #6f42c1; /* Color morado */
        color: white; /* Texto blanco */
        border-radius: 15px;
    }
        
    .btn-purple:hover {
        background-color: #5a32a1; /* Color morado más oscuro en hover */
    }

/* Estilos para el navbar en dispositivos móviles */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #ccc; /* Color del icono del botón */
}

/* Mostrar el menú en dispositivos móviles */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Ocultar el menú por defecto */
    }
    .collapse.show .nav-menu {
        display: flex; /* Mostrar el menú cuando se expanda */
        flex-direction: column;
        width: 100%;
        background-color: #1a1a1a; /* Fondo de menú */
    }
}
        
        /* ========================================
           HERO SECTION STYLES
        ======================================== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                        url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .service{
            font-size:  2rem;
            margin: 7rex;
            text-align: center;
            font-weight: 500;
            margin-bottom: 70x;
            text-shadow: 2px 2px 4px #6f42c1;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .booking-card {
            background: rgba(255,255,255,0.95);
            border-radius: 15px;
            padding: 20px;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        /* ========================================
           OFFERS SECTION STYLES
        ======================================== */
        .offers-section {
            padding: 80px 0;
            background-color: #f8f9fa;
            color: #1a1a1a;
        }
        
        
        .offer-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .offer-card:hover {
            transform: translateY(-5px);
        }
        
        .offer-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .offer-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(0,0,0,0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .offer-content {
            padding: 25px;
        }
        
        /* ========================================
           CENTERS SECTION STYLES
        ======================================== */
        .centers-section {
            padding: 80px 0;
            background-color: #fff;
            color: #1a1a1a;
        }
        
        .center-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .center-card:hover {
            transform: scale(1.05);
        }
        
        .center-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
        }
        
        .center-name {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .upcoming-openings {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .opening-item {
            text-align: center;
            padding: 20px;
        }
        
        .opening-location {
            color: #6f42c1;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* ========================================
           BEFORE/AFTER SECTION STYLES
        ======================================== */
        .before-after-section {
            padding: 80px 0;
            background-color: #1a1a1a;
        }
        
        .comparison-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .comparison-card:hover {
            transform: scale(1.02);
        }
        
        .comparison-split {
            display: flex;
            height: 100%;
        }
        
        .before-side, .after-side {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .comparison-label {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background-color: rgba(0,0,0,0.8);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .before-side .comparison-label {
            background-color: #FFC107;
        }
        
        .after-side .comparison-label {
            background-color: #6f42c1;
        }
        
        /* ========================================
           FOOTER STYLES
        ======================================== */
        .footer {
            background-color: #000;
            padding: 60px 0 20px;
            color: #ccc;
        }
        
        .footer-section {
            margin-bottom: 40px;
        }
        
        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .footer-link {
            color: #ccc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #6f42c1;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 20px;
            text-align: center;
            color: #888;
        }
        
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #6f42c1;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            color: white;
        }
        
        /* ========================================
           RESPONSIVE STYLES
        ======================================== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .nav-menu {
                display: none;
            }
            
            .center-card {
                height: 200px;
            }
            
            .comparison-card {
                height: 200px;
            }
        }


/* Servicios */

.movie-card:hover .movie-overlay {
  opacity: 1;
}

.synopsis {
  font-size: 0.95rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.accordion {
  display: flex;
  width: 90%;
  height: 70vh;
  max-width: 1200px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: flex 0.5s ease-in-out;
  cursor: pointer;
}

.accordion-item:hover {
  flex: 3;
}

.accordion-item:not(:hover) {
  flex: 0.5;
}

.accordion-item .content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #FFC107;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.accordion-item:hover .content {
  opacity: 1;
}

.content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1rem;
}

.form-group label {
    font-weight: bold;
    margin: 7px;
}

.form-control {
    background-color: white;
    color: white;
    border: 1px solid #777;
    margin-top: 8px;
}

.form-control:focus {
    background-color: #666;
    border-color: #aaa;
}

.form-group{
    margin: 7px;
    margin-top: 3px;
}
