/* --- CONFIGURACIÃ“N MAESTRA DE LUJO --- */
:root {
    --oro: #cca16b;
    --negro-puro: #0a0a0a;
    --negro-suave: #141414;
    --blanco: #ffffff;
    --gris-texto: #b3b3b3;
    --transition-lujo: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ANIMACIONES --- */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 60%; }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    background-color: var(--blanco);
    color: var(--negro-puro);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- NAVEGACIÃ“N STICKY --- */
.nav-simple {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.btn-back {
    text-decoration: none;
    color: var(--negro-puro);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-lujo);
}

.btn-back:hover {
    color: var(--oro);
    letter-spacing: 6px;
}

/* --- SECCIÃ“N DE CONTENIDO --- */
.seccion-masajes {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
    animation: revealUp 1.2s ease-out;
}

.titulo-principal {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 12px;
    margin-bottom: 80px;
    text-transform: uppercase;
    position: relative;
}

.titulo-principal::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--oro);
    margin: 20px auto 0;
}

/* --- GRID DE MASAJES (INTERACTIVO) --- */
.contenedor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tarjeta-masaje {
    position: relative;
    aspect-ratio: 1 / 1.3;
    overflow: hidden;
    background-color: var(--negro-puro);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.tarjeta-masaje img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.capa-texto {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.capa-texto h2 {
    color: var(--blanco);
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: var(--transition-lujo);
}

/* Efectos Hover Pro */
.tarjeta-masaje:hover img {
    transform: scale(1.08);
    opacity: 0.5;
}

.tarjeta-masaje::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
    transition: var(--transition-lujo);
}

.tarjeta-masaje:hover::before {
    inset: 30px;
    border-color: var(--oro);
}

.tarjeta-masaje:hover h2 {
    letter-spacing: 8px;
    color: var(--oro);
}

/* --- SECCIÃ“N REDES SOCIALES (CLEAN LOOK) --- */
.social-links-container {
    background-color: var(--negro-suave);
    text-align: center;
    padding: 80px 20px;
    color: var(--blanco);
}

.social-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: revealUp 1s ease-out both;
}

.social-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--oro), transparent);
    width: 60%;
    margin: 0 auto 40px;
    animation: lineGrow 1.5s ease-in-out;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: var(--transition-lujo);
}

.social-icon:hover img {
    transform: translateY(-10px) scale(1.1);
    filter: none; /* Vuelve a su color original al pasar el mouse */
}

/* --- FOOTER PREMIUM UNIFICADO --- */
.footer-negro {
    background-color: var(--negro-puro);
    color: var(--blanco);
    padding: 100px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-logo-box img {
    height: 70px;
    width: auto;
    background: #fff;
    padding: 10px;
    transition: var(--transition-lujo);
}

.footer-logo-box img:hover {
    transform: rotate(-2deg);
}

.footer-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--oro);
}

.footer-info-box p {
    font-size: 0.85rem;
    color: var(--gris-texto);
    line-height: 2;
    margin: 8px 0;
}

/* Caja de SuscripciÃ³n/Reserva en Footer */
.footer-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-input-group {
    border-bottom: 1px solid var(--oro);
    display: flex;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-input-group input {
    background: transparent;
    border: none;
    color: var(--blanco);
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

/* --- RESPONSIVE OPTIMIZADO --- */
@media (max-width: 1024px) {
    .contenedor-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .footer-logo-box img { margin: 0 auto; }
}

@media (max-width: 768px) {
    .contenedor-grid { grid-template-columns: 1fr; }
    .titulo-principal { font-size: 2rem; letter-spacing: 6px; }
    .social-icons { gap: 20px; }
}



/* --- ESTILOS SUB-PÃGINA MASAJES --- */

/* --- CONFIGURACIÃ“N DE LUJO --- */
:root {
    --oro: #cca16b;
    --negro-pro: #0a0a0a;
    --blanco: #ffffff;
    --fuente-titulo: 'Playfair Display', serif;
    --fuente-cuerpo: 'Jost', sans-serif;
    --transition-pro: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- ANIMACIONES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scale(1.1); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- HERO BANNER EVOLUCIONADO --- */
.hero-masajes {
    height: 450px; /* MÃ¡s alto para mayor impacto */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('ASDASD.jpg'); /* Referencia image_5fb15d.jpg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax suave */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-overlay h1 {
    color: var(--blanco);
    font-family: var(--fuente-titulo);
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    animation: scaleIn 1.5s ease-out;
}

/* --- INTRODUCCIÃ“N ELEGANTE --- */
.intro-seccion {
    max-width: 850px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.5s;
}

.intro-seccion p {
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* --- GRID DE TARJETAS PRO --- */
.contenedor-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; /* MÃ¡s espacio para respirar */
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 40px;
}

.tarjeta-sub {
    text-align: center;
    opacity: 0; /* Para la animaciÃ³n de entrada */
    animation: fadeInUp 1s ease-out forwards;
}

/* Retraso en la apariciÃ³n de cada tarjeta */
.tarjeta-sub:nth-child(1) { animation-delay: 0.8s; }
.tarjeta-sub:nth-child(2) { animation-delay: 1.0s; }
.tarjeta-sub:nth-child(3) { animation-delay: 1.2s; }
.tarjeta-sub:nth-child(4) { animation-delay: 1.4s; }

/* Marco DinÃ¡mico */
.img-marco {
    position: relative;
    border: 1px solid var(--negro-pro);
    padding: 10px; /* Espacio interno elegante */
    margin-bottom: 25px;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background-color: var(--blanco);
    transition: var(--transition-pro);
}

.img-marco img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-pro);
    filter: sepia(20%); /* Toque cÃ¡lido spa */
}

/* Efecto Hover en Tarjeta */
.tarjeta-sub:hover .img-marco {
    border-color: var(--oro);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tarjeta-sub:hover img {
    transform: scale(1.05);
    filter: sepia(0%);
}

.tarjeta-sub h3 {
    font-family: var(--fuente-cuerpo);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--negro-pro);
    transition: color 0.3s;
}

.tarjeta-sub:hover h3 {
    color: var(--oro);
}

/* --- BOTÃ“N ENTRAR "GLOW" --- */
.btn-entrar {
    display: inline-block;
    background-color: var(--negro-pro);
    color: var(--blanco);
    text-decoration: none;
    padding: 12px 45px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-pro);
    border: 1px solid var(--negro-pro);
}

.btn-entrar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--oro);
    transition: var(--transition-pro);
    z-index: -1;
}

.btn-entrar:hover {
    color: var(--blanco);
    border-color: var(--oro);
}

.btn-entrar:hover::before {
    left: 0;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .contenedor-sub-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-overlay h1 { font-size: 2.5rem; letter-spacing: 5px; }
    .hero-masajes { height: 300px; background-attachment: scroll; }
}

  /* --- SECCIÃ“N SOCIAL --- */
        .social-links-section {
            background-color: var(--negro-puro);
            text-align: center;
            padding: 80px 20px 40px; /* Reducido un poco por abajo para fusionarse con el footer */
            color: var(--blanco);
        }

        .social-titulo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            letter-spacing: 3px;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .social-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--oro), transparent);
            width: 50%;
            margin: 0 auto 40px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .social-icon img {
            width: 35px;
            height: 35px;
            transition: var(--transition-lujo);
         
        }

        .social-icon:hover img {
            transform: translateY(-8px);
            /* filter: none; Opcional si quieres que vuelvan a su color original en el hover */
        }

        /* --- FOOTER --- */
        .footer-negro {
            background-color: var(--negro-puro);
            color: var(--blanco);
            padding: 40px 40px 80px; /* Ajustado padding */
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 60px;
            align-items: start; /* Mejor alineado para los textos */
        }

        .footer-logo-box {
            text-align: center;
        }

        .footer-logo-box img {
            height: 80px;
        }

        .footer-info-box h3 {
            font-family: 'Playfair Display', serif;
            color: var(--oro);
            margin-bottom: 15px;
            letter-spacing: 2px;
            font-weight: 400;
        }

        .footer-info-box p {
            font-size: 0.85rem;
            color: #cccccc;
            margin: 5px 0;
            font-weight: 300;
        }

        /* --- ANIMACIONES --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .contenedor-vip { flex-direction: column; align-items: center; }
            .tarjeta-vip { width: 100%; max-width: 400px; }
            .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-banner h1 { font-size: 2.8rem; }
            .btn-volver-top { left: 20px; font-size: 0.65rem; }
        }


        .legal-links { display: flex; gap: 20px; }
        .legal-links a { color: #444; text-decoration: none; transition: 0.3s; }
        .legal-links a:hover { color: #888; }


        

        .footer-bottom{
                text-align:center;
                padding:30px 20px;
                border-top:1px solid rgba(255,255,255,0.08);
                margin-top:40px;
            }

            .footer-bottom p{
                font-size:0.8rem;
                color:#999;
                margin-bottom:10px;
            }

            .legal-links{
                display:flex;
                justify-content:center;
                gap:25px;
            }

            .legal-links a{
                color:#ccc;
                text-decoration:none;
                font-size:0.8rem;
            }

            .legal-links a:hover{
                color:#cca16b;
            }