:root {
    /* Luxury Obsidian & Liquid Gold Palette */
    --bg-dark: #090807;          /* Pure Luxury Obsidian */
    --bg-surface: #131110;       /* Rich Charcoal Bronze */
    --bg-surface-hover: #1B1816; /* Lighter Charcoal Bronze */
    --gold: #D4AF37;             /* Classic Metallic Gold */
    --gold-warm: #D6AF83;        /* Warm Champagne Gold */
    --gold-light: #F0DFC8;       /* Luminous Light Gold */
    --gold-dim: rgba(214, 175, 131, 0.2);
    --gold-glow: rgba(214, 175, 131, 0.05);
    
    --text-primary: #FCFAF7;     /* Pure Soft Pearl */
    --text-muted: #A8A095;       /* Muted Champagne / Taupe */
    --text-dark: #090807;        /* Contrast Dark Obsidian */
    
    --rosewood: #96705F;         /* Elegant Rosewood Accent */
    --rosewood-glow: rgba(150, 112, 95, 0.08);
    --line: rgba(214, 175, 131, 0.12);
    --border-glow: rgba(214, 175, 131, 0.25);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --radius-premium: 20px;
    --radius-card: 24px;
    --radius-btn: 999px;
}

/* ---------- RESET & BASICS ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

/* Subtle luxury grain effect */
.grain-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.8 0 0 0 0.15 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
    opacity: 0.18;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

/* Ambient glows */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.glow-rosewood {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rosewood-glow) 0%, transparent 75%);
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.italic-gold {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--gold-warm);
    font-weight: 400;
}

.thin {
    font-weight: 300;
    font-family: var(--font-heading);
    opacity: 0.8;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-btn);
    background: rgba(27, 24, 22, 0.4);
    backdrop-filter: blur(8px);
    color: var(--gold-warm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge::before {
    content: '✦';
    font-size: 0.7rem;
    color: var(--gold);
}

/* ---------- BUTTONS ---------- */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-warm) 0%, #b89163 100%);
    color: var(--text-dark);
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(214, 175, 131, 0.25);
    cursor: pointer;
}

.btn-main i {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
    transition: var(--transition-fast);
}

.btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(214, 175, 131, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-warm) 100%);
}

.btn-main:hover i {
    transform: translate(3px, -3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1.1rem 2rem;
    border-radius: var(--radius-btn);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    background: rgba(252, 250, 247, 0.05);
    border-color: var(--gold-warm);
    transform: translateY(-2px);
}

.btn-minimal {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-btn);
    text-decoration: none;
    color: var(--gold-warm);
    background: rgba(19, 17, 16, 0.6);
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-minimal:hover {
    border-color: var(--gold-warm);
    background: var(--gold-warm);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(214, 175, 131, 0.2);
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.3rem 0;
    background: rgba(9, 8, 7, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 0.9rem 0;
    background: rgba(9, 8, 7, 0.9);
    border-bottom-color: rgba(214, 175, 131, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    letter-spacing: 0.25em;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 1.4rem;
    text-decoration: none;
}

.logo span {
    color: var(--gold-warm);
}

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

.nav-links li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.2rem 0;
}

.nav-links li a:not(.btn-minimal)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold-warm);
    transition: var(--transition-fast);
}

.nav-links li a:not(.btn-minimal):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--text-primary);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero .glow-bg {
    top: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
}

.hero .glow-rosewood {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 4rem;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.hero-left h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.15rem;
    max-width: 580px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    font-weight: 300;
}

.care-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.care-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-btn);
    background: rgba(27, 24, 22, 0.55);
    border: 1px solid var(--line);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 400;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.care-highlights li:hover {
    border-color: var(--gold-warm);
    transform: translateY(-2px);
    background: rgba(27, 24, 22, 0.8);
}

.care-highlights li i {
    width: 16px;
    height: 16px;
    color: var(--gold-warm);
    stroke-width: 1.5;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px dashed var(--gold-warm);
    opacity: 0.35;
    border-radius: 200px 200px 30px 30px;
    pointer-events: none;
    transition: var(--transition);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 0.8;
    overflow: hidden;
    border-radius: 200px 200px 24px 24px;
    border: 1px solid var(--line);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px var(--line);
    transition: var(--transition);
    background-color: var(--bg-surface);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.05);
    transition: var(--transition);
}

.hero-image-container:hover .image-wrapper {
    transform: scale(1.01) translateY(-5px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 20px var(--gold-glow);
}

.hero-image-container:hover::before {
    transform: rotate(-1.5deg) scale(1.03);
    opacity: 0.6;
}

/* Floating gold star embellishment */
.gold-star-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: var(--bg-surface);
    border: 1px solid var(--gold-warm);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: slow-rotate 25s linear infinite;
}

.gold-star-badge span {
    font-size: 0.65rem;
    color: var(--gold-warm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gold-star-badge i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    margin-bottom: 3px;
}

@keyframes slow-rotate {
    to { transform: rotate(360deg); }
}

/* ---------- MARQUEE ---------- */
.marquee-wrapper {
    overflow: hidden;
    padding: 2.2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(19, 17, 16, 0.4);
    backdrop-filter: blur(5px);
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}

.marquee span {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-heading);
    font-style: italic;
    color: rgba(252, 250, 247, 0.08);
    margin-right: 4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee span::after {
    content: '✦';
    font-size: 1.2rem;
    color: var(--gold-dim);
}

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

/* ---------- EL METODO / EXPERIENCIA ---------- */
.editorial-section {
    padding: 9rem 0;
    position: relative;
}

.editorial-section .glow-bg {
    top: 30%;
    right: -10%;
    width: 600px;
    height: 600px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 5rem;
    align-items: flex-start;
}

.title-xl {
    font-size: clamp(3rem, 7.5vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin-bottom: 2rem;
}

.large-p {
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    line-height: 1.35;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 580px;
}

.divider {
    width: 100px;
    height: 1px;
    background: var(--gold-warm);
    margin: 2.5rem 0;
    position: relative;
}

.divider::after {
    content: '✦';
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 0.8rem;
    color: var(--gold);
}

/* ---------- EL METODO CAROUSEL ---------- */
.experience-carousel-container {
    background: rgba(19, 17, 16, 0.45);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 3rem 2.8rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.carousel-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2.2rem;
    padding-bottom: 0.2rem;
}

.carousel-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.carousel-tab::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-warm);
    transition: var(--transition-fast);
}

.carousel-tab.active {
    color: var(--gold-warm);
    text-shadow: 0 0 10px rgba(214, 175, 131, 0.25);
}

.carousel-tab.active::after {
    width: 100%;
}

.carousel-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.card-float {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.card-float::before {
    display: none;
}

.card-float:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.card-float i {
    color: var(--gold-warm);
    margin-bottom: 1.5rem;
    width: 32px;
    height: 32px;
    stroke-width: 1.2px;
}

.card-float h3 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.card-float p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 300;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 2.2rem;
    border-top: 1px solid var(--line);
    padding-top: 1.8rem;
}

.carousel-arrow {
    background: rgba(9, 8, 7, 0.6);
    border: 1px solid var(--line);
    color: var(--gold-warm);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-arrow:hover {
    border-color: var(--gold-warm);
    background: var(--gold-warm);
    color: var(--text-dark);
    transform: scale(1.05);
}

.carousel-arrow i {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(252, 250, 247, 0.15);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold-warm);
    transform: scale(1.15);
    box-shadow: 0 0 8px rgba(214, 175, 131, 0.4);
}

.carousel-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(252, 250, 247, 0.04);
    position: absolute;
    bottom: 0;
    left: 0;
}

.carousel-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-warm);
    transition: width 0.05s linear;
}

@media (max-width: 576px) {
    .experience-carousel-container {
        padding: 2rem 1.6rem;
    }
    .carousel-tabs {
        gap: 0.1rem;
    }
    .carousel-tab {
        font-size: 0.75rem;
        padding: 0.6rem 0.4rem;
        letter-spacing: 0.02em;
    }
    .card-float h3 {
        font-size: 1.6rem;
    }
    .card-float p {
        font-size: 0.98rem;
    }
}


.calm-note {
    padding: 1.8rem 2rem;
    background: rgba(150, 112, 95, 0.08);
    border-radius: var(--radius-card);
    color: var(--gold-light);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    font-family: var(--font-heading);
    border: 1px dashed rgba(214, 175, 131, 0.2);
    position: relative;
}

.calm-note::before {
    content: '“';
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 4rem;
    color: rgba(214, 175, 131, 0.25);
    font-family: var(--font-heading);
    line-height: 1;
}

.calm-note p {
    padding-left: 1.5rem;
    font-weight: 300;
}

/* ---------- INTERACTIVE QUIZ SELECTOR (HIGH CONVERSION) ---------- */
.quiz-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(19, 17, 16, 0.4) 50%, transparent 100%);
}

.quiz-section .glow-bg {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(214, 175, 131, 0.04) 0%, transparent 70%);
}

.quiz-container {
    max-width: 840px;
    margin: 0 auto;
    background: rgba(19, 17, 16, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 4rem 3.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
}

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

.quiz-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.quiz-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}

.quiz-steps {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.step-indicator {
    width: 45px;
    height: 3px;
    background: rgba(252, 250, 247, 0.1);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.step-indicator.active {
    background: var(--gold-warm);
    box-shadow: 0 0 10px rgba(214, 175, 131, 0.4);
}

.step-indicator.completed {
    background: #b89163;
}

.quiz-step-pane {
    display: none;
}

.quiz-step-pane.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.quiz-question {
    font-size: 1.45rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.quiz-option {
    background: rgba(9, 8, 7, 0.4);
    border: 1px solid var(--line);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-premium);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.quiz-option:hover {
    border-color: rgba(214, 175, 131, 0.4);
    background: rgba(27, 24, 22, 0.5);
    transform: translateY(-2px);
}

.quiz-option.selected {
    border-color: var(--gold-warm);
    background: rgba(214, 175, 131, 0.08);
    box-shadow: 0 0 20px rgba(214, 175, 131, 0.1);
}

.quiz-option i {
    width: 24px;
    height: 24px;
    color: var(--gold-warm);
    stroke-width: 1.5px;
}

.quiz-option span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.quiz-option p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quiz-nav-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
}

/* Quiz Result Pane styling */
.result-box {
    text-align: center;
    padding: 1rem 0;
}

.result-box h3 {
    font-size: 1.4rem;
    color: var(--gold-warm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.result-box h2.treatment-name {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.result-card {
    background: rgba(9, 8, 7, 0.5);
    border: 1px solid rgba(214, 175, 131, 0.2);
    border-radius: var(--radius-premium);
    padding: 2.2rem;
    margin: 2rem auto 2.5rem;
    max-width: 620px;
    text-align: left;
    backdrop-filter: blur(8px);
}

.result-card p.desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.result-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px dashed var(--line);
    padding-top: 1.5rem;
}

.spec-item {
    font-size: 0.95rem;
}

.spec-item strong {
    color: var(--gold-warm);
    font-weight: 500;
}

.btn-restart {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.btn-restart:hover {
    color: var(--gold-warm);
}

/* ---------- SERVICES CURATED ---------- */
.services-curated {
    padding: 9rem 0;
    position: relative;
}

.services-curated .glow-bg {
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
}

.curated-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4.5rem;
}

.curated-header .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-warm) 0%, rgba(214, 175, 131, 0.05) 100%);
}

.curated-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    white-space: nowrap;
}

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

.service-item {
    padding: 2.2rem 2.5rem;
    background: rgba(19, 17, 16, 0.45);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-warm);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-item:hover {
    background: rgba(27, 24, 22, 0.65);
    border-color: rgba(214, 175, 131, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.service-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.service-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.service-item .number {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-warm);
    font-size: 1.15rem;
    opacity: 0.7;
    width: 30px;
}

.service-name {
    flex: 1;
}

.service-item h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 0.3rem;
    transition: var(--transition-fast);
}

.service-item p.summary {
    color: var(--text-muted);
    font-size: 1.02rem;
    font-weight: 300;
}

.item-icon {
    color: var(--gold-warm);
    width: 28px;
    height: 28px;
    transition: var(--transition);
    stroke-width: 1.2px;
}

/* Details Expansion */
.service-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-inner {
    padding: 2.2rem 0 0.5rem 50px;
    border-top: 1px solid var(--line);
    margin-top: 1.8rem;
    animation: fadeContent 0.5s ease forwards;
}

@keyframes fadeContent {
    from { opacity: 0; }
    to { opacity: 1; }
}

.details-inner > p {
    font-size: 1.08rem;
    max-width: 820px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.2rem;
}

.info-col {
    background: rgba(9, 8, 7, 0.45);
    border: 1px solid var(--line);
    border-radius: var(--radius-premium);
    padding: 1.8rem;
}

.info-col h4 {
    font-size: 1.15rem;
    color: var(--gold-warm);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

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

.info-col li {
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.6;
}

.info-col li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.65rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px dashed var(--line);
    padding-top: 1.8rem;
    margin-top: 1.5rem;
}

.service-meta p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.service-meta p strong {
    color: var(--text-primary);
    font-weight: 500;
}

.service-price {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--gold-light);
}

.service-price span.promo {
    color: var(--gold-warm);
    font-size: 1rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-left: 0.8rem;
}

/* Active State */
.service-item.active {
    background: rgba(19, 17, 16, 0.8);
    border-color: var(--gold-warm);
}

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

.service-item.active .service-details-content {
    max-height: 1200px;
}

.service-item.active .item-icon {
    transform: rotate(45deg);
    color: var(--text-primary);
}

.service-item.active h3 {
    color: var(--gold-warm);
}

/* ---------- EDITORIAL REVIEWS & TRUST ---------- */
.reviews-section {
    padding: 9rem 0;
    position: relative;
}

.reviews-section .glow-bg {
    top: 50%;
    right: -15%;
    width: 600px;
    height: 600px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 5rem;
}

.reviews-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.reviews-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.review-card {
    background: rgba(19, 17, 16, 0.5);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 5rem;
    color: rgba(214, 175, 131, 0.08);
    font-family: var(--font-heading);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 175, 131, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-text {
    font-size: 1.08rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 2rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--gold-warm);
}

.author-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* ---------- FAQS (PREGUNTAS FRECUENTES) ---------- */
.faq-section {
    padding: 8rem 0;
    position: relative;
}

.faq-section .glow-bg {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.faq-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 1.2rem 2.5rem 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 300;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-warm);
    transition: var(--transition-fast);
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--gold-warm);
}

/* ---------- FINAL CTA ---------- */
.final-cta-section {
    padding: 8rem 0;
    position: relative;
}

.final-cta {
    padding: 7rem 4rem;
    background: linear-gradient(135deg, #131110 0%, #1c1917 100%);
    border: 1px solid rgba(214, 175, 131, 0.2);
    color: var(--text-primary);
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.8 0 0 0 0.12 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.final-cta .glow-bg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 175, 131, 0.06) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2.4rem, 6.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.final-cta p.cta-copy {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.btn-giant {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--gold-warm) 0%, #b89163 100%);
    color: var(--text-dark);
    padding: 1.3rem 2.8rem;
    border-radius: var(--radius-btn);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(214, 175, 131, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.btn-giant:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(214, 175, 131, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-warm) 100%);
}

.location-clarity {
    margin-top: 2rem;
    color: var(--gold-warm);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-family: var(--font-body);
}

/* ---------- FOOTER ---------- */
footer {
    padding: 6rem 0 4rem;
    border-top: 1px solid var(--line);
    background: rgba(9, 8, 7, 0.6);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    letter-spacing: 0.25em;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 1.8rem;
    text-decoration: none;
}

.footer-logo span {
    color: var(--gold-warm);
}

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

.footer-socials a {
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-btn);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.footer-socials a:hover {
    background: var(--gold-warm);
    color: var(--text-dark);
    border-color: var(--gold-warm);
    box-shadow: 0 5px 15px rgba(214, 175, 131, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(252, 250, 247, 0.05);
    padding-top: 2rem;
}

.info-group p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

.footer-icon {
    width: 15px;
    height: 15px;
    color: var(--gold-warm);
}

.copyright {
    font-size: 0.88rem;
    color: rgba(252, 250, 247, 0.3);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-warm) 0%, #b89163 100%);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 
        0 15px 35px rgba(214, 175, 131, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed var(--gold-warm);
    opacity: 0.5;
    animation: float-spin 20s linear infinite;
}

@keyframes float-spin {
    to { transform: rotate(360deg); }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-warm) 100%);
    box-shadow: 0 20px 40px rgba(214, 175, 131, 0.55);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

/* ---------- SCROLL REVEAL CLASS ---------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.8rem;
    }

    header {
        padding: 1.1rem 0;
    }

    .nav-links {
        display: none; /* Can build clean full menu or minimal links */
    }

    .hero {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-left h1 {
        font-size: clamp(2.8rem, 11vw, 4.8rem);
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .care-highlights {
        justify-content: center;
    }

    .cta-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-main, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }

    .hero-image-container {
        max-width: 320px;
    }
    
    .gold-star-badge {
        width: 75px;
        height: 75px;
        bottom: -10px;
        right: -10px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .title-xl {
        font-size: clamp(2.8rem, 12vw, 4.4rem);
    }

    .large-p {
        max-width: 100%;
    }

    .editorial-section,
    .quiz-section,
    .services-curated,
    .reviews-section,
    .faq-section,
    .final-cta-section {
        padding: 6rem 0;
    }

    .quiz-container {
        padding: 3rem 2rem;
    }

    .quiz-options-grid {
        grid-template-columns: 1fr;
    }

    .quiz-option {
        padding: 1.5rem 1.2rem;
    }

    .final-cta {
        padding: 5rem 2rem;
        border-radius: 30px;
    }

    .service-item {
        padding: 1.8rem;
    }

    .details-inner {
        padding-left: 0;
    }

    .service-main {
        align-items: flex-start;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    .info-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float::before {
        inset: -4px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-left h1 {
        font-size: 2.3rem;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .quiz-question {
        font-size: 1.25rem;
    }

    .result-specs-grid {
        grid-template-columns: 1fr;
    }

    .service-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
    }
    
    .service-footer .btn-main {
        width: 100%;
        text-align: center;
    }

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