/* ==========================================================================
   D'VALENZ. SPA - MIRAFLORES, LIMA, PERÚ
   Estilos de Alta Fidelidad Inspirados 100% en la Maqueta de Diseño
   ========================================================================== */

:root {
    --bg-dark-900: #0d0805;
    --bg-dark-800: #140d09;
    --bg-dark-700: #1c120c;
    --bg-dark-600: #271911;
    
    --gold-primary: #c9a25a;
    --gold-bright: #d4af37;
    --gold-light: #f3d48d;
    --gold-dark: #96732d;
    --gold-gradient: linear-gradient(135deg, #f3d48d 0%, #d4af37 45%, #c9a25a 75%, #96732d 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f3d48d 30%, #d4af37 70%, #b38b36 100%);
    
    --text-main: #f5eee8;
    --text-muted: #a09285;

    --border-gold: rgba(201, 162, 90, 0.28);
    --border-gold-bright: rgba(212, 175, 55, 0.65);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.7);

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Raleway', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: dark;
}

body {
    background-color: var(--bg-dark-800);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 5% 15%, rgba(181, 101, 29, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 95% 75%, rgba(201, 162, 90, 0.1) 0%, transparent 35%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }

.script-font {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-size: 2.4rem;
    line-height: 1.2;
    display: inline-block;
}

/* Encabezados Centrados con Líneas Doradas (Estilo Maqueta) */
.mockup-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.mockup-heading-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

.mockup-line {
    flex: 1;
    max-width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
}

.section {
    padding: 5.5rem 0;
    position: relative;
}

/* Botones & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.btn-lg { padding: 1.05rem 2.6rem; font-size: 0.92rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-dark-900);
    border-color: var(--gold-bright);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 162, 90, 0.35);
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 90, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-gold-bright);
    color: var(--gold-light);
}

.btn-outline:hover {
    background: rgba(201, 162, 90, 0.12);
    color: #ffffff;
    border-color: var(--gold-bright);
    transform: translateY(-3px);
}

/* Header Sticky */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-normal);
    background: rgba(13, 8, 5, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-gold);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    max-width: 270px;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
    transform: scale(1.02);
}

.footer-brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.footer-location-tag {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
}

.mobile-logo-img {
    height: 80px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.hamburger-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--gold-bright);
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(13, 8, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right var(--transition-normal);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active { right: 0; }

.mobile-menu-content {
    width: 85%;
    max-width: 360px;
    height: 100%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-dark-700);
    border-left: 1px solid var(--border-gold);
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gold-bright);
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--text-main);
}

/* Hero Section (2 Columnas en Escritorio) */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #0d0805 0%, #1a1008 50%, #0f0906 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 101, 29, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: center;
    width: 100%;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* Tagline Superior */
.hero-top-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-top-tagline .tagline-line {
    width: 38px;
    height: 1px;
    background-color: var(--gold-primary);
}

.hero-top-tagline .tagline-text {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

/* Título H1 - Hero */
.hero-title-v2 {
    font-family: var(--font-serif);
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-align: left;
}

.hero-title-v2 .title-gold-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright);
}

/* Descripción */
.hero-description-v2 {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Títulos centrados en páginas sin imagen (masajistas, contacto, servicios) */
.masajistas-hero-content .hero-title-v2 {
    text-align: center;
}

.masajistas-hero-content .hero-description-v2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Lista de Viñetas */
.hero-bullets-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-bullets-v2 li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--text-main);
    font-weight: 500;
}

.hero-bullets-v2 .diamond-icon {
    color: var(--gold-bright);
    font-size: 0.9rem;
}

/* Texto Promoción */
.hero-promo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

/* Botones Acción */
.hero-actions-v2 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-hero-wa {
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-hero-phone {
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    font-size: 0.88rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.hero-right-media {
    position: relative;
    width: 100%;
    align-self: stretch;
    overflow: visible;
}

.hero-image-frame {
    position: relative;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #0d0805 0%, #1a1008 50%, #0f0906 100%);
}

.hero-image-frame img,
.hero-image-frame picture {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    object-position: top center;
    display: block;
    animation: floatingImage 4s ease-in-out infinite;
}

/* Animación de flotación suave para la imagen */
@keyframes floatingImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Sección ¿Cómo Funciona? */
.how-it-works-section {
    background-color: var(--bg-dark-900);
    padding: 5.5rem 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.how-top-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.how-main-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.how-main-title .title-gold-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright);
}

.how-title-line {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 0 auto 1.4rem auto;
}

.how-sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.how-step-card {
    background: var(--bg-dark-700);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 2.8rem 1.8rem;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-step-card:hover {
    border-color: var(--gold-bright);
    background: var(--bg-dark-600);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.how-step-number {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.8rem;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

.how-step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.how-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Sección Nuestras Terapeutas (Galería Vertical Full-Width) */
.therapists-section {
    background: #0a0604;
    padding: 4.5rem 0 0;
}

.therapists-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.therapists-header-left {
    flex: 1;
}

.therapists-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.therapists-main-title {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.therapists-main-title .title-gold-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright);
}

.therapists-header-right {
    flex-shrink: 0;
}

.btn-therapist-cta {
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    padding: 0.75rem 1.8rem;
    white-space: nowrap;
}

/* CAROUSEL DE MASAJISTAS */
.therapists-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.therapists-carousel-container {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    /* direction: ltr forzado: el JS calcula translateX físico (LTR);
       en árabe (RTL) el grid invertiría el orden y rompería el carrusel. */
    direction: ltr;
}

.therapists-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 0px); /* 5 masajistas visibles en desktop */
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    align-items: stretch;
    /* Explícito (no solo heredado): el orden de las tarjetas y el translateX
       del JS son físicos/LTR; forzar aquí también evita cualquier duda de
       herencia de "direction" en árabe (RTL). */
    direction: ltr;
}

.therapist-gallery-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.therapist-gallery-card:hover .therapist-card-img {
    transform: scale(1.06);
}

.therapist-gallery-card:hover .therapist-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 70%);
}


.therapist-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
}

/* Voltear imágenes de Darlyn y Luna (espejo horizontal) */
.therapist-gallery-card[data-therapist="darlyn"] .therapist-card-img,
.therapist-gallery-card[data-therapist="luna"] .therapist-card-img {
    transform: scaleX(-1);
}

.therapist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem 1.2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.therapist-card-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.therapist-card-role {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Barra Inferior: "VER TODAS LAS MASAJISTAS →" */
.therapists-bottom-bar {
    padding: 1.2rem 0;
    border-top: 1px solid var(--border-gold);
    margin-top: 0;
}

.therapists-view-all-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}

.therapists-view-all-link:hover {
    color: var(--gold-bright);
}


/* Sección Servicios de Spa - Versión 5: TABS */
.services-section {
    background: var(--bg-dark-900);
}

/* TABS - Botones de servicios */
.services-tabs-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.services-tab-btn {
    padding: 0.9rem 1.6rem;
    background: var(--bg-dark-700);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.services-tab-btn:hover {
    border-color: var(--gold-bright);
    color: var(--gold-light);
}

.services-tab-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-dark-900);
    border-color: var(--gold-bright);
    box-shadow: 0 6px 20px rgba(201, 162, 90, 0.35);
}

/* VIP Tab Especial */
.services-tab-btn[data-tab="vinoterapia"].active {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: vipTabGlow 1.5s ease-in-out infinite;
}

@keyframes vipTabGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}

.services-tab-btn[data-tab="vinoterapia"]:not(.active) {
    border-color: var(--gold-bright);
    color: var(--gold-light);
    font-weight: 700;
}

/* CONTENIDO DE TABS */
.services-content-box {
    background: var(--bg-dark-700);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 550px;
}

.services-tab-content {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 2.5rem;
    animation: fadeIn 0.4s ease-in;
    align-items: stretch;
}

.services-tab-content.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.services-content-left {
    display: flex;
    flex-direction: column;
}


.services-content-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.services-media-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: var(--bg-dark-900);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.services-media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.services-media-container:hover .services-media-image {
    transform: scale(1.04);
}

.services-media-video {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.services-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 3rem;
}

.services-media-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold-gradient);
    color: var(--bg-dark-900);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}


.services-content-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.services-content-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.services-content-features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.services-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: var(--text-main);
    font-size: 0.98rem;
}

.services-feature-check {
    color: var(--gold-bright);
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.services-content-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
    margin-top: auto;
}

.services-content-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.services-content-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.services-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.services-info-icon {
    font-size: 1.3rem;
}

/* ESTILOS VIP PREMIUM */
.vip-section {
    position: relative;
}

.vip-badge-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-primary) 100%);
    color: var(--bg-dark-900);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: vipPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes vipPulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}

.vip-title {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.vip-desc {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.8;
    border-left: 3px solid var(--gold-bright);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-content-box {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .services-tab-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .services-media-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    /* HERO - Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-left-content {
        order: 1;
    }

    .hero-right-media {
        order: 2;
        display: block !important;
        margin-top: 2rem;
    }

    .hero-title-v2 {
        text-align: center;
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-description-v2 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-top-tagline {
        justify-content: center;
    }

    .hero-bullets-v2 {
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .hero-actions-v2 {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-hero-wa,
    .btn-hero-phone {
        width: 100%;
        max-width: 300px;
    }

    /* SERVICES TABS - Mobile */
    .services-tabs-container {
        gap: 0.4rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .services-tab-btn {
        padding: 0.6rem 0.85rem;
        font-size: 0.7rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .services-content-box {
        padding: 1rem;
        gap: 0.8rem;
        min-height: auto;
    }

    .services-tab-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-content-title {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .services-content-desc {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .services-content-features {
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }

    .services-content-actions {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
        padding-top: 0.8rem;
    }

    .services-content-price {
        font-size: 1.6rem;
    }

    .services-feature-item {
        font-size: 0.9rem;
    }

    .services-media-container {
        min-height: 250px;
    }
}

.services-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services-header-tagline {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2.2rem;
    margin-bottom: 2.8rem;
    font-weight: 600;
}

.service-card-mock {
    background: var(--bg-dark-700);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    position: relative;
}

.service-card-mock:hover {
    border-color: var(--gold-bright);
    background: var(--bg-dark-600);
    transform: translateY(-4px);
}

.service-card-vip-mock {
    border-color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(48, 28, 20, 0.95) 100%);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card-vip-mock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    animation: vipShine 3s infinite;
    pointer-events: none;
}

@keyframes vipShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Animación de entrada para el grid de masajistas */
@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sección "Ven Visitanos" */
.visit-us-section {
    background: var(--bg-dark-900);
    padding: 3rem 0;
}

.visit-us-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.visit-us-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.visit-us-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Carousel con Movimiento Continuo */
/* direction: ltr forzado para que el loop infinito (translateX) funcione
   igual en árabe (RTL): son solo fotos, no hay texto que deba invertirse. */
.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 2.5rem;
    direction: ltr;
}

.carousel-track {
    display: flex;
    gap: 0;
    animation: scrollCarousel 30s linear infinite;
    /* Explícito (no solo heredado del contenedor): evita que el orden de
       las fotos se invierta en árabe (RTL). */
    direction: ltr;
}

.carousel-slide {
    flex-shrink: 0;
    width: 240px;
    height: 480px;
    overflow: hidden;
    border-radius: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

/* Animación de movimiento continuo */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicar items para loop infinito */
.carousel-track {
    width: 200%;
}

.visit-us-cta {
    text-align: center;
}

.visit-us-cta .btn {
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
}


/* Controles del Carousel - Debajo */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

/* Estilos del Carousel */
.carousel-arrow {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-primary));
    color: var(--bg-dark-900);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 162, 90, 0.3);
    border: 1.5px solid var(--gold-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold-bright);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
    transform: scale(1.4);
}

.carousel-dot:hover {
    background: var(--gold-primary);
}

.service-badge-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(201, 162, 90, 0.15);
    color: var(--gold-bright);
    border: 1px solid var(--border-gold);
    margin-bottom: 0.6rem;
    width: fit-content;
}

.service-session-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.service-icon-header {
    margin-bottom: 1rem;
    color: var(--gold-bright);
}

.service-mock-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-mock-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.2rem;
    min-height: 52px;
}

.service-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 90, 0.18);
}

.service-price-amount {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-bright);
}

/* Card del Formulario Integrado (Escucha a tu cuerpo) */
.booking-form-mock-card {
    background: var(--bg-dark-700);
    border: 1px solid var(--border-gold-bright);
    border-radius: var(--radius-sm);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-card);
}

.form-mock-title {
    font-family: var(--font-script);
    color: var(--gold-light);
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
}

.form-mock-group {
    margin-bottom: 1.1rem;
}

.form-mock-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(13, 8, 5, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.88rem;
}

.form-mock-control:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Footer Callout Bar & Floating WhatsApp Pill */
.footer-callout-bar {
    background: var(--bg-dark-900);
    border-top: 1px solid var(--border-gold);
    padding: 2.5rem 0;
    text-align: center;
}

.callout-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.callout-sub {
    font-size: 0.88rem;
    color: var(--gold-primary);
}

/* SECCIÓN DE VIDEOS */
.videos-section {
    background: var(--bg-dark-900);
    padding: 4rem 0;
    border-top: 1px solid var(--border-gold);
}

.videos-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-8px);
}

.video-item iframe {
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 2.5rem 0;
    }

    .videos-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-item {
        padding-bottom: 56.25%;
        position: relative;
        overflow: hidden;
    }

    .video-item iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* FOOTER MEJORADO */
.site-footer {
    background: linear-gradient(180deg, #0a0604 0%, #080503 100%);
    border-top: 1px solid rgba(201, 162, 90, 0.2);
    padding: 3.5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    list-style: none;
}

.footer-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-list a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: var(--gold-bright);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 162, 90, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        height: 65px;
        margin: 0 auto 0.5rem auto;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-list li {
        font-size: 0.85rem;
    }
}

/* Botón Flotante Fijo WhatsApp (Pill Verde de la Maqueta) */
.whatsapp-float-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25D366 0%, #20c344 100%);
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 99999;
    transition: all var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.whatsapp-float-pill:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0);
    animation: none;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-icon-bg {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* VIDEOS CARRUSEL */
.videos-showcase-section {
    background: var(--bg-dark-900);
    padding: 5rem 0;
}

.videos-header-text {
    text-align: center;
    margin-bottom: 3.5rem;
}

.videos-header-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.videos-header-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DESKTOP: GRID DE 3 VIDEOS */
.videos-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.videos-carousel-container {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    /* direction: ltr forzado: en mobile este carrusel desliza con translateX
       físico calculado por JS; en árabe (RTL) se invertiría el orden. */
    direction: ltr;
}

.videos-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    /* Explícito (no solo heredado del contenedor): evita que el orden de
       los videos se invierta en árabe (RTL). */
    direction: ltr;
}

.video-slide {
    width: 100%;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 9 / 16 !important;
}

.video-box:hover {
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    aspect-ratio: 9 / 16 !important;
    object-fit: cover;
}

/* BOTONES DE NAVEGACIÓN - SOLO MOBILE */
.carousel-nav-btn {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--border-gold);
    color: var(--gold-bright);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--gold-bright);
    transform: scale(1.1);
}

.carousel-nav-btn svg {
    stroke: var(--gold-bright);
}

/* PUNTOS INDICADORES - VIDEOS SOLO MOBILE */
.videos-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.8rem;
}

.videos-carousel-dots .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--border-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.videos-carousel-dots .carousel-dot.active {
    background: var(--gold-bright) !important;
    border-color: var(--gold-bright);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

.videos-carousel-dots .carousel-dot:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .videos-header-text {
        margin-bottom: 2.5rem;
    }

    .videos-header-title {
        font-size: 2.3rem;
    }

    .videos-carousel-wrapper {
        gap: 1rem;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .videos-showcase-section {
        padding: 3rem 0;
    }

    .videos-header-text {
        margin-bottom: 2.5rem;
    }

    .videos-header-title {
        font-size: 1.8rem;
    }

    .videos-header-subtitle {
        font-size: 0.95rem;
    }

    /* MOBILE: CARRUSEL CON CONTROLES */
    .videos-carousel-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
        width: 100%;
    }

    .videos-carousel-container {
        display: flex;
        flex: 1;
        max-width: 100%;
        min-height: auto;
        overflow: hidden;
        border-radius: 16px;
    }

    .videos-carousel-track {
        display: flex !important;
        grid-template-columns: unset !important;
        gap: 0 !important;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
    }

    .video-slide {
        display: flex;
        flex: 0 0 100%;
        justify-content: center;
    }

    .video-box {
        width: 90vw;
        max-width: 640px;
        aspect-ratio: 9 / 16 !important;
    }

    /* MOSTRAR CONTROLES EN MOBILE */
    .carousel-nav-btn {
        display: flex;
        width: 40px;
        height: 40px;
        background: rgba(212, 175, 55, 0.3);
    }

    .carousel-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .videos-carousel-dots {
        display: flex;
        gap: 0.6rem;
    }

    .videos-carousel-dots .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* SECCIÓN DE CONTACTO PRINCIPAL */
.contact-cta-section {
    background: linear-gradient(135deg, #0d0805 0%, #1a1008 50%, #0f0906 100%);
    padding: 6rem 0;
    text-align: center;
}

.contact-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.contact-cta-tagline {
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 0.2rem;
}

.contact-cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.contact-cta-accent {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 400;
    display: block;
}

.contact-cta-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
}

.contact-cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    margin-bottom: 1.4rem;
    line-height: 1.8;
}

.btn-whatsapp-large {
    background: #25D366;
    color: #ffffff;
    border: none;
    gap: 0.8rem;
    padding: 1.3rem 2.8rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
}

.btn-whatsapp-large:hover {
    background: #20ba58;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 3rem 0;
    }

    .contact-cta-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .contact-cta-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .contact-cta-number {
        font-size: 2rem;
        margin-bottom: 0.6rem;
    }

    .contact-cta-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .btn-whatsapp-large {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

/* MODAL GALERÍA DE MASAJISTAS */
.therapist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.therapist-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

.therapist-modal-content {
    position: relative;
    background: var(--bg-dark-700);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.therapist-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gold-bright);
    font-size: 3rem;
    cursor: pointer;
    transition: color var(--transition-normal);
    line-height: 1;
}

.therapist-modal-close:hover {
    color: #ffffff;
}

.therapist-modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.therapist-modal-carousel {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    aspect-ratio: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark-900);
}

.therapist-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.therapist-modal-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.therapist-modal-role {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.therapist-modal-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.8rem;
    border-left: 2px solid var(--gold-primary);
    padding-left: 1rem;
}

.therapist-modal-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.therapist-modal-prev,
.therapist-modal-next {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold-bright);
    color: var(--gold-light);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.therapist-modal-prev:hover,
.therapist-modal-next:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark-900);
    border-color: var(--gold-bright);
}

.therapist-modal-counter {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
}

.therapist-modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gold);
}

.therapist-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.therapist-detail-label {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.therapist-detail-value {
    color: var(--text-main);
    font-size: 0.95rem;
}

.therapist-modal-services {
    margin-bottom: 2rem;
}

.therapist-services-title {
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.therapist-services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.therapist-services-list li {
    color: var(--text-main);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.therapist-services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-bright);
    font-weight: 700;
}

.therapist-modal-contact-section {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--gold-bright);
    border-bottom: 2px solid var(--gold-bright);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.therapist-contact-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
}

.therapist-contact-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-whatsapp-cta {
    background: #25D366;
    color: #ffffff;
    border: none;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-whatsapp-cta:hover {
    background: #20ba58;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .therapist-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .therapist-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .therapist-modal-name {
        font-size: 1.6rem;
    }
}

/* RESPONSIVE DESIGN BREAKPOINTS - MOBILE */
@media (max-width: 768px) {
    /* === HERO SECTION === */
    .hero-section {
        padding-top: 85px !important;
        padding-bottom: 2rem !important;
        min-height: unset !important;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        align-items: stretch !important;
    }

    .hero-left-content {
        width: 100% !important;
        text-align: center !important;
        padding: 0 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-top-tagline {
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-title-v2 {
        text-align: center !important;
        width: 100% !important;
    }

    .hero-description-v2 {
        text-align: center !important;
        width: 100% !important;
    }

    .hero-bullets-v2 {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-bullets-v2 li {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 0.4rem !important;
    }

    .hero-promo-text {
        text-align: center !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        padding: 0 0.5rem !important;
        width: 100% !important;
    }

    .hero-actions-v2 {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-actions-v2 a,
    .hero-actions-v2 button {
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
        white-space: nowrap !important;
        letter-spacing: 0.5px !important;
    }

    /* Imagen hero visible debajo del texto */
    .hero-right-media {
        display: block !important;
        order: 2 !important;
        width: 100% !important;
        max-height: unset !important;
        margin-top: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .hero-image-frame {
        height: 420px !important;
        width: 100% !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        box-shadow: var(--shadow-card), 0 0 40px rgba(181, 101, 29, 0.2) !important;
    }

    .hero-image-frame picture {
        display: block !important;
    }

    .hero-image-frame img,
    .hero-image-frame video {
        width: 100% !important;
        height: 100% !important;
        max-height: unset !important;
        max-width: unset !important;
        object-fit: cover !important;
        object-position: top center !important;
    }

    /* CAROUSEL - Mobile SOLO */
    .carousel-container {
        display: flex;
        justify-content: center;
        overflow: hidden;
        margin-bottom: 2.5rem;
    }

    .carousel-track {
        animation: scrollCarousel 30s linear infinite;
        width: 200%;
    }

    .carousel-slide {
        width: 200px;
        height: 400px;
        flex-shrink: 0;
    }

    .visit-us-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .therapists-carousel-container {
        height: 350px;
    }

    .services-layout-split { grid-template-columns: 1fr; }
    .main-nav { display: none !important; }
    .header-cta .btn { display: none !important; }
    .hamburger-btn { display: flex !important; }
    .hero-features-row { grid-template-columns: 1fr; gap: 1.2rem; }
    .services-grid-inner { grid-template-columns: 1fr; }

    .mockup-heading {
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .mockup-heading-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
        white-space: normal;
        line-height: 1.3;
    }

    .mockup-line {
        max-width: 100px;
    }

    .services-header-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-top: -1.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom-row { flex-direction: column; gap: 1.5rem; text-align: center; }
    .brand-logo-img { height: 38px; max-width: 200px; }

    /* COMPACTAR SECCIÓN "CÓMO FUNCIONA" */
    .how-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .how-main-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .how-sub-text {
        margin-bottom: 2rem;
    }

    .how-step-card {
        padding: 1.8rem 1.2rem;
    }

    .how-step-number {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }

    .how-step-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .how-step-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .therapists-carousel-track {
        grid-auto-columns: calc(50% - 0px); /* 2 masajistas en mobile */
    }
    .therapists-header-row { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .therapists-main-title { font-size: 1.8rem; }

    .services-content-title {
        font-size: 1.6rem;
    }

    .contact-cta-title {
        font-size: 2rem;
    }

    .contact-cta-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .therapists-carousel-track {
        grid-auto-columns: calc(50% - 0px); /* 2 masajistas en mobile */
    }

    .carousel-dots {
        display: none !important;
    }

    .brand-logo-img {
        height: 32px;
        max-width: 160px;
    }

    .hero-title-v2 {
        font-size: 1.8rem;
    }

    .how-main-title {
        font-size: 1.6rem;
    }

    .services-content-title {
        font-size: 1.4rem;
    }

    .contact-cta-title {
        font-size: 1.6rem;
    }

    .contact-cta-number {
        font-size: 1.8rem;
    }

    .videos-header-title {
        font-size: 1.6rem;
    }
}

/* PÁGINA MASAJISTAS - GALERÍA MEJORADA */
.masajistas-hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.masajistas-gallery-section {
    background: var(--bg-dark-800);
    padding: 5rem 0;
}

.masajistas-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.masajista-card-enhanced {
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.8) 0%, rgba(28, 18, 12, 0.9) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.masajista-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-bright);
}

.masajista-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--bg-dark-900);
}

.masajista-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.masajista-card-enhanced:hover .masajista-card-image img {
    transform: scale(1.08);
}

.masajista-card-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.masajista-card-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.masajista-specs {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1.2rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.masajista-services {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.service-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.masajista-bio-preview {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.masajista-card-enhanced .btn {
    margin-top: auto;
}

/* SECCIÓN TESTIMONIOS */
.testimonials-section {
    background: linear-gradient(135deg, #0d0805 0%, #1a1008 50%, #0f0906 100%);
    padding: 5rem 0;
    border-top: 1px solid var(--border-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.8) 0%, rgba(28, 18, 12, 0.9) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-bright);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.testimonial-service {
    color: var(--gold-light);
    font-size: 0.85rem;
    margin: 0;
}

/* RESPONSIVE MASAJISTAS */
@media (max-width: 1024px) {
    .masajistas-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .masajistas-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .masajista-card-image {
        height: 300px;
    }

    .testimonials-grid {
        gap: 1.5rem;
    }
}

/* PÁGINA CONTACTO */

/* Info Quick en Hero */
.contact-info-quick {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.info-item {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold-bright);
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
}

.info-label {
    display: block;
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Galería Ambiente */
.ambiente-gallery-section {
    background: var(--bg-dark-800);
    padding: 5rem 0;
}

.ambiente-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 220px;
}

.ambiente-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-normal);
}

.ambiente-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.ambiente-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.ambiente-item:hover img {
    transform: scale(1.08);
}

.ambiente-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
    padding: 1.5rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Details */
.contact-details-section {
    background: var(--bg-dark-900);
    padding: 5rem 0;
    border-top: 1px solid var(--border-gold);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    height: 400px;
}

.contact-info-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    grid-column: 1 / -1;
}

.info-block {
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.5) 0%, rgba(28, 18, 12, 0.7) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
}

.info-block h4 {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.info-block a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-block a:hover {
    color: #ffffff;
}

.info-block.cta-block {
    grid-column: 1 / -1;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: var(--border-gold);
    color: var(--bg-dark-900);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

.cta-block {
    margin-top: auto;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, var(--bg-dark-800) 0%, rgba(13, 8, 5, 0.8) 100%);
    padding: 5rem 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.6) 0%, rgba(28, 18, 12, 0.8) 100%);
    padding: 3.5rem;
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 6, 3, 0.8) 0%, rgba(15, 9, 6, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

/* Custom Select */
.custom-select {
    position: relative;
}

.custom-select-btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, rgba(10, 6, 3, 0.8) 0%, rgba(15, 9, 6, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.custom-select-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(10, 6, 3, 0.9) 0%, rgba(15, 9, 6, 0.95) 100%);
}

.custom-select-btn:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.custom-select-btn.active {
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.custom-select-icon {
    color: var(--gold-bright);
    font-size: 0.75rem;
    transition: transform var(--transition-normal);
}

.custom-select-btn.active .custom-select-icon {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.98) 0%, rgba(28, 18, 12, 0.98) 100%);
    border: 1.5px solid var(--gold-bright);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    z-index: 100;
}

.custom-select-options.active {
    max-height: 300px;
    overflow-y: auto;
}

.custom-option {
    padding: 1rem 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-bright);
    padding-left: 2rem;
}

.custom-option.selected {
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold-bright);
    font-weight: 600;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(10, 6, 3, 0.9) 0%, rgba(15, 9, 6, 0.95) 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.8) 0%, rgba(25, 15, 10, 0.9) 100%);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-sans);
    min-height: 150px;
}

/* Botón del Formulario */
.contact-form button[type="submit"] {
    grid-column: 1 / -1;
    padding: 1.3rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-bright) 100%);
    color: var(--bg-dark-900);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-bright) 0%, #fff9e6 100%);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

/* RESPONSIVE CONTACTO */
@media (max-width: 1024px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-detailed {
        grid-template-columns: 1fr;
    }

    .ambiente-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ambiente-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 1rem;
    }

    .ambiente-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-map {
        height: 350px;
    }

    .contact-form-section {
        padding: 2rem 1rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .form-group label {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .contact-form button[type="submit"] {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* PÁGINA SERVICIOS */

/* Stats en Hero */
.services-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.5) 0%, rgba(28, 18, 12, 0.7) 100%);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat:hover {
    border-color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(30, 18, 12, 0.7) 0%, rgba(38, 24, 16, 0.9) 100%);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

.stat:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Grid de Servicios Detallados */
.services-detailed-section {
    background: var(--bg-dark-800);
    padding: 5rem 0;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.8) 0%, rgba(28, 18, 12, 0.9) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-bright);
}

.service-card-header {
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(48, 28, 20, 0.5) 100%);
    border-bottom: 1px solid var(--border-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.vip-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(181, 101, 29, 0.15) 100%);
}

.vip-price {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-dark-900);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-card-detailed:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--gold-light);
}

.vip-service {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
}

/* RESPONSIVE SERVICIOS */
@media (max-width: 1024px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .vip-service {
        grid-column: span 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card-detailed {
        margin: 0 auto;
        max-width: 100%;
    }

    .vip-service {
        max-width: 100%;
    }
}

/* SECCIÓN PREGUNTAS FRECUENTES - DISEÑO PREMIUM */
.faq-section {
    background: linear-gradient(135deg, #0d0805 0%, #1a1008 50%, #0f0906 100%);
    padding: 5rem 0 4rem;
    border-top: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181, 101, 29, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: linear-gradient(135deg, rgba(20, 13, 9, 0.8) 0%, rgba(28, 18, 12, 0.9) 100%);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.9) 0%, rgba(35, 22, 16, 1) 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15), 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-4px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: var(--gold-bright);
    background: linear-gradient(135deg, rgba(35, 22, 16, 1) 0%, rgba(30, 20, 15, 0.95) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    width: 100%;
    padding: 1.8rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    color: var(--gold-bright);
    font-size: 1.8rem;
    font-weight: 300;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    margin-top: 3px;
}

.faq-item:hover .faq-icon {
    color: #ffffff;
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-bright);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 1.5rem 1.8rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.85;
    margin: 0;
}

.faq-answer strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0 3rem;
    }

    .faq-grid {
        gap: 1.2rem;
    }

    .faq-question {
        padding: 1.4rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-icon {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }

    .faq-answer p {
        padding: 1.2rem 1.4rem;
        font-size: 0.93rem;
        line-height: 1.8;
    }

}
/* ==========================================================================
   FIX HERO — D'valenz Spa
   Pegar al FINAL de styles.css (después de todo lo demás)
   ========================================================================== */


/* ---------- ESCRITORIO (769px en adelante) ---------- */
@media (min-width: 769px) {

  .hero-section {
    min-height: 0 !important;
    box-sizing: border-box !important;
    padding-top: 110px !important;
    padding-bottom: 60px !important;
    overflow: hidden !important;
  }

  .hero-grid {
    align-items: center !important;
  }

  /* La columna de texto define la altura.
     La imagen va absoluta para no poder estirarla. */
  .hero-right-media {
    position: relative !important;
    align-self: stretch !important;
    min-height: 400px !important;
    overflow: hidden !important;

    /* Difuminado izquierdo + inferior: funde la imagen con el fondo */
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 22%),
      linear-gradient(to bottom, #000 88%, transparent 100%) !important;
    -webkit-mask-composite: source-in !important;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 22%),
      linear-gradient(to bottom, #000 88%, transparent 100%) !important;
    mask-composite: intersect !important;
  }

  .hero-image-frame {
    position: absolute !important;
    inset: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  .hero-image-frame picture {
    display: contents !important;
  }

  .hero-image-frame img {
    height: 100% !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center right !important;
    display: block !important;
  }
}


/* ---------- CELULAR (768px hacia abajo) ---------- */
@media (max-width: 768px) {

  .hero-right-media {
    border-radius: 0 !important;
    overflow: visible !important;

    /* Solo difuminado inferior */
    -webkit-mask-image: linear-gradient(to bottom, #000 95%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, #000 95%, transparent 100%) !important;
  }

  /* Sin altura fija: la caja toma la proporción real de la imagen */
  .hero-image-frame {
    height: auto !important;
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .hero-image-frame picture {
    display: block !important;
  }

  /* contain en vez de cover: no recorta nada */
  .hero-image-frame img,
  .hero-image-frame video {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
  }
}

/* ===== LANGUAGE SELECTOR ===== */
.language-select {
    background: transparent;
    border: 1px solid rgba(181, 101, 29, 0.5);
    color: var(--gold-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1.5rem;
}

.language-select:hover {
    border-color: var(--gold-bright);
    background: rgba(181, 101, 29, 0.1);
}

.language-select option {
    background: #0d0805;
    color: var(--gold-light);
    padding: 0.8rem;
}

@media (max-width: 768px) {
    .language-select {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-right: 1rem;
    }
}

/* ===== ARABIC RTL - Image Flip Desktop Only ===== */
@media (min-width: 769px) {
  html[lang="ar"] .hero-image-frame img {
    transform: scaleX(-1) !important;
  }
}
