:root {
    --purple-darkest: #0D0A1A;
    --purple-darker: #1A1030;
    --purple-dark: #2D1B4E;
    --purple-mid: #4A2D7A;
    --purple-main: #6B3FA0;
    --purple-light: #8B5FC0;
    --purple-lighter: #A67DD4;
    --purple-soft: #C9A8E8;
    --purple-pale: #E8D5F5;
    --gold-dark: #8B7030;
    --gold-main: #C9A84C;
    --gold-light: #D4B96A;
    --gold-lighter: #E0CC8A;
    --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E0CC8A 25%, #D4B96A 50%, #C9A84C 75%, #8B7030 100%);
    --gold-text: linear-gradient(135deg, #D4B96A 0%, #E8D5A0 50%, #C9A84C 100%);
    --white: #FFFFFF;
    --off-white: #F5F0FA;
    --text-light: #E8E0F0;
    --text-muted: #A89CB8;
    --bg-gradient-hero: linear-gradient(170deg, #0D0A1A 0%, #1A1030 30%, #2D1B4E 60%, #1A1030 100%);
    --bg-gradient-section: linear-gradient(180deg, #1A1030 0%, #2D1B4E 100%);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
    --shadow-purple: 0 8px 40px rgba(107, 63, 160, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--purple-darkest);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--purple-darkest);
}
::-webkit-scrollbar-thumb {
    background: var(--purple-mid);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-main);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0.8rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 150px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.25));
}

.navbar.scrolled .nav-logo-img {
    height: 110px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-main);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.8rem !important;
    border: 1px solid var(--gold-main) !important;
    color: var(--gold-main) !important;
    border-radius: 50px;
    font-size: 0.8rem !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold-main) !important;
    color: var(--purple-darkest) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold-main);
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-gradient-hero);
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-main) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: floatOrb 15s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatOrb 20s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes pulseOrb {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-main);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 0.8; transform: translateY(-20px) scale(1); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    background: rgba(201, 168, 76, 0.05);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-logo-main {
    max-width: 500px;
    margin: 0 auto 2rem;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 30px rgba(201, 168, 76, 0.25));
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease 1.1s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.3s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--purple-darkest);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    border-color: var(--gold-main);
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-main), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTION COMMONS ========== */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-main);
    margin-bottom: 1rem;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-main);
    opacity: 0.4;
}

.section-label::before {
    right: calc(100% + 15px);
}
.section-label::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .gold {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.divider-gold {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 1.5rem auto;
}

/* ========== ABOUT / PRÓLOGO ========== */
.section-about {
    background: linear-gradient(180deg, var(--purple-darkest) 0%, var(--purple-darker) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.about-image-inner .quote-icon {
    font-size: 4rem;
    color: var(--gold-main);
    opacity: 0.3;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.about-image-inner .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-image-inner .quote-author {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.about-float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(26, 16, 48, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    z-index: 2;
}

.about-float-card .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-float-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-main);
    font-size: 1rem;
}

.about-feature-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ========== PARTS / CONTENIDO ========== */
.section-parts {
    background: var(--purple-darker);
    position: relative;
}

.section-parts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.parts-timeline {
    position: relative;
    padding-left: 3rem;
}

.parts-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold-main), var(--purple-mid), var(--gold-main));
}

.part-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 2rem;
}

.part-item:last-child {
    margin-bottom: 0;
}

.part-item::before {
    content: '';
    position: absolute;
    left: -3.35rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-main);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.part-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.part-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.part-description {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.part-chapters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chapter-tag {
    padding: 0.4rem 1rem;
    background: rgba(107, 63, 160, 0.2);
    border: 1px solid rgba(107, 63, 160, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--purple-soft);
    letter-spacing: 0.5px;
}

/* ========== SÍNTOMAS ========== */
.section-symptoms {
    background: linear-gradient(180deg, var(--purple-darker) 0%, var(--purple-darkest) 100%);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.symptom-card {
    background: rgba(26, 16, 48, 0.6);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.symptom-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-purple);
}

.symptom-card:hover::before {
    opacity: 1;
}

.symptom-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(107, 63, 160, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.symptom-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.symptom-card .symptom-chapter {
    font-size: 0.7rem;
    color: var(--gold-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.symptom-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.symptom-card .highlight-text {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* ========== LO QUE AYUDA ========== */
.section-helps {
    background: var(--purple-darker);
    position: relative;
    overflow: hidden;
}

.section-helps::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.15), transparent 70%);
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.helps-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.help-card {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.6), rgba(26, 16, 48, 0.8));
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.help-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.help-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.help-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 400;
}

.help-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.help-card ul {
    list-style: none;
    text-align: left;
}

.help-card ul li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-card ul li::before {
    content: '✦';
    color: var(--gold-main);
    font-size: 0.6rem;
}

.help-quote {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    position: relative;
    z-index: 1;
}

.help-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== OPCIONES ========== */
.section-options {
    background: linear-gradient(180deg, var(--purple-darker) 0%, var(--purple-darkest) 100%);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.option-card {
    background: rgba(26, 16, 48, 0.5);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.option-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.option-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.option-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
}

.option-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: 300;
}

.listen-body-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(107, 63, 160, 0.15));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.listen-body-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.listen-body-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========== RUTINA ========== */
.section-routine {
    background: var(--purple-darker);
}

.routine-table-wrapper {
    background: rgba(13, 10, 26, 0.6);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.routine-table {
    width: 100%;
    border-collapse: collapse;
}

.routine-table thead th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gold-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    background: rgba(201, 168, 76, 0.05);
}

.routine-table tbody tr {
    transition: background 0.3s ease;
}

.routine-table tbody tr:hover {
    background: rgba(107, 63, 160, 0.1);
}

.routine-table tbody td {
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(107, 63, 160, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.routine-table tbody tr:last-child td {
    border-bottom: none;
}

.routine-table .day-label {
    font-weight: 600;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.routine-type {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.type-fuerza {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.type-descanso {
    background: rgba(107, 63, 160, 0.2);
    color: var(--purple-soft);
    border: 1px solid rgba(107, 63, 160, 0.3);
}

.type-cardio {
    background: rgba(139, 95, 192, 0.15);
    color: var(--purple-lighter);
    border: 1px solid rgba(139, 95, 192, 0.3);
}

.routine-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--gold-main);
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.routine-note .note-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.routine-note p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ========== TEST ========== */
.section-test {
    background: linear-gradient(180deg, var(--purple-darker) 0%, var(--purple-darkest) 100%);
}

.test-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.test-intro p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.test-container {
    max-width: 800px;
    margin: 0 auto;
}

.test-questions {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.test-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(26, 16, 48, 0.6);
    border: 1px solid rgba(107, 63, 160, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-question:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(45, 27, 78, 0.4);
}

.test-question.checked {
    border-color: var(--gold-main);
    background: rgba(201, 168, 76, 0.08);
}

.test-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: transparent;
    font-size: 0.8rem;
}

.test-question.checked .test-checkbox {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: var(--purple-darkest);
}

.test-question-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

.test-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: var(--gold-gradient);
    color: var(--purple-darkest);
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.test-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.test-result {
    display: none;
    text-align: center;
    padding: 2.5rem;
    background: rgba(26, 16, 48, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 20px;
}

.test-result.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.test-result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.test-result h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.test-result p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.test-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.test-stage {
    padding: 1.5rem;
    background: rgba(26, 16, 48, 0.5);
    border: 1px solid rgba(107, 63, 160, 0.15);
    border-radius: 16px;
    text-align: center;
}

.test-stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-main);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.test-stage h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.test-stage p {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 300;
}

/* ========== PROGRAMA ========== */
.section-program {
    background: linear-gradient(180deg, var(--purple-darkest) 0%, var(--purple-darker) 50%, var(--purple-darkest) 100%);
    position: relative;
}

.program-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.program-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 300;
}

.program-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.program-visual {
    position: relative;
}

.program-card-stack {
    position: relative;
    height: 400px;
}

.program-stack-card {
    position: absolute;
    width: 280px;
    padding: 2rem;
    background: rgba(26, 16, 48, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.program-stack-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-3deg);
}

.program-stack-card:nth-child(2) {
    top: 60px;
    left: 120px;
    z-index: 2;
    transform: rotate(2deg);
}

.program-stack-card:nth-child(3) {
    top: 130px;
    left: 40px;
    z-index: 1;
    transform: rotate(-1deg);
}

.program-stack-card .psc-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.program-stack-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.program-stack-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.program-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.program-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.program-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: 2rem;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
}

.program-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.3);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-main);
    font-weight: 600;
}

.program-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.program-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ========== HÁBITOS ========== */
.section-habits {
    background: var(--purple-darker);
}

.habits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.habit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 10, 26, 0.5);
    border: 1px solid rgba(107, 63, 160, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.habit-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateX(4px);
}

.habit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.habit-text h4 {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.habit-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ========== MENSAJE FINAL / CTA ========== */
.section-cta {
    background: var(--purple-darkest);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.1), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta-quote .gold-inline {
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtext {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(13, 10, 26, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 1.2rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.15));
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 300px;
}

.footer-brand .footer-tagline {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-main);
    opacity: 0.7;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 63, 160, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-main);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-main);
}

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold-main);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { order: -1; }
    .about-float-card { bottom: -20px; right: 20px; }
    .helps-cards { grid-template-columns: 1fr; }
    .program-hero { grid-template-columns: 1fr; gap: 3rem; }
    .program-card-stack { height: 350px; }
    .program-steps { grid-template-columns: repeat(2, 1fr); }
    .program-step::after { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .habits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-logo-img { height: 60px; }
    .navbar.scrolled .nav-logo-img { height: 50px; }

    .hero-logo-main { max-width: 340px; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 2px; }

    .section { padding: 4rem 1.5rem; }

    .symptoms-grid { grid-template-columns: 1fr; }
    .options-grid { grid-template-columns: 1fr; }
    .test-stages { grid-template-columns: 1fr; }
    .program-steps { grid-template-columns: 1fr; }
    .habits-grid { grid-template-columns: 1fr; }

    .program-card-stack {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .program-stack-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        transform: none !important;
    }

    .parts-timeline { padding-left: 2rem; }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .routine-table-wrapper {
        overflow-x: auto;
    }

    .routine-table {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .about-float-card { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
    .hero-logo-main { max-width: 280px; }
}

/* ========== SOLICITAR ========== */
.section-solicitar {
    background: linear-gradient(180deg, var(--purple-darker) 0%, var(--purple-darkest) 100%);
}
.solicitar-form {
    background: rgba(26,16,48,0.6);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.solicitar-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.solicitar-form label {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.solicitar-form input,
.solicitar-form textarea {
    padding: 0.9rem 1.2rem;
    background: rgba(13,10,26,0.7);
    border: 1px solid rgba(107,63,160,0.3);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    resize: vertical;
}
.solicitar-form input:focus,
.solicitar-form textarea:focus {
    outline: none;
    border-color: var(--gold-main);
    background: rgba(13,10,26,0.9);
}
#solicitarMsg {
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
}
#solicitarMsg.success { color: var(--gold-light); }
#solicitarMsg.error { color: #E85D75; }

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .solicitar-form { padding: 1.5rem; }
}

/* ============ NUEVO: CITA CON CALENDARIO ============ */
.cita-form-wrapper {
    background: rgba(26,16,48,0.6);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
    padding: 2.5rem;
}

.cita-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(107,63,160,0.2);
}
.cita-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--purple-darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}
.cita-step-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
}

.cita-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.cita-buttons button {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* CALENDARIO */
.calendario-wrapper {
    background: rgba(13,10,26,0.5);
    border: 1px solid rgba(107,63,160,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.cal-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}
.cal-mes {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 500;
    text-align: center;
    flex: 1;
    text-transform: capitalize;
}
.cal-nav-btn {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cal-nav-btn:hover:not(:disabled) {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold-main);
    transform: scale(1.1);
}
.cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-dias-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.cal-dia {
    background: rgba(13,10,26,0.6);
    border: 1px solid rgba(107,63,160,0.2);
    border-radius: 10px;
    padding: 0.7rem 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-family: inherit;
    color: var(--text-light);
}
.cal-dia:hover:not(:disabled) {
    border-color: var(--gold-light);
    background: rgba(201,168,76,0.08);
    transform: translateY(-2px);
}
.cal-dia:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}
.cal-dia.seleccionado {
    background: var(--gold-gradient);
    border-color: var(--gold-main);
    color: var(--purple-darkest);
    box-shadow: 0 5px 20px rgba(201,168,76,0.4);
}
.cal-dia.seleccionado .cal-dia-semana,
.cal-dia.seleccionado .cal-dia-libres {
    color: var(--purple-darkest);
    opacity: 0.8;
}

.cal-dia-semana {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.cal-dia-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin: 0.15rem 0;
}
.cal-dia-libres {
    font-size: 0.65rem;
    color: var(--gold-light);
    font-weight: 500;
}

.cal-horas-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107,63,160,0.2);
}
.cal-horas-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    text-align: center;
}
.cal-horas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
}
.cal-hora {
    background: rgba(13,10,26,0.6);
    border: 1px solid rgba(107,63,160,0.2);
    border-radius: 10px;
    padding: 0.7rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
}
.cal-hora:hover:not(:disabled) {
    border-color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}
.cal-hora:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}
.cal-hora.seleccionada {
    background: var(--gold-gradient);
    border-color: var(--gold-main);
    color: var(--purple-darkest);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.cal-sin-disp {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CONFIRMACIÓN */
.cita-exito {
    text-align: center;
    padding: 2rem 1rem;
}
.cita-exito-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.cita-exito h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    background: var(--gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.cita-exito p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.cita-exito-detalle {
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(107,63,160,0.15));
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 14px;
    padding: 1.5rem;
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}
.cita-exito-detalle strong {
    color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.3rem;
}
.cita-exito-detalle span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .cita-form-wrapper { padding: 1.5rem; }
    .cal-dias-grid { grid-template-columns: repeat(4, 1fr); }
    .cal-horas-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
    .cita-buttons button { min-width: 100%; }
}