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

:root {
    --primary: #1F4D3A;
    --gold: #B9925B;
    --beige: #F8F5F0;
    --dark: #2C2C2C;
    --light: #6B6B6B;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--beige);
    line-height: 1.7;
    font-weight: 400;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 80px;
    width: auto;
}

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

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}

.nav a:hover { color: var(--gold); }

.book-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.02em;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #153B2D;
    transform: translateY(-2px);
}

/* MENU MOVIL */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.mobile-nav[hidden] {
    display: none;
}

/* HERO SECTION */
.hero {
    margin-top: 106px;
    padding: 100px 2rem;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

.hero-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #153B2D;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* FLOATING FEATURES PANEL */
.floating-features {
    position: relative;
    margin-top: -50px;
    margin-bottom: 60px;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.features-panel {
    width: 90%;
    max-width: 1280px;
    background: var(--primary);
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: stretch;
    text-align: center;
}

.feature-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-column:hover {
    transform: translateY(-4px);
}

.feature-column:hover .feature-icon svg {
    transform: scale(1.08);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
}

.feature-column h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    margin-top: 0;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.feature-column p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    max-width: 190px;
    margin: 0 auto;
}

/* RESPONSIVE FLOATING FEATURES */
@media (max-width: 1024px) {
    .features-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .floating-features {
        margin-top: -30px;
        margin-bottom: 40px;
        padding: 0 1rem;
    }

    .features-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .feature-column h3 {
        font-size: 14px;
    }

    .feature-column p {
        font-size: 12px;
    }
}

/* FEATURES BAR */
.features-bar {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
}

.features-bar .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.features-bar .feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--gold);
    stroke: var(--gold);
}

.feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.feature p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
}

/* ABOUT SECTION */
.about {
    background: white;
    padding: 80px 2rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.about p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* SERVICES SECTION */
.services {
    background: var(--beige);
    padding: 80px 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

/* SERVICES GRID & CARDS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    isolation: isolate;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

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

.service-card:hover .arrow {
    transform: translateX(6px);
}

/* IMAGE WRAPPER */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    background: #F8F5F0;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* FLOATING ICON CIRCLE */
.service-icon-circle {
    position: absolute;
    top: 228px;
    left: 32px;
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 10;
    flex-shrink: 0;
}

.service-icon-circle svg {
    width: 30px;
    height: 30px;
    display: block;
    color: #1F4D3A;
    fill: currentColor;
    stroke: currentColor;
    object-fit: contain;
    overflow: visible;
}

.service-icon-circle img.service-svg-icon {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

/* CONTENT SECTION */
.service-content {
    padding: 52px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 1rem 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.service-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #5E5E5E;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    line-height: 1.8;
}

/* PRICING ROW */
.service-pricing {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.duration {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary);
}

.price-separator {
    color: #CCCCCC;
    font-weight: 300;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
}

/* BOOK LINK */
.service-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
    width: fit-content;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-content {
        padding: 46px 24px 24px;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .service-icon-circle {
        width: 56px;
        height: 56px;
        top: 192px;
        left: 24px;
    }

    .service-icon-circle svg,
    .service-icon-circle img.service-svg-icon {
        width: 26px;
        height: 26px;
    }
}

/* BENEFITS SECTION */
.benefits {
    background: var(--primary);
    padding: 120px 2rem;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.benefits-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.benefits-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: white;
    margin-bottom: 80px;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 40px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.08);
}

.benefit-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 42px;
    height: 42px;
    color: #C7A060;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-card p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.benefits-column p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 170px;
    margin: auto;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding: 32px 40px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 2rem 60px;
    }

    .benefits-panel {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 32px;
        margin-top: -30px;
    }

    .benefits-column h3 {
        font-size: 15px;
    }

    .benefits-column p {
        font-size: 12px;
    }

    .benefit-icon img {
        width: 30px;
        height: 30px;
    }
}


/* PRICING SECTION */
.pricing {
    background: white;
    padding: 80px 2rem;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.pricing-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 24px;
}

.pricing-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.pricing-head {
    margin-bottom: 1.6rem;
}

.pricing-sub {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: var(--light);
    margin: 0;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-legend {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: center;
    padding: 0 1rem 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light);
}

.pricing-legend span:nth-child(2) {
    min-width: 62px;
    text-align: right;
}

.pricing-option {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
    align-items: center;
    padding: 0.9rem 1rem;
    background: white;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 400;
}

.duration-label {
    font-weight: 500;
    color: var(--dark);
}

.amount {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
    min-width: 62px;
    text-align: right;
}

.pricing-note {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--light);
    margin: 1.4rem 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* EXTRAS */
.extras-row {
    max-width: 640px;
    margin: 3rem auto 0;
    background: var(--beige);
    border-radius: 20px;
    padding: 1.8rem 2.2rem;
}

.extras-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 1rem;
    text-align: center;
}

.extras-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
}

.extra-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    color: var(--dark);
}

.extra-price {
    font-weight: 700;
    color: var(--gold);
}

/* BOOKING SECTION */
.booking {
    background: var(--beige);
    padding: 90px 2rem;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.booking-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.8rem;
}

.booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--primary);
    margin: 0 0 1rem;
}

.booking-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.booking-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 620px;
    margin: 0 auto;
}

.booking-card-inner {
    padding: 44px 40px 36px;
}

.booking-treatments {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.booking-treatment {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "name price"
        "meta price";
    align-items: center;
    gap: 0 1rem;
    text-align: left;
    background: var(--beige);
    border-radius: 14px;
    padding: 1rem 1.3rem;
}

.bt-name {
    grid-area: name;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
}

.bt-meta {
    grid-area: meta;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    color: var(--light);
}

.bt-price {
    grid-area: price;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.booking-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: var(--primary);
    color: #FFFFFF;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 1.05rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking-cta:hover {
    background: #153B2D;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 77, 58, 0.28);
}

.booking-cta-arrow {
    transition: transform 0.3s ease;
}

.booking-cta:hover .booking-cta-arrow {
    transform: translateX(5px);
}

.booking-perks {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.4rem;
    margin: 1.6rem 0 0;
    padding: 0;
}

.booking-perks li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.booking-perks li::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
}

.booking-fallback {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: var(--light);
    margin: 1.6rem 0 0;
}

.booking-fallback a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-fallback a:hover {
    color: var(--gold);
}

/* CTA SECTION */
.cta {
    background: white;
    padding: 80px 2rem;
    border-top: 1px solid #E8E8E8;
}

.cta-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-left-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.cta-left-text p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-right-map {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FOOTER */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 100%;
}

.footer-col p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* FLOATING BUTTON */
.floating-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(185, 146, 91, 0.4);
    transition: all 0.3s;
}

.floating-btn:hover {
    background: #D4A574;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(185, 146, 91, 0.5);
}

/* RESPONSIVE */
/* BENEFITS RESPONSIVE */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 2rem;
    }

    .benefits-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-card {
        padding: 32px;
        height: auto;
        min-height: 200px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }

    .benefit-card p {
        font-size: 14px;
    }

    .benefit-icon svg {
        width: 36px;
        height: 36px;
    }

    .about-container,
    .cta-container-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 1.8rem 1.4rem;
    }

    .pricing-legend,
    .pricing-option {
        gap: 0.7rem;
    }

    .pricing-legend span:nth-child(2),
    .amount {
        min-width: 52px;
    }

    .amount {
        font-size: 1.1rem;
    }

    .extras-row {
        padding: 1.5rem 1.4rem;
    }

    .footer-logo-img {
        height: 72px;
    }

    .booking {
        padding: 60px 1.2rem;
    }

    .booking-title {
        font-size: 2.1rem;
    }

    .booking-intro {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .booking-card {
        border-radius: 18px;
    }

    .booking-card-inner {
        padding: 30px 22px 26px;
    }

    .booking-treatment {
        padding: 0.9rem 1rem;
    }

    .bt-name {
        font-size: 0.94rem;
    }

    .bt-meta {
        font-size: 0.8rem;
    }

    .booking-perks {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .about-right {
        order: -1;
    }

    .cta-right-map {
        height: 280px;
        border-radius: 18px;
    }

    .cta-left-text h2 {
        font-size: 2.2rem;
    }

    .logo-img {
        height: 56px;
    }

    .header {
        padding: 0.6rem 1.2rem;
    }

    .book-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
    }

    .hero {
        margin-top: 76px;
        padding: 70px 1.5rem;
        min-height: 520px;
        background-attachment: scroll !important;
    }

    .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.15;
    }

    .section-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 1.15;
    }

    .nav { display: none; }

    .nav-toggle {
        display: flex;
    }

    .mobile-nav:not([hidden]) {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        margin: 0.6rem -1.2rem -0.6rem;
        padding: 0.4rem 1.2rem 1rem;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .mobile-nav a {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        color: var(--dark);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        padding: 0.95rem 0.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .mobile-nav a:active {
        color: var(--gold);
    }

    .mobile-nav-cta {
        margin-top: 0.9rem;
        background: var(--primary);
        color: #FFFFFF !important;
        text-align: center;
        border-radius: 10px;
        font-weight: 600 !important;
        padding: 0.95rem 1rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-title {
        font-size: 36px;
    }

    .benefit-card h3 {
        font-size: 15px;
    }

    .about,
    .services,
    .pricing,
    .cta {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .about-image {
        aspect-ratio: 3 / 2;
        border-radius: 14px;
    }

    .cta-right-map {
        height: 240px;
        border-radius: 14px;
    }

    .service-image-wrapper {
        height: 190px;
        border-radius: 18px 18px 0 0;
    }

    .service-icon-circle {
        top: 164px;
        left: 20px;
        width: 52px;
        height: 52px;
    }

    .service-icon-circle svg,
    .service-icon-circle img.service-svg-icon {
        width: 24px;
        height: 24px;
    }

    .service-content {
        padding: 42px 20px 22px;
    }

    .service-card {
        border-radius: 18px;
    }

    .logo-img {
        height: 46px;
    }

    .hero {
        margin-top: 72px;
        padding: 56px 1.2rem;
        min-height: 460px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-left-text h2 {
        font-size: 1.9rem;
    }
}

/* ===================== BANNER DE CONSENTIMIENTO ===================== */
.cc-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.14);
    padding: 1.4rem 2rem;
}

.cc-banner[hidden] { display: none; }

.cc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "text actions"
        "options options";
    gap: 1rem 2rem;
    align-items: center;
}

.cc-text { grid-area: text; }

.cc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.3rem;
    line-height: 1.2;
}

.cc-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--light);
    margin: 0;
}

.cc-desc a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cc-options {
    grid-area: options;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1rem;
}

.cc-options[hidden] { display: none; }

.cc-option {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #4A4A4A;
    cursor: pointer;
}

.cc-option--locked { cursor: default; opacity: 0.75; }

.cc-option input {
    margin-top: 0.28rem;
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.cc-option strong { color: var(--dark); font-weight: 600; }

.cc-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cc-btn {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.75rem 1.4rem;
    border-radius: 9px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

/* Rechazar tiene el mismo peso visual que Aceptar (exigencia RGPD) */
.cc-btn--ghost {
    background: #FFFFFF;
    color: var(--primary);
    border-color: rgba(31, 77, 58, 0.35);
}

.cc-btn--ghost:hover {
    border-color: var(--primary);
    background: rgba(31, 77, 58, 0.04);
}

.cc-btn--accept,
.cc-btn--save {
    background: var(--primary);
    color: #FFFFFF;
}

.cc-btn--accept:hover,
.cc-btn--save:hover {
    background: #153B2D;
}

.cc-btn[hidden] { display: none; }

/* ---------- Mapa bloqueado hasta dar permiso ---------- */
.map-block {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.map-block iframe { display: block; width: 100%; height: 100%; border: none; }

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--beige);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.map-ph-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.15rem;
}

.map-ph-text { font-size: 0.95rem; color: var(--dark); margin: 0 0 0.9rem; }

.map-ph-note {
    font-size: 0.8rem;
    color: var(--light);
    margin: 0 0 1.2rem;
    max-width: 260px;
    line-height: 1.5;
}

.map-ph-btn {
    font-family: inherit;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 9px;
    padding: 0.75rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.map-ph-btn:hover { background: #153B2D; }

.map-ph-link {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.map-ph-link:hover { color: var(--gold); }

@media (max-width: 768px) {
    .cc-banner { padding: 1.1rem 1.2rem; max-height: 85vh; overflow-y: auto; }

    .cc-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "options"
            "actions";
        gap: 0.9rem;
    }

    .cc-actions { flex-direction: column; align-items: stretch; }
    .cc-btn { width: 100%; }
    .cc-title { font-size: 1.2rem; }
    .cc-desc { font-size: 0.84rem; }

    .map-placeholder { border-radius: 18px; min-height: 240px; }
    .map-ph-title { font-size: 1.35rem; }
}
