:root {
    --primary: #4a3425; /* Deeper Dark Brown */
    --secondary: #f0e6ce; /* Warmer Beige/Cream */
    --accent: #dca098; /* Soft Blush Pink */
    --gold: #cba865; /* Richer Soft Gold */
    --light: #fdfaf5; /* Off white / Ivory */
    --text: #3d3d3d;
    --text-muted: #6b6b6b;
    --white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(74, 52, 37, 0.08);
    --shadow-medium: 0 15px 35px rgba(74, 52, 37, 0.15);
    --shadow-glow: 0 0 25px rgba(220, 160, 152, 0.3);
    --radius-md: 14px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .logo-text {
    font-family: var(--font-heading);
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.separator {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 25px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255,255,255,0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #322318);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(74, 52, 37, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(74, 52, 37, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #e3b0a9);
    color: var(--white);
    box-shadow: var(--shadow-glow);
    border: none;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 160, 152, 0.5);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(253, 250, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-menu ul {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('assets/img/hero_bg_1774675944265.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(253, 250, 245, 0.4) 0%, rgba(253, 250, 245, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 0 5%;
    margin-top: 50px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 35px;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services section */
.services {
    background-color: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::after {
    box-shadow: inset 0 0 0 2px var(--gold);
}

.card-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(74, 52, 37, 0.9), transparent);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.card-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.service-card:hover .card-overlay h3 {
    transform: translateY(0);
}

.card-body {
    padding: 30px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.discover-btn {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card:hover .discover-btn i {
    transform: translateX(5px);
}

.facial-bg { background-image: url('assets/img/facial_treatment_1774676008469.png'); }
.body-bg { background-image: url('assets/img/body_treatment_1774676204284.png'); }
.massage-bg { background-image: url('assets/img/massage_spa_1774676218665.png'); }


/* OFFERS SECTION (NEW) */
.offers {
    background-image: radial-gradient(circle at right center, rgba(220, 160, 152, 0.05), transparent 40%),
                      var(--secondary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(203, 168, 101, 0.2);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 160, 152, 0.2);
    border-color: var(--gold);
}

.offer-tag {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), #b39045);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(203, 168, 101, 0.4);
}

.offer-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.offer-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex: 1;
}

.offer-price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-body);
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(203, 168, 101, 0.3);
}

/* MODAL SYSTEM & ACCORDIONS (WOW Factor) */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1; visibility: visible;
}

.modal-container {
    background-color: var(--white);
    width: 95%; max-width: 1100px;
    height: 90vh; /* Fixed height to allow scrolling inside */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: grid;
    grid-template-columns: 2fr 3fr; /* Text side is wider now for accordions */
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px; right: 25px;
    background: rgba(255,255,255,0.9);
    /* ... omitted to reduce diff map. Just prepend Club classes */
}

/* Modal Club Extra Layout */
.club-modal-container {
    background: var(--white);
    max-width: 480px;
    width: 90%;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}
.modal-overlay.active .club-modal-container { transform: translateY(0) scale(1); opacity: 1; }
.club-modal-content {
    padding: 50px 40px;
    text-align: center;
}
.club-logo {
    height: 70px;
    margin-bottom: 25px;
    filter: sepia(100%) hue-rotate(5deg) saturate(200%) drop-shadow(0 2px 4px rgba(203,168,101,0.2));
}
.club-title { font-size: 2.2rem; color: var(--primary); margin-bottom: 15px; font-family: var(--font-heading); }
.club-desc { color: var(--text-color); margin-bottom: 30px; line-height: 1.7; font-size: 1.05rem; }
.club-desc strong { color: var(--gold); }
.club-warning-msg { margin-top: 20px; font-size: 0.95rem; font-weight: 600; }

.modal-close {
    position: absolute;
    top: 20px; right: 25px;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.modal-image {
    background-size: cover;
    background-position: center;
    height: 100%;
}

.modal-img-facial { background-image: url('assets/img/serene_peace_1774677305935.png'); }
.modal-img-body { background-image: url('assets/img/body_treatment_1774676204284.png'); filter: brightness(1.1); }
.modal-img-massage { background-image: url('assets/img/massage_spa_1774676218665.png'); }

.modal-content {
    padding: 50px 40px;
    background-color: var(--white);
    overflow-y: auto; /* Scrollable region for Accordions */
    height: 100%;
}

.modal-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* ACCORDIONS DYNAMICS */
.luxury-accordion {
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    border-radius: var(--radius-md);
    background: var(--light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.luxury-accordion[open] {
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: rgba(203, 168, 101, 0.5);
    background: var(--white);
}

.luxury-accordion summary {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide arrow */
}

.luxury-accordion summary::-webkit-details-marker {
    display: none;
}

.acc-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-heading);
}

.acc-icon {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.luxury-accordion[open] .acc-icon {
    transform: rotate(180deg);
}

.acc-content {
    padding: 0 25px 25px;
    animation: sweep 0.3s ease-in-out;
}

@keyframes sweep {
    0%    {opacity: 0; transform: translateY(-10px)}
    100%  {opacity: 1; transform: translateY(0)}
}

.modal-price {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.accordion-variants {
    background: rgba(203, 168, 101, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.accordion-variants ul li {
    padding: 4px 0;
    border-bottom: 1px dashed rgba(203, 168, 101, 0.3);
    color: var(--primary);
}

.accordion-variants ul li:last-child {
    border-bottom: none;
}

.acc-short {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 500;
}

.acc-h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 20px 0 10px;
    display: flex; align-items: center; gap: 8px;
    color: var(--primary);
}

.acc-h4 i { color: var(--gold); }

.acc-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.acc-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
    color: var(--text-muted);
}
.acc-content ul li::before {
    content: '•';
    color: var(--accent);
    position: absolute; left: -10px;
}

.acc-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.acc-promo-box {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(220, 160, 152, 0.15), transparent);
    border-left: 4px solid var(--accent);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    color: var(--primary);
}


/* Booking & Payments */
.booking {
    background-image: linear-gradient(135deg, var(--white) 0%, rgba(253, 250, 245, 1) 100%);
    position: relative;
}

.booking-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.booking-card, .payment-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 168, 101, 0.2);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form-group { margin-bottom: 25px; }
.form-row { display: flex; gap: 20px; }
.half { width: 50%; }

label {
    display: block; margin-bottom: 12px;
    font-weight: 500; color: var(--primary); font-size: 0.95rem;
}
label i { color: var(--accent); margin-right: 8px; }

input, select {
    width: 100%; padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 1rem;
    outline: none; transition: all 0.3s ease;
    background-color: var(--light); color: var(--text);
}

input:focus, select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(203, 168, 101, 0.15);
}

.payment-card {
    background: var(--light);
}

.payment-header { text-align: center; margin-bottom: 30px; }
.payment-header i { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }

.payment-summary {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 25px; margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.summary-row {
    display: flex; justify-content: space-between;
    margin-bottom: 15px; color: var(--text-muted);
}
.summary-row.item { font-weight: 500; color: var(--text); }
.summary-row.deposit {
    font-weight: 700; color: var(--primary); font-size: 1.3rem;
    border-top: 2px dashed rgba(203, 168, 101, 0.3);
    padding-top: 20px; margin-top: 10px; align-items: center;
}

.deposit-badge {
    background-color: var(--accent); color: var(--white);
    font-size: 0.7rem; padding: 3px 8px; border-radius: 10px;
    text-transform: uppercase; margin-left: 10px; vertical-align: middle;
}

.payment-info {
    font-size: 0.9rem; margin-bottom: 25px; text-align: center;
    padding: 10px; border-radius: 8px;
}

.payment-gateways { display: flex; gap: 15px; margin-bottom: 30px; }

.gateway-logo {
    flex: 1; border: 1px solid #ddd; border-radius: var(--radius-md);
    padding: 15px; text-align: center; font-weight: 600;
    color: var(--primary); background-color: var(--white);
    transition: all 0.3s ease; cursor: pointer;
}

.gateway-logo:hover, .gateway-logo.active {
    border-color: var(--gold); background-color: #fffaf0;
    transform: translateY(-2px); box-shadow: 0 5px 15px rgba(203, 168, 101, 0.15);
}

/* ====== SOCIAL FEED ====== */
.social-feed-section { background: var(--bg-color); }
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feed-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.feed-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feed-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.feed-card:hover img { transform: scale(1.1); }
.feed-card:hover .feed-overlay { opacity: 1; }
.feed-card:hover .feed-overlay i { transform: translateY(0); }

/* Clip hack para cortar el logo de Elfsight insertado abajo (Targeting la clase generada en runtime) */
.es-embed-root,
[class*="es-embed-root"],
[class*="eapps-tiktok-feed"] {
    clip-path: inset(0px 0px 40px 0px) !important;
    margin-bottom: -40px !important;
}

/* Hacer invisibles las marcas de agua de Elfsight evitando que se lleven al usuario de la página */
[class*="elfsight-app"] ~ a,
[class*="elfsight-app"] + div,
.eapps-link,
a[href*="elfsight.com"],
a[href*="elfsight"] {
    display: none !important;
    pointer-events: none !important;
}

/* Footer */
.footer {
    background-color: var(--primary); color: var(--secondary);
    padding-top: 100px; position: relative;
}

.footer::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--accent), var(--gold));
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 80px;
}
.footer-logo { height: 120px; width: auto; margin-bottom: 25px; display: inline-block; filter: brightness(0) invert(1); opacity: 0.9; }
.footer p { color: rgba(240, 230, 206, 0.8); margin-bottom: 30px; max-width: 380px; }

.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%;
    background-color: rgba(255,255,255,0.08); color: var(--white);
    margin-right: 12px; transition: all 0.3s ease;
}
.footer-link-mail {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link-mail:hover { color: var(--gold); text-decoration: underline; }
.social-links a:hover { background-color: var(--accent); transform: translateY(-5px); }

.footer h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 30px; position: relative; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; color: rgba(240, 230, 206, 0.8); }
.footer ul li i { color: var(--gold); margin-top: 5px; }

/* Fixed layout for Hours Spa */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hours-list li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0 !important;
    gap: 10px;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list strong {
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 600;
    white-space: nowrap; /* Evita que el dia se corte en dos lineas */
}
.hours-list span {
    text-align: right;
    flex-grow: 1;
    color: rgba(240, 230, 206, 0.9);
    white-space: nowrap; /* Fuerza que "10:00 - 20:00" o "Descanso..." quede en una sola linea */
}

.footer-bottom { background-color: #3b2a1d; padding: 25px 0; text-align: center; color: rgba(240, 230, 206, 0.6); }

.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px;
    width: 65px; height: 65px; background-color: #25d366; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5); z-index: 100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover { transform: scale(1.15) rotate(-5deg); color: white; }

/* Animations */
.fade-in { opacity: 0; transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in.visible { opacity: 1; }
.fade-in-up { opacity: 0; transform: translateY(60px); transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .booking-container, .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-title { font-size: 4rem; }
    .modal-container { grid-template-columns: 1fr; height: 85vh; }
    .modal-image { display: none; /* Hide image on mobile modals to save space for content */ }
    .modal-content { padding: 30px 20px; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .mobile-toggle { display: block; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: rgba(253, 250, 245, 0.98); backdrop-filter: blur(15px);
        padding: 30px 0; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .nav-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 25px; }
    .hero-title { font-size: 3.2rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .form-row { flex-direction: column; gap: 0; }
    .half { width: 100%; }
    .booking-card, .payment-card { padding: 30px 20px; }
}
