/* CSS Reset & Variables */
:root {
    --primary: #DE12A6;
    --secondary: #C215A4;
    --soft: #F47EE1;
    /* Un tono suave para textos secundarios */
    --white: #FFFFFF;
    --accent: #35D07F;
    /* Mini green accent for success/specific highlights */
    --bg-dark: #3A0345;
    /* Mantenemos la profundidad */
    --bg-light: #4A125C;

    --font-main: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utils */
h1,
h2,
h3,
h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    color: var(--white);
    text-shadow: 0 0 10px rgba(157, 28, 143, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

.text-center {
    text-align: center;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.w-100 {
    width: 100%;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-4 {
    margin-bottom: 30px;
}

.text-sm {
    font-size: 0.9rem;
}

.text-lg {
    font-size: 1.1rem;
}

.text-primary {
    color: var(--primary);
}

.text-soft {
    color: var(--soft);
}

.block {
    display: block;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(157, 28, 143, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 4px 30px rgba(157, 28, 143, 0.9), 0 0 15px rgba(222, 163, 212, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.btn-secondary:hover {
    background: rgba(157, 28, 143, 0.2);
    box-shadow: inset 0 0 10px var(--primary);
}

/* ============================================
   PRODUCT SHOWCASE — Variables & Base
   ============================================ */
:root {
    --sc-w: 1120px;
    /* Card max-width desktop */
    --sc-h: 480px;
    /* Card height desktop */
    --sc-radius: 40px;
    /* Border radius */
}

.services-section {
    position: relative;
    overflow: hidden;
}

.slide-indicator {
    color: var(--soft);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Block text selection on swiper (prevents blue highlight on drag) */
.product-swiper,
.product-swiper * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Swiper overrides */
.product-swiper {
    padding: 40px 0 80px;
    overflow: visible;
}

.product-swiper .swiper-wrapper {
    align-items: center;
}

.product-slide {
    width: 90%;
    max-width: var(--sc-w);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease,
        filter 0.5s ease;
}

/* Non-active slides */
.product-slide:not(.swiper-slide-active) {
    transform: scale(0.82);
    opacity: 0.35;
    filter: blur(1.5px);
    pointer-events: none;
}

/* Active slide */
.product-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    z-index: 5;
    pointer-events: auto;
}

/* --- The Card (Horizontal) --- */
.product-card {
    display: flex;
    height: var(--sc-h);
    border-radius: var(--sc-radius);
    overflow: hidden;
    background: rgba(26, 5, 29, 0.88);
    border: 1px solid rgba(157, 28, 143, 0.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(157, 28, 143, 0.08);
    transition: box-shadow 0.4s ease;
    cursor: pointer;
}

.swiper-slide-active .product-card {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--slide-glow, rgba(157, 28, 143, 0.3));
    -webkit-box-reflect: below 4px linear-gradient(to bottom, transparent 60%, rgba(255, 255, 255, 0.2) 100%);
}

/* --- Left: Image Media --- */
.pc-media {
    width: 48%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background-size 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Burnt / vignette */
.pc-burn {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
            transparent 40%,
            rgba(18, 3, 20, 0.25) 70%,
            rgba(18, 3, 20, 0.6) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* Right edge fade */
.pc-media::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(26, 5, 29, 0.88));
    z-index: 2;
    pointer-events: none;
}

/* Image hover effect (no zoom to protect clicks) */
.product-card:hover .pc-media {
    filter: brightness(1.1);
}

/* --- Right: Content (flex column with sticky footer) --- */
.pc-content {
    width: 52%;
    padding: 36px 38px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Body: grows to fill, scrollable if needed */
.pc-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
}

/* Footer: always visible at bottom */
.pc-footer {
    flex-shrink: 0;
    padding-top: 12px;
}

.pc-content h3 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 10px;
}

.pc-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.pc-price {
    font-size: 1.5rem;
    color: var(--soft);
    margin: 0 0 14px;
    font-weight: 300;
}

.pc-price strong {
    font-weight: 800;
    color: var(--white);
    font-size: 1.9rem;
}

.pc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    width: fit-content;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(157, 28, 143, 0.35);
    cursor: pointer;
}

.pc-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(157, 28, 143, 0.55);
}

.pc-cta i {
    transition: transform 0.3s;
}

.pc-cta:hover i {
    transform: translateX(4px);
}

/* --- Arrow Buttons --- */
.product-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.pc-arrow {
    position: relative !important;
    top: auto !important;
    margin-top: 0 !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: var(--soft) !important;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    flex-shrink: 0;
}

.pc-arrow::after {
    display: none !important;
}

.pc-arrow:hover {
    background: rgba(157, 28, 143, 0.15) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transform: scale(1.12) !important;
    box-shadow: 0 0 20px rgba(157, 28, 143, 0.3) !important;
}

.pc-arrow svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

/* Swiper pagination */
.product-swiper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
}

.product-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.product-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--primary);
}

/* ============================================
   PRODUCT CARD — RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --sc-w: 960px;
        --sc-h: 460px;
        --sc-radius: 36px;
    }
}

@media (max-width: 900px) {
    :root {
        --sc-w: min(96vw, 520px);
        --sc-h: auto;
        --sc-radius: 28px;
    }

    .product-card {
        flex-direction: column;
    }

    .pc-media {
        width: 100%;
        height: 240px;
    }

    .pc-media::after {
        display: none;
    }

    .pc-content {
        width: 100%;
        padding: 24px 22px 28px;
    }

    .pc-body {
        justify-content: flex-start;
    }

    .pc-content h3 {
        font-size: 1.5rem;
    }

    .pc-price strong {
        font-size: 1.4rem;
    }

    .product-slide {
        width: 94%;
    }

    .product-slide:not(.swiper-slide-active) {
        transform: scale(0.88);
    }
}

@media (max-width: 480px) {
    :root {
        --sc-radius: 22px;
    }

    .product-slide {
        width: 96%;
    }

    .pc-media {
        height: 200px;
    }

    .pc-content {
        padding: 20px 18px 24px;
    }

    .pc-content h3 {
        font-size: 1.3rem;
    }

    .pc-price {
        font-size: 1.2rem;
    }

    .pc-price strong {
        font-size: 1.45rem;
    }

    .pc-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .pc-arrow {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 3, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(222, 163, 212, 0.1);
}

.nav-logo img,
.navbar-logo-img {
    height: 56px;
    width: 56px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    border: 2px solid #ff66b2;
    box-shadow: 0 0 12px rgba(255, 102, 178, 0.45);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--soft);
    text-shadow: 0 0 8px var(--soft);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

@media(max-width: 860px) {
    .nav-logo img,
    .navbar-logo-img {
        height: 44px;
        width: 44px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(18, 3, 20, 0.95);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--primary);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Float WhatsApp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(53, 208, 127, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 25px rgba(53, 208, 127, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 0 20px;
}

/* Hero Background Video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.hero-morph,
#hero-morph,
.hero-noise,
.hero::before,
.hero-layer,
.hero-particles,
.hero-foreground,
.hero-content {
    z-index: 1;
}

/* Hero Morph Canvas */
#hero-morph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Subtle grain noise */
.hero-noise {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(8, 2, 10, 0.45), rgba(8, 2, 10, 0.15) 35%, rgba(8, 2, 10, 0.55)),
        radial-gradient(circle at 50% 30%, rgba(148, 58, 165, 0.16), rgba(0, 0, 0, 0) 58%);
    pointer-events: none;
}

/* Base layer structure */
.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Particles behind text */
.hero-particles {
    z-index: 1;
    pointer-events: auto;
    /* Required for hover/grab interaction to work */
}

/* Giant background text */
.hero-giant-text {
    z-index: 2;
    overflow: hidden;
}

.hero-giant-text span {
    font-size: clamp(6rem, 15vw, 25rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -2px;
    user-select: none;
    line-height: 1;
}

/* Foreground content */
.hero-foreground {
    pointer-events: auto;
    /* Re-enable clicks */
    z-index: 3;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin-top: 60px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(157, 28, 143, 0.9), 0 0 8px rgba(255, 255, 255, 0.4);
}

.hero-title span {
    color: var(--soft);
    text-shadow: 0 0 15px var(--primary);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #f1f1f1;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

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

@media(max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Equipo Section */
.team-section {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.team-section > .container {
    position: relative;
    z-index: 3;
}

.team-bg-video {
    opacity: 0.55;
}

.team-video-overlay {
    background:
        linear-gradient(180deg, rgba(13, 4, 15, 0.75), rgba(31, 7, 31, 0.8)),
        radial-gradient(circle at center, rgba(81, 22, 78, 0.3), rgba(4, 1, 6, 0.7));
}

.team-selector {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.team-selector-btn {
    appearance: none;
    min-width: 0;
    padding: 9px 12px 9px 9px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    background: rgba(18, 5, 20, 0.72);
    border: 1px solid rgba(222, 163, 212, 0.22);
    border-radius: 16px;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.team-selector-btn img {
    width: 48px;
    height: 52px;
    flex: 0 0 48px;
    border-radius: 11px;
    object-fit: cover;
    object-position: top center;
}

.team-selector-btn:hover,
.team-selector-btn:focus-visible {
    border-color: rgba(222, 163, 212, 0.65);
    transform: translateY(-2px);
}

.team-selector-btn:focus-visible {
    outline: 2px solid var(--soft);
    outline-offset: 3px;
}

.team-selector-btn.is-active {
    background: rgba(157, 28, 143, 0.2);
    border-color: rgba(222, 163, 212, 0.75);
    box-shadow: 0 8px 24px rgba(157, 28, 143, 0.22);
}

.mj-layout {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto 0;
}

@media(max-width: 768px) {
    .team-selector {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 25px;
        padding: 2px 4px 10px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .team-selector::-webkit-scrollbar {
        display: none;
    }

    .team-selector-btn {
        flex: 0 0 auto;
        min-width: 142px;
        scroll-snap-align: start;
    }

    .mj-layout {
        flex-direction: column;
        gap: 30px;
    }
}

.mj-image-col {
    flex: 0 0 45%;
    position: relative;
}

.mj-image-col img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-box-reflect: below 4px linear-gradient(to bottom, transparent 65%, rgba(255, 255, 255, 0.2) 100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mj-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32));
    pointer-events: none;
}

.mj-info-col {
    flex: 1;
    text-align: left;
    background: rgba(18, 5, 20, 0.8);
    border: 1px solid rgba(179, 0, 255, 0.4);
    box-shadow: 0 0 20px rgba(179, 0, 255, 0.15), inset 0 0 15px rgba(179, 0, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mj-layout.is-switching .mj-image-col img,
.mj-layout.is-switching .mj-info-col {
    opacity: 0.2;
    transform: translateY(5px);
}

.mj-info-col h3 {
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(179, 0, 255, 0.8), 0 0 20px rgba(222, 163, 212, 0.4);
    margin-bottom: 5px;
}

.mj-info-col h4 {
    color: var(--soft);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.mj-info-col .mj-bio {
    color: #f1f1f1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mj-info-col ul {
    list-style: none;
    padding: 0;
    color: #eee;
}

.mj-info-col ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.mj-info-col ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
}

/* Trust Block */
.trust-block {
    background: rgba(18, 3, 20, 0.8);
    border: 2px solid rgba(222, 163, 212, 0.4);
    box-shadow: 0 0 20px rgba(157, 28, 143, 0.2), inset 0 0 10px rgba(157, 28, 143, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 40px auto 0;
    max-width: 500px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(222, 163, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--soft);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(222, 163, 212, 0.5));
}

.trust-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-text {
    font-size: 0.95rem;
    color: #eee;
    line-height: 1.5;
}

/* Servicios Section - Swiper Showcase */
.services-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.slide-indicator {
    font-size: 1.2rem;
    color: var(--soft);
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 600;
}



/* Modal Global Overlay */
.global-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.global-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content Centered */
.service-detail-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 92%;
    max-width: 720px;
    height: 90vh;
    /* Para movil, si desktop max-height aplico media queries */
    max-height: 800px;
    background: rgba(20, 6, 23, 1);
    /* Sólido, sin blur para nitidez */
    border: 1px solid rgba(222, 163, 212, 0.3);
    border-radius: 20px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Animated by GSAP instead of CSS transition if we zoom in */
    visibility: hidden;
}

.service-detail-modal.active {
    pointer-events: auto;
    visibility: visible;
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.close-modal-btn:hover {
    background: var(--primary);
}

.modal-img-header {
    width: 100%;
    min-height: 250px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-img-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(20, 6, 23, 1), transparent);
}

.modal-img-header i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
}

.modal-body-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    padding-bottom: 20px;
}

/* Scrollbar para modal */
.modal-body-scroll::-webkit-scrollbar {
    width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: rgba(222, 163, 212, 0.3);
    border-radius: 4px;
}

.modal-body-scroll h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.meta-tag {
    color: var(--soft);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-desc {
    color: #e2e2e2;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.modal-includes h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.modal-includes ul {
    list-style: none;
    margin-bottom: 10px;
}

.modal-includes li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #ccc;
    display: flex;
    align-items: center;
}

.modal-includes li::before {
    content: '✨';
    margin-right: 10px;
    font-size: 0.9rem;
}

.modal-sticky-footer {
    padding: 20px 30px;
    background: rgba(20, 6, 23, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.4);
}

/* Resultados */
.experiences-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experiences-section > .container {
    position: relative;
    z-index: 3;
}

.section-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    background: linear-gradient(135deg, #180919, #070208);
}

.section-bg-video.hls-unavailable {
    opacity: 0;
}

.section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.results-bg-video {
    opacity: 0.58;
}

.results-video-overlay {
    background:
        linear-gradient(180deg, rgba(13, 4, 15, 0.72), rgba(31, 7, 31, 0.78)),
        radial-gradient(circle at center, rgba(81, 22, 78, 0.18), rgba(4, 1, 6, 0.56));
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(157, 28, 143, 0.2);
    transition: transform 0.3s ease, background-size 0.4s ease, border-color 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--soft);
    background-size: 110%;
}

.result-card.micropigmentacion {
    background-image:
        linear-gradient(rgba(20, 0, 20, 0.75), rgba(20, 0, 20, 0.75)),
        url('https://res.cloudinary.com/dtlpkqhls/image/upload/v1772322839/Micropigmentaci%C3%B3n_de_cejas_y_labios_c64c5p.png');
}

.result-card.laminado {
    background-image:
        linear-gradient(rgba(20, 0, 20, 0.75), rgba(20, 0, 20, 0.75)),
        url('https://res.cloudinary.com/dtlpkqhls/image/upload/v1772322838/Laminado_de_cejas_edi8fg.png');
}

.result-card.limpieza {
    background-image:
        linear-gradient(rgba(20, 0, 20, 0.75), rgba(20, 0, 20, 0.75)),
        url('https://res.cloudinary.com/dtlpkqhls/image/upload/v1772322837/Limpieza_facial_f9wye3.png');
}

.result-card.unas {
    background-image:
        linear-gradient(rgba(20, 0, 20, 0.75), rgba(20, 0, 20, 0.75)),
        url('https://res.cloudinary.com/dtlpkqhls/image/upload/v1772322773/U%C3%B1as_fq7qfh.png');
}

.res-icon {
    font-size: 3rem;
    color: var(--soft);
    margin-bottom: 15px;
}

.result-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.result-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}

.btn-res {
    color: var(--soft);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-res:hover {
    text-decoration: underline;
}

/* === COLLAGE EDITORIAL (New Section) === */
.collage-section {
    position: relative;
    isolation: isolate;
    background: radial-gradient(circle at center, #1b071e 0%, #08000a 100%);
    overflow: hidden;
    padding: 100px 0;
}

.collage-bg-video {
    opacity: 0.52;
}

.collage-video-overlay {
    background:
        linear-gradient(180deg, rgba(7, 1, 9, 0.76), rgba(28, 5, 29, 0.68) 48%, rgba(6, 1, 8, 0.84)),
        radial-gradient(circle at center, rgba(111, 28, 105, 0.12), rgba(0, 0, 0, 0.5));
}

.collage-grain {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.06;
    pointer-events: none;
    z-index: 2;
}

.collage-board {
    position: relative;
    width: 100%;
    height: 750px;
    margin-top: 40px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

/* Base Collage Item */
.collage-item {
    position: absolute;
    border: 8px solid #f4f4f4;
    /* Marco claro */
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    /* Slightly rounded */
    /* Rugged edge emulation via clip-path approximation (subtle) */
    clip-path: polygon(1% 1%, 99% -1%, 98% 99%, -1% 98%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s, z-index 0.4s;
    background: #fff;
    cursor: pointer;
}

.collage-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.collage-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) contrast(1.05);
    /* Editorial feel */
}

/* Caption under image inside the polaroid/frame style */
.collage-caption {
    background: #f4f4f4;
    color: #111;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 5px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Hover Interaction Strategy */
.collage-item:hover {
    transform: scale(1.1) translate3d(0, -10px, 50px) !important;
    /* overrides position transforms */
    z-index: 100 !important;
    box-shadow: 20px 30px 40px rgba(0, 0, 0, 0.8);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.collage-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 40px var(--glow-color, rgba(255, 255, 255, 0.4)) inset;
    pointer-events: none;
    z-index: 10;
}

/* Item placements (Desktop) */
.c-img-1 {
    width: 250px;
    height: 320px;
    z-index: 10;
    transform: translate(-300px, -150px) rotate(-4deg);
    --glow-color: var(--primary);
}

.c-img-2 {
    width: 280px;
    height: 360px;
    z-index: 20;
    transform: translate(0px, -180px) rotate(2deg);
    --glow-color: #ff65a3;
}

.c-img-3 {
    width: 320px;
    height: 480px;
    z-index: 30;
    transform: translate(250px, -50px) rotate(5deg);
    --glow-color: var(--soft);
}

.c-img-4 {
    width: 260px;
    height: 320px;
    z-index: 15;
    transform: translate(-180px, 180px) rotate(4deg);
    --glow-color: var(--secondary);
}

.c-img-5 {
    width: 240px;
    height: 300px;
    z-index: 25;
    transform: translate(120px, 190px) rotate(-3deg);
    --glow-color: #b164ff;
}

/* Mobile adjustments */
@media(max-width: 860px) {
    .collage-board {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        perspective: none;
        padding: 0 15px;
    }

    .collage-item {
        position: static;
        width: 100% !important;
        height: 250px !important;
        transform: rotate(0deg) !important;
        clip-path: none;
        border: 4px solid #f4f4f4;
    }

    .c-img-3 {
        grid-column: span 2;
        height: 350px !important;
    }

    .collage-item:hover {
        transform: scale(1.02) !important;
    }
}

.btn-res-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-res-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Opiniones */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 15px;
    border-top: 3px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.r-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.r-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 3px;
}

.review-text {
    font-style: italic;
    color: #eee;
    line-height: 1.5;
    font-size: 1rem;
}

/* Ubicación */
.loc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.loc-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.loc-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.loc-item h4 {
    margin-bottom: 5px;
}

.loc-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--secondary);
}

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

/* Footer */
.footer {
    background: #0A020B;
    padding: 60px 0 20px;
    border-top: 1px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--soft);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a:hover {
    color: var(--primary);
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Modal Reservas */
.reserva-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.reserva-modal-content {
    background-color: var(--bg-light);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--primary);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(157, 28, 143, 0.4);
    position: relative;
}

.close-reserva {
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-reserva:hover {
    color: var(--primary);
}

.reserva-header {
    background: rgba(157, 28, 143, 0.2);
    padding: 25px 30px 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.reserva-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: #888;
    border: 2px solid #555;
    transition: all 0.3s;
}

.step.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--soft);
    box-shadow: 0 0 10px var(--primary);
}

.reserva-body {
    padding: 30px;
}

.r-step {
    display: none;
}

.r-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart items */
.services-list-select {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.services-list-select::-webkit-scrollbar {
    width: 5px;
}

.services-list-select::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    cursor: pointer;
}

.service-item-row:hover {
    border-color: var(--soft);
}

.service-item-row.selected {
    border-color: var(--primary);
    background: rgba(157, 28, 143, 0.1);
}

.service-info h4 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.cart-summary {
    background: var(--secondary);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

/* Calendar Details - Custom flatpickr neon glow */
.calendar-container {
    margin-bottom: 20px;
}

.input-form {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-family: inherit;
}

.input-form:focus {
    outline: none;
    border-color: var(--primary);
}

.date-input-wrapper {
    position: relative;
}

.neon-datepicker {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #555;
    background: #222;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.neon-datepicker:focus,
.neon-datepicker:hover {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(157, 28, 143, 0.5);
    outline: none;
}

/* Flatpickr global overrides injected for neo style */
.flatpickr-calendar.dark {
    background: var(--bg-light) !important;
    border: 2px solid var(--primary) !important;
    box-shadow: 0 0 20px rgba(157, 28, 143, 0.6) !important;
    border-radius: 15px !important;
    font-family: inherit !important;
}

.flatpickr-day {
    color: #fff !important;
    border-radius: 8px !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(157, 28, 143, 0.4) !important;
    border-color: var(--soft) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: rgba(157, 28, 143, 0.6) !important;
    border: 2px solid var(--soft) !important;
    box-shadow: 0 0 10px var(--soft), inset 0 0 10px var(--primary) !important;
}

.flatpickr-month,
.flatpickr-current-month {
    color: var(--soft) !important;
}

.flatpickr-weekday {
    color: #aaa !important;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid #555;
    border-radius: 8px;
    cursor: pointer;
    background: #111;
    transition: 0.2s;
}

.time-slot:hover {
    border-color: var(--soft);
}

.time-slot.selected {
    background: var(--primary);
    border-color: var(--soft);
    font-weight: bold;
}

/* Navigation */
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Info box & Bank details */
.info-box {
    background: rgba(157, 28, 143, 0.15);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
}

.bank-details {
    background: #000;
    padding: 20px;
    border-radius: 10px;
}

/* Upload area */
.upload-area {
    border: 2px dashed var(--soft);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.upload-area:hover {
    background: rgba(157, 28, 143, 0.1);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.success-icon {
    font-size: 60px;
    color: var(--accent);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(53, 208, 127, 0.5);
}

/* ============================================
   RESERVA PAGE STYLES (reserva.html)
   ============================================ */

.nav-back-link {
    color: var(--soft);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-back-link:hover {
    color: var(--white);
}

.rv-page {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 100px 0 60px;
}

.rv-container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

.rv-header {
    margin-bottom: 40px;
}

.rv-title {
    font-size: 2.4rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(157, 28, 143, 0.4);
    margin-bottom: 8px;
}

.rv-subtitle {
    color: #aaa;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.rv-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}

.step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 700;
    transition: 0.4s;
}

.step-dot span {
    font-size: 1rem;
    line-height: 1;
}

.step-dot small {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 15px var(--primary);
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.rv-step {
    display: none;
    animation: fadeUp 0.4s ease;
}

.rv-step.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rv-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
}

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

.rv-catalog h2,
.rv-cart h2,
.rv-date-section h2,
.rv-summary-section h2 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv-catalog h2 i,
.rv-cart h2 i,
.rv-date-section h2 i,
.rv-summary-section h2 i {
    color: var(--soft);
}

.rv-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    margin-bottom: 20px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23DEA3D4'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.rv-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(157, 28, 143, 0.3);
}

.rv-select option {
    background: var(--bg-dark);
    color: var(--white);
}

.sv-list {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 5px;
}

.sv-list::-webkit-scrollbar {
    width: 5px;
}

.sv-list::-webkit-scrollbar-thumb {
    background: rgba(157, 28, 143, 0.3);
    border-radius: 4px;
}

.sv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.sv-row:hover {
    background: rgba(157, 28, 143, 0.08);
    border-color: rgba(157, 28, 143, 0.2);
}

.sv-row.sv-selected {
    background: rgba(157, 28, 143, 0.15);
    border-color: var(--primary);
}

.sv-info h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
    font-weight: 600;
}

.sv-meta {
    font-size: 0.8rem;
    color: #999;
}

.sv-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.sv-selected .sv-toggle {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.rv-cart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    position: sticky;
    top: 90px;
    align-self: start;
}

.cart-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.cart-items {
    margin-bottom: 15px;
}

.cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 10px;
}

.cart-name {
    font-size: 0.85rem;
    color: #ccc;
    flex: 1;
}

.cart-price {
    font-size: 0.85rem;
    color: var(--soft);
    font-weight: 600;
    white-space: nowrap;
}

.cart-remove {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    transition: 0.3s;
    font-size: 0.8rem;
}

.cart-remove:hover {
    color: #ff4444;
}

.cart-empty-msg {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding: 20px 0;
}

.cart-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 10px;
}

.ct-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.95rem;
}

.ct-row strong {
    color: var(--soft);
    font-size: 1.1rem;
}

.rv-date-section {
    max-width: 700px;
    margin: 0 auto;
}

.rv-date-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media(max-width: 700px) {
    .rv-date-grid {
        grid-template-columns: 1fr;
    }
}

.rv-date-pick label,
.rv-time-pick label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ccc;
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.time-slot-btn:hover {
    border-color: var(--soft);
    color: var(--white);
}

.time-slot-btn.ts-selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(157, 28, 143, 0.4);
}

.rv-nav-btns {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.rv-nav-btns .btn-secondary,
.rv-nav-btns .btn-primary {
    flex: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rv-summary-section {
    max-width: 600px;
    margin: 0 auto;
}

.sum-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.sum-card h3 {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
}

.sum-row span:first-child {
    color: #ccc;
}

.sum-row span:last-child {
    color: var(--soft);
    font-weight: 600;
}

.sum-total-row {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.2rem;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sum-total-row strong {
    color: var(--soft);
}

.sum-datetime {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.sum-detail {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sum-detail i {
    font-size: 1.4rem;
    color: var(--soft);
}

.sum-detail small {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.sum-detail strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
}

.btn-wa-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-wa-confirm i {
    font-size: 1.3rem;
}

@media(max-width: 768px) {
    .rv-title {
        font-size: 1.8rem;
    }

    .rv-cart {
        position: static;
    }

    .sum-datetime {
        flex-direction: column;
    }

    .step-line {
        width: 30px;
    }

    .step-dot {
        width: 38px;
        height: 38px;
    }
}

/* ============================================
   STEP 3: PAYMENT / UPLOAD STYLES
   ============================================ */
.rv-payment-section,
.rv-client-section {
    max-width: 700px;
    margin: 0 auto;
}

.rv-month-notice {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
    background: rgba(157, 28, 143, 0.08);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(157, 28, 143, 0.15);
}

.payment-info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.payment-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(157, 28, 143, 0.4);
}

.payment-info-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.payment-info-card p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bank-details-grid {
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 18px 22px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.bank-row:last-child {
    border: none;
}

.bank-row span {
    color: #888;
}

.bank-row strong {
    color: var(--white);
}

/* Upload */
.upload-section {
    margin-bottom: 30px;
}

.upload-section h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 6px;
}

.upload-hint {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(157, 28, 143, 0.05);
}

.upload-area.has-file {
    border-color: var(--accent);
    background: rgba(53, 208, 127, 0.05);
    padding: 15px;
}

.upload-placeholder {
    color: #666;
}

.upload-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    color: var(--soft);
}

.upload-placeholder span {
    font-size: 0.95rem;
}

.upload-area.has-file .upload-placeholder {
    display: none;
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-preview {
    z-index: 1;
}

.proof-img-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.proof-pdf-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--soft);
    font-size: 3rem;
    gap: 8px;
}

.proof-pdf-icon span {
    font-size: 0.9rem;
    font-weight: 600;
}

.file-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
    min-height: 30px;
}

#file-name {
    color: #ccc;
    font-weight: 600;
}

.btn-remove-sm {
    background: none;
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6666;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    font-family: var(--font-main);
}

.btn-remove-sm:hover {
    background: rgba(255, 100, 100, 0.1);
    border-color: #ff6666;
}

.file-error {
    color: #ff6666;
    font-size: 0.85rem;
    margin-top: 8px;
}

/* ============================================
   STEP 4: CLIENT FORM
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--soft);
}

.field-hint {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
}

.input-form.field-valid {
    border-color: var(--accent) !important;
}

.input-form.field-invalid {
    border-color: #ff6666 !important;
}

/* ============================================
   STEP 5: ADDITIONAL SUMMARY STYLES
   ============================================ */
.sum-duration-row {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    font-size: 0.95rem;
    color: #aaa;
}

.sum-duration-row strong {
    color: #ccc;
}

.sum-client-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.sum-client-card h3 {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sum-client-card p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.sum-client-card p strong {
    color: var(--white);
}

.sum-proof {
    background: rgba(53, 208, 127, 0.08);
    border: 1px solid rgba(53, 208, 127, 0.15);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.btn-confirm-booking {
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.confirm-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--soft);
    font-size: 1rem;
}

.confirm-error {
    color: #ff6666;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
    background: rgba(255, 100, 100, 0.08);
    border-radius: 10px;
    margin-top: 10px;
}

/* Taken time slots */
.time-slot-btn.ts-taken {
    background: rgba(255, 100, 100, 0.08);
    border-color: rgba(255, 100, 100, 0.15);
    color: #666;
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

.no-slots-msg {
    color: #ff9966;
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255, 150, 100, 0.08);
    border-radius: 8px;
}

/* ============================================
   BOOKING TOAST (index.html)
   ============================================ */
.booking-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(18, 3, 20, 0.96);
    border: 1px solid rgba(53, 208, 127, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(53, 208, 127, 0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    pointer-events: none;
}

.booking-toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-body h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.toast-body p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.toast-sub {
    color: #888 !important;
    font-size: 0.8rem !important;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    flex-shrink: 0;
    transition: 0.3s;
}

.toast-close:hover {
    color: var(--white);
}

@media(max-width: 768px) {
    .booking-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .bank-details-grid {
        padding: 14px 16px;
    }

    .payment-info-card {
        padding: 20px;
    }
}

/* ============================================
   SEARCH BAR
   ============================================ */
.sv-search-wrap {
    position: relative;
    margin-bottom: 15px;
}

.sv-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(222, 163, 212, 0.6); /* Match placeholder color */
    font-size: 0.9rem;
    pointer-events: none;
}

.sv-search {
    padding-left: 40px !important;
    color: var(--white);
    border: 2px solid rgba(157, 28, 143, 0.6); /* Morado suave (#9D1C8F) */
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2); /* Fondo oscuro/transparente */
    transition: all 0.3s ease;
    width: 100%;
}

.sv-search::placeholder {
    color: rgba(222, 163, 212, 0.6); /* Gris/rosado suave (#DEA3D4) */
}

.sv-search:hover {
    border-color: rgba(255, 102, 178, 0.7); /* Fucsia suave al hover */
    filter: brightness(1.1);
}

.sv-search:focus {
    outline: none;
    border-color: #FF66B2; /* Fucsia brillante (#FF66B2) */
    box-shadow: inset 0 0 12px rgba(255, 102, 178, 0.4); /* Glow interno suave */
}

.sv-search:active {
    box-shadow: inset 2px 2px 15px rgba(255, 102, 178, 0.8); /* Sombra interna fucsia fuerte */
}

/* ============================================
   SERVICE ROW ACTIONS
   ============================================ */
.sv-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sv-info-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 0.85rem;
}

.sv-info-btn:hover {
    background: rgba(157, 28, 143, 0.15);
    border-color: var(--primary);
}

.sv-warn-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #ffaa44;
    background: rgba(255, 170, 68, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 3px;
}

/* ============================================
   SERVICE DETAIL PANEL (sidebar)
   ============================================ */
.rv-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sv-detail-panel {
    background: rgba(18, 3, 20, 0.97);
    border: 1px solid rgba(157, 28, 143, 0.2);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.3s ease;
}

.sv-detail-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.sv-detail-close:hover {
    color: var(--white);
}

.sv-detail-panel h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
    padding-right: 30px;
}

.sv-detail-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--soft);
}

.sv-detail-desc {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.detail-includes-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.detail-includes-list li {
    padding: 4px 0 4px 18px;
    position: relative;
    color: #ccc;
    font-size: 0.85rem;
}

.detail-includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

#sv-detail-includes h4 {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sv-warning {
    background: rgba(255, 100, 68, 0.1);
    border: 1px solid rgba(255, 100, 68, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffaa44;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 10px;
}

.sv-warning i {
    margin-right: 6px;
}

/* Herpes-specific urgent warning */
.sv-has-warn {
    border-left: 3px solid #ffaa44;
}

/* ============================================
   FLATPICKR NEON THEME OVERRIDE
   ============================================ */
.flatpickr-calendar {
    background: rgba(18, 3, 20, 0.97) !important;
    border: 1px solid rgba(157, 28, 143, 0.25) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 28, 143, 0.15) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
    display: none !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--white) !important;
}

.flatpickr-current-month {
    color: var(--white) !important;
    font-weight: 700 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}

span.flatpickr-weekday {
    color: var(--soft) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
}

.flatpickr-day {
    color: #ccc !important;
    border-radius: 10px !important;
    transition: all 0.2s !important;
    font-weight: 500 !important;
}

.flatpickr-day:hover {
    background: rgba(157, 28, 143, 0.2) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(157, 28, 143, 0.5) !important;
}

.flatpickr-day.today {
    border-color: var(--soft) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #444 !important;
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #333 !important;
    opacity: 0.2 !important;
}

.numInputWrapper:hover {
    background: transparent !important;
}

.numInputWrapper span {
    display: none !important;
}

/* Alt input (the shown one) */
.neon-datepicker+.flatpickr-input,
input.flatpickr-input.form-control {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: var(--white) !important;
    padding: 12px 16px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    cursor: pointer !important;
}

/* ============================================
   INFO BOX (step 5 notice)
   ============================================ */
.info-box {
    background: rgba(157, 28, 143, 0.06);
    border: 1px solid rgba(157, 28, 143, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
}

.info-box p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media(max-width: 900px) {
    .rv-grid {
        grid-template-columns: 1fr;
    }

    .sv-detail-panel {
        margin-top: 0;
    }
}

@media(max-width: 768px) {
    .sv-search {
        font-size: 0.9rem;
    }

    .sv-detail-panel {
        padding: 18px;
    }

    .sv-detail-meta {
        gap: 8px;
    }

    .meta-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

/* ============================================
   PREMIUM EDITORIAL COLLAGE — Trabajos Destacados
   ============================================ */
.collage-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

/* Film grain overlay */
.collage-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.collage-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
}

/* Board: relative container for absolute items */
.collage-board {
    position: relative;
    width: 100%;
    height: 820px;
    perspective: 1200px;
    margin: 0 auto;
}

/* Each collage item */
.cb-item {
    position: absolute;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        z-index 0s,
        box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.cb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.cb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Burnt / torn edge overlay */
.cb-burn {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
            transparent 50%,
            rgba(15, 2, 18, 0.3) 75%,
            rgba(15, 2, 18, 0.7) 100%);
    mix-blend-mode: multiply;
    z-index: 2;
}

/* Tag label */
.cb-tag {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}

/* HOVER: zoom + elevate + show tag */
.cb-item:hover {
    z-index: 50 !important;
    transform: scale(1.08) translateY(-10px) translateZ(30px) !important;
}

.cb-item:hover .cb-inner {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        0 10px 20px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(157, 28, 143, 0.15);
}

.cb-item:hover .cb-inner img {
    transform: scale(1.12);
}

.cb-item:hover .cb-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile: active = hover */
@media (hover: none) {
    .cb-item:active {
        z-index: 50 !important;
        transform: scale(1.05) translateY(-6px) !important;
    }

    .cb-item:active .cb-tag {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   POSITIONS + ROTATIONS + CLIP-PATHS (Desktop)
   ============================================= */

/* 1: Cejas — LARGE, center-left, hero piece */
.cb-1 {
    width: 380px;
    height: 320px;
    top: 60px;
    left: 5%;
    z-index: 4;
    transform: rotate(-4deg);
}

.cb-1 .cb-inner {
    clip-path: polygon(2% 4%, 97% 0%, 100% 96%, 4% 100%);
}

/* 2: Uñas Polygel — top-right, overlapping 1 */
.cb-2 {
    width: 300px;
    height: 260px;
    top: 10px;
    left: 35%;
    z-index: 6;
    transform: rotate(5deg);
}

.cb-2 .cb-inner {
    clip-path: polygon(0% 3%, 98% 0%, 100% 97%, 3% 100%);
}

/* 3: Labios — LARGE center star, overlaps 1 & 2 */
.cb-3 {
    width: 360px;
    height: 340px;
    top: 180px;
    left: 30%;
    z-index: 8;
    transform: rotate(-2deg);
}

.cb-3 .cb-inner {
    clip-path: polygon(1% 2%, 99% 0%, 97% 98%, 0% 96%);
}

/* 4: Algas/Facial — bottom-left, under 1 */
.cb-4 {
    width: 260px;
    height: 240px;
    top: 430px;
    left: 2%;
    z-index: 3;
    transform: rotate(6deg);
}

.cb-4 .cb-inner {
    clip-path: polygon(3% 0%, 100% 2%, 98% 97%, 0% 100%);
}

/* 5: Lifting — right side, overlapping 3 */
.cb-5 {
    width: 280px;
    height: 300px;
    top: 100px;
    right: 2%;
    z-index: 5;
    transform: rotate(7deg);
}

.cb-5 .cb-inner {
    clip-path: polygon(0% 1%, 97% 3%, 100% 99%, 2% 97%);
}

/* 6: Cejas diseño — bottom-center, overlaps 3 & 4 */
.cb-6 {
    width: 300px;
    height: 250px;
    top: 530px;
    left: 28%;
    z-index: 7;
    transform: rotate(-6deg);
}

.cb-6 .cb-inner {
    clip-path: polygon(2% 3%, 98% 0%, 100% 95%, 0% 98%);
}

/* 7: Cejas hombre — top-far-left, small accent */
.cb-7 {
    width: 240px;
    height: 220px;
    top: 380px;
    right: 5%;
    z-index: 9;
    transform: rotate(-8deg);
}

.cb-7 .cb-inner {
    clip-path: polygon(0% 2%, 97% 0%, 100% 98%, 3% 96%);
}

/* =============================================
   RESPONSIVE — Tablet (900px)
   ============================================= */
@media (max-width: 1100px) {
    .collage-board {
        height: 750px;
    }

    .cb-1 {
        width: 320px;
        height: 270px;
        left: 2%;
    }

    .cb-2 {
        width: 260px;
        height: 220px;
        left: 32%;
    }

    .cb-3 {
        width: 310px;
        height: 290px;
        left: 26%;
        top: 170px;
    }

    .cb-4 {
        width: 230px;
        height: 210px;
        top: 390px;
    }

    .cb-5 {
        width: 240px;
        height: 260px;
        right: 1%;
    }

    .cb-6 {
        width: 260px;
        height: 220px;
        top: 490px;
        left: 24%;
    }

    .cb-7 {
        width: 210px;
        height: 190px;
        top: 350px;
        right: 3%;
    }
}

/* =============================================
   RESPONSIVE — Mobile (768px)
   Stacked but still overlapping and rotated
   ============================================= */
@media (max-width: 768px) {
    .collage-board {
        height: auto;
        min-height: 1500px;
        perspective: none;
    }

    .cb-item {
        position: absolute;
        width: 75vw !important;
        max-width: 320px;
        height: auto !important;
    }

    .cb-inner {
        height: auto;
    }

    .cb-inner img {
        height: auto;
        aspect-ratio: 4/3;
    }

    /* Stack vertically with overlaps */
    .cb-1 {
        top: 0;
        left: 8%;
        transform: rotate(-3deg);
        z-index: 4;
    }

    .cb-2 {
        top: 160px;
        left: 22%;
        transform: rotate(4deg);
        z-index: 6;
    }

    .cb-3 {
        top: 350px;
        left: 5%;
        transform: rotate(-2deg);
        z-index: 8;
    }

    .cb-4 {
        top: 520px;
        left: 20%;
        transform: rotate(5deg);
        z-index: 5;
    }

    .cb-5 {
        top: 700px;
        left: 8%;
        transform: rotate(-4deg);
        z-index: 7;
    }

    .cb-6 {
        top: 900px;
        left: 18%;
        transform: rotate(3deg);
        z-index: 6;
    }

    .cb-7 {
        top: 1090px;
        left: 10%;
        transform: rotate(-5deg);
        z-index: 9;
    }

    .cb-tag {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.7rem;
    }
}

/* =============================================
   RESPONSIVE — Small Mobile (480px)
   ============================================= */
@media (max-width: 480px) {
    .collage-board {
        min-height: 1350px;
    }

    .cb-item {
        width: 80vw !important;
        max-width: 290px;
    }

    .cb-1 {
        top: 0;
        left: 5%;
    }

    .cb-2 {
        top: 150px;
        left: 15%;
    }

    .cb-3 {
        top: 310px;
        left: 4%;
    }

    .cb-4 {
        top: 470px;
        left: 12%;
    }

    .cb-5 {
        top: 620px;
        left: 6%;
    }

    .cb-6 {
        top: 790px;
        left: 14%;
    }

    .cb-7 {
        top: 960px;
        left: 8%;
    }
}

/* Trabajos Destacados: masonry local + CTA Instagram */
#collage-trabajos .collage-board {
    display: block;
    columns: 4 240px;
    column-gap: 18px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 38px auto 0;
    perspective: none;
}

#collage-trabajos .cb-item {
    position: relative;
    inset: auto;
    display: inline-block;
    width: 100% !important;
    max-width: none;
    height: auto !important;
    margin: 0 0 18px;
    break-inside: avoid;
    transform: none !important;
    vertical-align: top;
    cursor: default;
}

#collage-trabajos .cb-inner {
    height: auto;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid rgba(242, 24, 226, 0.58);
    border-radius: 20px;
    clip-path: none;
    background: #130615;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(157, 28, 143, 0.18);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

#collage-trabajos .cb-1 .cb-inner,
#collage-trabajos .cb-6 .cb-inner,
#collage-trabajos .cb-11 .cb-inner {
    aspect-ratio: 4 / 5;
}

#collage-trabajos .cb-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) contrast(1.03);
}

#collage-trabajos .cb-burn {
    background:
        linear-gradient(to top, rgba(9, 1, 11, 0.42), transparent 38%),
        radial-gradient(ellipse at center, transparent 62%, rgba(15, 2, 18, 0.24) 100%);
    mix-blend-mode: normal;
}

#collage-trabajos .cb-tag {
    border-color: rgba(255, 102, 178, 0.35);
    background: rgba(11, 2, 13, 0.74);
    color: #f8d7f3;
}

#collage-trabajos .cb-item:hover {
    z-index: auto !important;
    transform: translateY(-6px) !important;
}

#collage-trabajos .cb-item:hover .cb-inner {
    border-color: rgba(255, 134, 211, 0.9);
    box-shadow:
        0 22px 44px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(242, 24, 226, 0.3);
    transform: scale(1.01);
}

#collage-trabajos .cb-item:hover .cb-inner img {
    transform: scale(1.045);
}

.instagram-cta-wrap {
    position: relative;
    z-index: 10;
    width: max-content;
    max-width: calc(100% - 32px);
    margin: 55px auto 0;
    border-radius: 999px;
}

.instagram-cta-glow {
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: linear-gradient(100deg, #6f55ff, #f218e2 48%, #ffc24b);
    filter: blur(13px);
    opacity: 0.58;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.instagram-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 13px 25px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    background: #130615;
    color: #fbeafa;
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.instagram-cta-arrow {
    display: inline-block;
    color: #ff9ade;
    transition: transform 0.3s ease;
}

.instagram-cta-wrap:hover .instagram-cta-glow,
.instagram-cta-wrap:focus-within .instagram-cta-glow {
    opacity: 0.88;
    filter: blur(16px);
    transform: scale(1.025);
}

.instagram-cta:hover,
.instagram-cta:focus-visible {
    color: #ffffff;
    background: #1c081f;
    transform: translateY(-2px);
    text-decoration: none;
}

.instagram-cta:hover .instagram-cta-arrow,
.instagram-cta:focus-visible .instagram-cta-arrow {
    transform: translateX(4px);
}

.instagram-cta:focus-visible {
    outline: 2px solid #ff8bd8;
    outline-offset: 5px;
}

@media (max-width: 900px) {
    #collage-trabajos .collage-board {
        columns: 3 190px;
        column-gap: 14px;
    }
}

@media (max-width: 620px) {
    .collage-section {
        padding: 65px 0 75px;
    }

    #collage-trabajos .collage-board {
        columns: 2 140px;
        column-gap: 12px;
        padding: 0 4px;
    }

    #collage-trabajos .cb-item {
        margin-bottom: 12px;
    }

    #collage-trabajos .cb-inner {
        border-radius: 15px;
    }

    #collage-trabajos .cb-tag {
        bottom: 9px;
        left: 9px;
        max-width: calc(100% - 18px);
        padding: 4px 9px;
        overflow: hidden;
        font-size: 0.58rem;
        letter-spacing: 0.8px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .instagram-cta-wrap {
        margin-top: 38px;
        margin-right: auto;
        margin-left: 18px;
        max-width: calc(100% - 108px);
    }

    .instagram-cta {
        min-height: 50px;
        padding: 12px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    #collage-trabajos .cb-item,
    #collage-trabajos .cb-inner,
    #collage-trabajos .cb-inner img,
    .instagram-cta,
    .instagram-cta-glow,
    .instagram-cta-arrow {
        transition: none;
    }
}

/* ====== Local Video Section (NUEVO) ====== */
.local-video-section {
    width: 100%;
    padding: 60px 0;
}

.local-video-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    text-align: center;
}

.local-video-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    margin: 0 0 10px 0;
    color: var(--white);
}

.local-video-subtitle {
    margin: 0;
    opacity: .85;
    font-size: clamp(14px, 1.3vw, 18px);
    color: var(--white);
}

.location-video {
    display: block;
    background: linear-gradient(135deg, #230b24, #09030a);
}

.local-video-frame {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.local-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    background: transparent;
}

.local-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .06) 0%, rgba(0, 0, 0, .42) 60%, rgba(0, 0, 0, .62) 100%);
    pointer-events: none;
}

.local-video-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Responsive heights */
@media (max-width: 980px) {
    .local-video-frame {
        height: 420px;
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .local-video-section {
        padding: 40px 0;
    }

    .local-video-frame {
        height: 300px;
        border-radius: 20px;
    }
}

/* Reduced motion: hide video, keep a nice fallback background */
@media (prefers-reduced-motion: reduce) {
    .local-video {
        display: none;
    }

    .local-video-frame {
        background: radial-gradient(ellipse at top, rgba(190, 0, 255, .18), rgba(0, 0, 0, .75));
    }
}

/* === TESTIMONIALS MARQUEE (solo esta sección) === */
.testimonials-marquee {
    padding: 70px 0;
}

.testimonials-marquee .section-header {
    text-align: center;
    margin-bottom: 25px;
}

.testimonials-marquee .section-underline {
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #b300ff;
    border-radius: 99px;
    box-shadow: 0 0 18px rgba(179, 0, 255, .65);
}

.marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 22px 0 100px;
    user-select: none;
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
    animation: marquee-ltr 90s linear infinite;
}

@keyframes marquee-ltr {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

.t-card {
    position: relative;
    width: 340px;
    min-height: 140px;
    padding: 18px 18px 22px;
    border-radius: 18px;
    background: rgba(18, 5, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    user-select: none;
    -webkit-box-reflect: below 2px linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 0.2) 100%);
}

.t-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .05), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(179, 0, 255, .08), transparent 55%);
    pointer-events: none;
}

.t-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.t-user {
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
}

.t-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.t-text {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.4;
}

/* Glitter layer */
.glitter-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* partículas */
.glitter-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 12px rgba(179, 0, 255, .9);
    transform: translate(-50%, -50%);
    animation: glitter-pop 650ms ease-out forwards;
}

@keyframes glitter-pop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.6);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -80%) scale(0);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none !important;
    }
}

/* ============================================
   RESERVATION OVERRIDES (Neon Pink Theme)
   ============================================ */
/* Tarjetas de Servicio - Base */
.sv-row {
    background-color: var(--bg-light) !important;
    border: 1px solid rgba(219, 64, 206, 0.4) !important;
    box-shadow: none !important;
}

.sv-row * {
    color: #FFFFFF !important;
}

/* Tarjetas de Servicio - Seleccionada */
.sv-row.sv-selected {
    background-color: #F218E2 !important;
    border: 2px solid #DB40CE !important;
    box-shadow: 0 0 10px #DB40CE !important;
}

/* Resumen Final */
.sum-card {
    background-color: rgba(242, 24, 226, 0.9) !important;
    border: 2px solid #DB40CE !important;
    box-shadow: 0 0 10px #DB40CE !important;
}

.sum-card * {
    color: #FFFFFF !important;
}

/* Botones de Horario - Base */
.time-slot,
.time-slot-btn {
    background-color: var(--bg-light) !important;
    border: 1px solid #DB40CE !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
}

/* Botones de Horario - Activos */
.time-slot:hover,
.time-slot.selected,
.time-slot-btn:hover,
.time-slot-btn.ts-selected {
    background-color: #F218E2 !important;
    border: 2px solid #DB40CE !important;
    box-shadow: 0 0 10px #DB40CE !important;
    color: #FFFFFF !important;
}

/* Flatpickr */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: #F218E2 !important;
    border-color: #DB40CE !important;
    color: #FFFFFF !important;
}

.flatpickr-months {
    background: #F218E2 !important;
    border-radius: 12px 12px 0 0 !important;
}

.flatpickr-current-month,
.flatpickr-current-month span.cur-month {
    color: #FFFFFF !important;
}

/* Specialist Grid */
.specialist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.specialist-card {
    background: rgba(42, 11, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 12px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px var(--sp-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.specialist-card:hover,
.specialist-card.selected {
    border-color: var(--sp-color);
    transform: translateY(-5px);
}

.specialist-card:hover::before,
.specialist-card.selected::before {
    opacity: 0.15;
}

.specialist-card.selected {
    background: rgba(42, 11, 41, 0.9);
    box-shadow: 0 8px 25px var(--sp-color);
}

.sp-avatar {
    width: 100%;
    height: 190px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid color-mix(in srgb, var(--sp-color) 70%, transparent);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    -webkit-box-reflect: below 3px linear-gradient(to bottom, transparent 72%, rgba(255, 255, 255, 0.14));
}

.sp-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.35s ease;
}

.specialist-card:hover .sp-avatar img,
.specialist-card.selected .sp-avatar img {
    transform: scale(1.035);
}

.specialist-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.specialist-card p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

@media(max-width: 768px) {
    .specialist-grid {
        gap: 12px;
    }

    .specialist-card {
        padding: 9px 9px 15px;
    }

    .sp-avatar {
        height: 150px;
        margin-bottom: 14px;
    }
}

/* Promociones y Novedades */
.promotions-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(225, 69, 154, 0.13), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(122, 55, 150, 0.16), transparent 36%),
        linear-gradient(180deg, #100612 0%, #080309 100%);
    border-block: 1px solid rgba(225, 69, 154, 0.12);
}

.promotions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.025) 50%, transparent 75%);
}

.promotions-container {
    position: relative;
    z-index: 1;
}

.promotions-heading {
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.promotions-heading .text-soft {
    margin-top: 0.65rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.2vw, 1.75rem);
}

.promotion-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(225, 69, 154, 0.4);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(46, 17, 47, 0.94), rgba(13, 6, 16, 0.98));
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.36),
        0 0 24px rgba(164, 61, 154, 0.09);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.promotion-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 117, 183, 0.72);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.45),
        0 0 32px rgba(225, 69, 154, 0.18);
}

.promotion-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #160917;
}

.promotion-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(to bottom, transparent, rgba(13, 6, 16, 0.78));
    pointer-events: none;
}

.promotion-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.promotion-card:hover .promotion-media img {
    transform: scale(1.035);
    filter: saturate(1.06);
}

.promotion-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.4rem 1.45rem 1.55rem;
}

.promotion-content h3 {
    margin-bottom: 0.65rem;
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.promotion-content p {
    flex: 1;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.promotion-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(244, 117, 183, 0.52);
    border-radius: 999px;
    color: #ffd4e9;
    background: rgba(225, 69, 154, 0.09);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.promotion-link span {
    transition: transform 0.3s ease;
}

.promotion-link:hover {
    color: #fff;
    background: rgba(225, 69, 154, 0.2);
    border-color: rgba(255, 190, 222, 0.78);
    transform: translateY(-1px);
}

.promotion-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .promotions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotion-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, calc(50% - 0.5rem));
        justify-self: center;
    }
}

@media (max-width: 620px) {
    .promotions-heading {
        margin-bottom: 1.75rem;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .promotion-card,
    .promotion-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .promotion-media {
        aspect-ratio: 4 / 4.6;
    }

    .promotion-content {
        padding: 1.2rem 1.2rem 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promotion-card,
    .promotion-media img,
    .promotion-link,
    .promotion-link span {
        transition: none;
    }
}

/* Reserva tu cita */
.reservation-cta-section {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, rgba(206, 36, 154, 0.22), transparent 38%),
        linear-gradient(145deg, #22091f, #090309 72%);
}

.reservation-bg-video {
    opacity: 0.54;
}

.reservation-video-overlay {
    background:
        linear-gradient(115deg, rgba(9, 2, 10, 0.88), rgba(38, 7, 35, 0.66) 52%, rgba(8, 2, 10, 0.86)),
        radial-gradient(circle at center, rgba(184, 31, 145, 0.1), rgba(3, 0, 5, 0.55));
}

.reservation-cta-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.reservation-cta-card {
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(247, 114, 190, 0.4);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(32, 8, 31, 0.86), rgba(8, 3, 10, 0.82)),
        rgba(12, 3, 14, 0.78);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.52),
        0 0 42px rgba(226, 28, 157, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.reservation-cta-heading {
    max-width: 780px;
    margin: 0 auto 2.35rem;
}

.reservation-cta-kicker {
    display: block;
    margin-bottom: 0.7rem;
    color: #f5a4d1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reservation-cta-heading .section-title {
    margin-bottom: 0.85rem;
}

.reservation-cta-heading p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
}

.reservation-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.reservation-step {
    display: flex;
    min-width: 0;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(240, 99, 178, 0.22);
    border-radius: 20px;
    background: rgba(15, 5, 18, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.reservation-step:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 122, 190, 0.52);
    background: rgba(33, 8, 32, 0.78);
}

.reservation-step-number {
    flex: 0 0 auto;
    color: #f45dab;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.reservation-step h3 {
    margin-bottom: 0.55rem;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.3;
}

.reservation-step p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
    line-height: 1.55;
}

.reservation-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 1.75rem 0;
}

.reservation-chips span {
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(241, 116, 187, 0.36);
    border-radius: 999px;
    color: #ffd4e9;
    background: rgba(229, 54, 154, 0.09);
    font-size: 0.82rem;
    font-weight: 700;
}

.reservation-cta-action {
    display: flex;
    justify-content: center;
}

.reservation-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 240px;
    min-height: 58px;
    padding: 0.95rem 1.8rem;
    border: 1px solid rgba(255, 190, 225, 0.5);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ed1595, #bd167f);
    box-shadow:
        0 12px 30px rgba(224, 22, 145, 0.34),
        0 0 24px rgba(244, 70, 170, 0.2);
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.reservation-cta-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow:
        0 16px 38px rgba(224, 22, 145, 0.44),
        0 0 34px rgba(244, 70, 170, 0.3);
}

.reservation-cta-button i {
    transition: transform 0.3s ease;
}

.reservation-cta-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 820px) {
    .reservation-cta-section {
        min-height: auto;
    }

    .reservation-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .reservation-cta-card {
        padding: 1.65rem 1rem;
        border-radius: 24px;
    }

    .reservation-cta-heading {
        margin-bottom: 1.5rem;
    }

    .reservation-step {
        padding: 1.1rem;
    }

    .reservation-chips {
        margin: 1.35rem 0 1.5rem;
    }

    .reservation-cta-button {
        width: 100%;
        min-width: 0;
    }

    .reservation-cta-action {
        padding-right: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reservation-bg-video {
        display: none;
    }

    .reservation-step,
    .reservation-cta-button,
    .reservation-cta-button i {
        transition: none;
    }
}

/* ====== Nuestros Productos (TAREA 1) ====== */
.products-preview-card {
    background: rgba(10, 2, 11, 0.6);
    border: 1px solid rgba(222, 163, 212, 0.2); /* Sutil rosado/morado (#DEA3D4) */
    box-shadow: 0 10px 40px 0 rgba(255, 102, 178, 0.12); /* Glow fucsia suave */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 55px 40px;
    max-width: 860px;
    margin: 0 auto;
    transition: all 0.35s ease;
}

.products-preview-card:hover {
    border-color: rgba(255, 102, 178, 0.35);
    box-shadow: 0 12px 48px 0 rgba(255, 102, 178, 0.22);
}

@media (max-width: 768px) {
    .products-preview-card {
        padding: 35px 20px;
        border-radius: 24px;
    }
}

/* ====== Dónde Encontrarnos (TAREA 2) ====== */
.loc-card {
    background: rgba(10, 2, 11, 0.65);
    border: 1px solid rgba(222, 163, 212, 0.18); /* Sutil rosado/morado (#DEA3D4) */
    box-shadow: 0 10px 40px 0 rgba(157, 28, 143, 0.15); /* Glow morado suave */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 45px;
    margin-top: 35px;
    transition: all 0.35s ease;
}

.loc-card:hover {
    border-color: rgba(255, 102, 178, 0.3);
    box-shadow: 0 12px 48px 0 rgba(157, 28, 143, 0.22);
}

.loc-card .loc-grid {
    margin-top: 0 !important; /* Quitar el margen superior heredado */
}

@media (max-width: 980px) {
    .loc-card {
        padding: 30px;
    }
}

@media (max-width: 560px) {
    .loc-card {
        padding: 20px;
        border-radius: 20px;
        margin-top: 25px;
    }
}

/* ====== Capacitaciones y Certificaciones (TAREA 2) ====== */
.cert-section {
    background-color: var(--bg-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.cert-header {
    margin-bottom: 40px;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Gradient overlays for smooth fading edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    height: 100%;
    width: 150px;
    position: absolute;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    padding: 0 15px;
}

.cert-card {
    background: rgba(10, 2, 11, 0.65);
    border: 1px solid rgba(222, 163, 212, 0.15); /* #DEA3D4 */
    box-shadow: 0 8px 25px rgba(255, 102, 178, 0.08); /* Glow fucsia suave */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 190px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: rgba(255, 102, 178, 0.35);
    box-shadow: 0 10px 30px rgba(255, 102, 178, 0.18);
    transform: translateY(-3px);
}

.cert-card img {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease;
}

.cert-card:hover img {
    filter: brightness(1) contrast(1.1) drop-shadow(0 4px 8px rgba(255, 102, 178, 0.3));
}

.cert-card img.dark-logo {
    filter: invert(1) brightness(1.8) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.cert-card:hover img.dark-logo {
    filter: invert(1) brightness(2) drop-shadow(0 4px 8px rgba(255, 102, 178, 0.4));
}

.cert-card span {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .cert-section {
        padding: 40px 0;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 60px;
    }
    .cert-card {
        width: 150px;
        height: 120px;
        padding: 15px;
        border-radius: 16px;
    }
    .cert-card img {
        height: 45px;
    }
    .cert-card span {
        margin-top: 8px;
        font-size: 0.75rem;
    }
}
