/* Variables de Colores Explosivos */
:root {
    --primary-color: #00f0f0;    /* Azul Neón */
    --secondary-color: #ff00ff;  /* Fucsia */
    --dark-bg: #0a0a0a;          /* Negro profundo */
    --card-bg: #1a1a1a;          /* Gris oscuro para tarjetas */
    --text-color: #e0e0e0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER Y NAVEGACIÓN --- */
header {
    background: rgba(10, 10, 10, 0.95);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* --- HERO SECTION OPTIMIZADA --- */
.hero {
    height: 100vh;
    /* Nitidez mejorada: bajamos opacidad oscura y agregamos tinte fucsia sutil */
    background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(255, 0, 255, 0.1)), 
                url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?q=80&w=1800') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    background-attachment: fixed; /* Efecto Parallax */
    filter: contrast(105%); 
}

.hero-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--white);
    /* Sombra fuerte para legibilidad sobre fondo nítido */
    text-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--secondary-color), 2px 2px 10px #000;
    margin-bottom: 10px;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 1px 1px 8px #000;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    background: #1eb954;
}

/* --- SECCIONES GENERALES --- */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto;
}

/* --- SOBRE NOSOTROS --- */
.about-text-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border-left: 6px solid var(--primary-color);
    max-width: 900px;
    margin: 0 auto;
}

.about-text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- SERVICIOS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    margin-bottom: 15px;
}

/* --- GALERÍA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

/* --- HORARIOS --- */
.schedules-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.schedule-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 240, 240, 0.2);
    min-width: 280px;
}

.schedule-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.schedule-card .time {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* --- UBICACIÓN --- */
.location-text {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

/* --- CONTACTO --- */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 750px;
    background: #151515;
    padding: 50px;
    border-radius: 25px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input, .form-group textarea {
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn-submit {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 240, 240, 0.5);
}

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 1px solid #333;
}

.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.footer-socials-centered a {
    color: #fff;
    font-size: 2rem;
    margin: 0 15px;
    transition: 0.3s;
}

.footer-socials-centered a:hover {
    color: var(--primary-color);
}

.copy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
}

/* --- RESPONSIVE --- */
.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--dark-bg);
        border-bottom: 2px solid var(--secondary-color);
        padding: 20px 0;
    }
    .nav-list.active { display: flex; }
    .nav-list li { margin: 15px 0; }
    section { padding: 60px 0; }
    .hero { background-attachment: scroll; } /* Mejor rendimiento en móviles */
}