/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #9b5de5;
    --color-primary-light: #f5eeff;
    --color-primary-dark: #7b2cbf; /* Darker, richer purple - WCAG AA compliant contrast (5.3:1) on white */
    --color-primary-rgb: 155, 93, 229;
    
    --color-secondary: #00f5d4;
    --color-secondary-light: #e6fffc;
    --color-secondary-dark: #007a68; /* Darker, organic deep teal - WCAG AA compliant contrast (5.2:1) on white */
    --color-secondary-rgb: 0, 245, 212;

    --color-text-dark: #1a1a24;
    --color-text-muted: #4b5162; /* Accessible slate gray - WCAG AA compliant contrast (6.2:1) on white and (5.5:1) on alt-bg */
    
    --color-bg-light: #faf9fc;
    --color-bg-alt: #f3f6f6;
    --color-white: #ffffff;
    
    --color-success: #10b981;
    --color-danger: #ef4444;

    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(155, 93, 229, 0.07), 0 4px 6px -2px rgba(155, 93, 229, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 25px 50px -12px rgba(155, 93, 229, 0.15);
    --shadow-glass: inset 0 1px 0 0 rgba(255, 255, 255, 0.5), 0 15px 35px rgba(0, 0, 0, 0.05);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-round: 50%;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Visible Focus Outline for Keyboard Accessibility (WCAG AA Compliant) */
*:focus-visible {
    outline: 3px solid var(--color-primary-dark) !important;
    outline-offset: 3px !important;
}

/* ==========================================================================
   GLOBAL RESETS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(155, 93, 229, 0.3);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--color-bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-dark);
    background-color: var(--color-primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    margin: 0 auto 24px auto;
    border-radius: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    outline: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(155, 93, 229, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(155, 93, 229, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 20px rgba(0, 245, 212, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 245, 212, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & STICKY NAV
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 249, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(155, 93, 229, 0.08);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    transition: var(--transition-smooth);
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 96px;
    width: 96px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
    transition: var(--transition-bounce);
}

.logo-area:hover .logo-img {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-dark);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary-dark);
}

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

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.nav-toggle:hover {
    background-color: var(--color-primary-light);
}

/* ==========================================================================
   1. INICIO (HOME / HERO)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(185deg, rgba(245, 238, 255, 0.5) 0%, rgba(250, 249, 252, 1) 100%);
    overflow: hidden;
}

/* Floating Blurred background orbs */
.hero-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: var(--radius-round);
    filter: blur(140px);
    opacity: 0.35;
    animation: floatOrb 12s infinite alternate ease-in-out;
}

.orb-purple {
    top: 15%;
    left: 10%;
    width: 350px;
    height: 350px;
    background-color: var(--color-primary);
}

.orb-teal {
    bottom: 10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background-color: var(--color-secondary);
    animation-delay: -6s;
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    background-color: rgba(155, 93, 229, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.highlight-purple {
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-teal {
    background: linear-gradient(120deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.trust-item i {
    color: var(--color-success);
}

/* Hero Visual SVG */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
}

.hero-svg-graphic {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   2. SOBRE MÍ SECTION
   ========================================================================== */
.sobre-mi-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.sobre-mi-img-area {
    display: flex;
    justify-content: center;
}

.photo-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* Interactive custom placeholder */
.photo-placeholder {
    width: 100%;
    aspect-ratio: 0.95;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    overflow: visible;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-graphic {
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.photo-placeholder::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 3px dashed var(--color-primary);
    border-radius: 36px;
    opacity: 0.3;
    z-index: -1;
    animation: rotateSlow 60s linear infinite;
}

.floating-badge {
    position: absolute;
    background-color: var(--color-white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.badge-teal {
    bottom: -15px;
    right: -15px;
    border-left: 4px solid var(--color-secondary-dark);
}

.badge-purple {
    top: -20px;
    left: -15px;
    border-left: 4px solid var(--color-primary);
}

.floating-badge .number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.floating-badge .text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-badge i {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.sobre-mi-content {
    display: flex;
    flex-direction: column;
}

.sobre-mi-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.sobre-mi-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    line-height: 1.5;
    margin-bottom: 24px;
}

.sobre-mi-text {
    color: var(--color-text-muted);
    font-size: 1.02rem;
    margin-bottom: 36px;
}

.sobre-mi-text p {
    margin-bottom: 16px;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.credential-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cred-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-round);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.credential-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

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

/* Values System styling */
.values-area {
    border-top: 1px solid var(--color-grey-200);
    padding-top: 60px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.value-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.04);
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.v-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-round);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.value-card:nth-child(even) .v-icon {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary-dark);
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.value-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   3. TERAPIA ONLINE SECTION
   ========================================================================== */
.therapy-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.therapy-offer-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.04);
    transition: var(--transition-smooth);
}

.therapy-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(155, 93, 229, 0.1);
}

.to-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.therapy-offer-card:nth-child(2) .to-icon {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary-dark);
}

.therapy-offer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.therapy-offer-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.to-meta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Steps and Benefits Side-by-Side */
.steps-benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.steps-area h3, .benefits-area h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-text-dark);
    position: relative;
    padding-bottom: 10px;
}

.steps-area h3::after, .benefits-area h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--color-primary);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.s-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-round);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.step-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.step-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-list li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--color-success);
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* FAQ Accordions */
.faq-container {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.04);
}

.faq-section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-dark);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--color-bg-light);
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--color-text-dark);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-trigger:hover {
    color: var(--color-primary-dark);
}

.faq-arrow {
    font-size: 0.85rem;
    color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

/* FAQ Active Styles */
.faq-item.active {
    border-color: var(--color-primary-light);
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-trigger {
    color: var(--color-primary-dark);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 10px 24px 20px 24px;
}

/* WIDGET CONTAINER HEADING */
.widget-internal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.widget-internal-title i {
    color: var(--color-primary);
}


/* ==========================================================================
   WIDGET INTERNALS (CALENDAR & BOOKING FLUX)
   ========================================================================== */
.booking-widget-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

/* Progress Stepper */
.booking-steps-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps-nav::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: var(--color-grey-200);
    z-index: 1;
}

.step-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background-color: var(--color-white);
    border: 3px solid var(--color-grey-200);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
}

.step-label {
    text-align: center;
    margin-top: 12px;
}

.step-label h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.step-label p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Stepper States */
.step-nav-item.active .step-num {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 0 0 6px rgba(155, 93, 229, 0.15);
}

.step-nav-item.active .step-label h4 {
    color: var(--color-primary-dark);
}

.step-nav-item.completed .step-num {
    border-color: var(--color-secondary-dark);
    background-color: var(--color-secondary-dark);
    color: var(--color-text-dark);
}

.step-nav-item.completed .step-label h4 {
    color: var(--color-secondary-dark);
}

/* Widget Card Container */
.booking-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 50px 48px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(155, 93, 229, 0.05);
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
    animation: fadeInStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.booking-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-grey-100);
    padding-top: 36px;
    margin-top: 36px;
}

/* STEP 1: Services selection list */
.booking-services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-service-option {
    cursor: pointer;
    display: block;
}

.booking-service-option input[type="radio"] {
    display: none;
}

.option-card-body {
    background-color: var(--color-bg-light);
    border: 2px solid var(--color-grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition-bounce);
}

.option-card-body:hover {
    border-color: rgba(155, 93, 229, 0.5);
    background-color: var(--color-primary-light);
}

.booking-service-option input[type="radio"]:checked + .option-card-body {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background-color: var(--color-white);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.option-details {
    flex-grow: 1;
}

.option-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.option-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.option-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.option-check-circle {
    font-size: 1.5rem;
    color: var(--color-grey-200);
    transition: var(--transition-smooth);
}

.booking-service-option input[type="radio"]:checked + .option-card-body .option-check-circle {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* STEP 2: Calendar layout */
.calendar-datetime-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

/* Calendar widget */
.calendar-wrapper {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.calendar-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.calendar-btn:hover {
    background-color: var(--color-primary-light);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.day-cell:hover:not(.disabled) {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.day-cell.disabled {
    color: var(--color-grey-200);
    cursor: not-allowed;
    text-decoration: line-through;
}

.day-cell.today {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
    font-weight: 700;
}

.day-cell.selected {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(155, 93, 229, 0.3);
}

/* Time slots list */
.time-slots-wrapper {
    display: flex;
    flex-direction: column;
}

.time-slots-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.selected-date-highlight {
    color: var(--color-primary-dark);
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 2px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 270px;
    overflow-y: auto;
    padding-right: 6px;
}

.select-day-prompt {
    grid-column: span 2;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    padding: 40px 10px;
    border: 2px dashed var(--color-grey-200);
    border-radius: var(--radius-md);
}

.time-slot-btn {
    background-color: var(--color-white);
    border: 2px solid var(--color-grey-200);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.time-slot-btn:hover:not(.taken) {
    border-color: var(--color-secondary-dark);
    color: var(--color-secondary-dark);
}

.time-slot-btn.selected {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-text-dark);
    box-shadow: 0 4px 10px rgba(0, 245, 212, 0.2);
}

.time-slot-btn.taken {
    background-color: var(--color-grey-100);
    color: var(--color-grey-200);
    border-color: var(--color-grey-100);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* STEP 3: Form styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-group .required {
    color: var(--color-danger);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--color-primary);
    font-size: 1rem;
    pointer-events: none;
}

.textarea-icon {
    top: 18px;
}

.input-wrapper input, .input-wrapper textarea, .input-wrapper select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-grey-200);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper input:focus, .input-wrapper textarea:focus, .input-wrapper select:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.1);
}

/* Booking summary panel */
.booking-summary-box {
    background-color: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 10px;
}

.booking-summary-box h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.summary-details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 30px;
}

.summary-details-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-details-list li i {
    color: var(--color-primary);
}

.terms-checkbox {
    margin-top: 10px;
}

.terms-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-primary);
}

/* STEP 4: Success confirmation receipt */
.success-receipt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon-animated {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 20px;
    animation: scaleInCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleInCheck {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-receipt-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.success-notice {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* Premium Receipt */
.receipt-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-md);
    padding: 30px;
    margin-bottom: 36px;
    position: relative;
    text-align: left;
}

/* Decorative serrated top edge using background gradients */
.receipt-card::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: linear-gradient(135deg, var(--color-white) 25%, transparent 25%), 
                      linear-gradient(225deg, var(--color-white) 25%, transparent 25%);
    background-position: 0 0;
    background-size: 12px 24px;
    z-index: 5;
}

.receipt-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.receipt-logo {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.receipt-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.receipt-divider {
    border-top: 2px dashed var(--color-grey-200);
    margin-bottom: 20px;
}

.receipt-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.receipt-label {
    color: var(--color-text-muted);
}

.receipt-value {
    font-weight: 600;
    color: var(--color-text-dark);
}

.font-bold-row {
    border-top: 1px solid var(--color-grey-100);
    padding-top: 14px;
    font-size: 1rem;
}

.font-bold-row .receipt-value {
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.receipt-footer-text {
    margin-top: 24px;
    border-top: 1px dashed var(--color-grey-100);
    padding-top: 16px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}

.success-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.success-actions .btn {
    flex: 1;
}

/* ==========================================================================
   MY RESERVATIONS LIST PANEL
   ========================================================================== */
.my-reservations-wrapper {
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.my-reservations-toggle {
    width: 100%;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary-light);
    border-radius: var(--radius-md);
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    outline: none;
}

.my-reservations-toggle:hover {
    background-color: var(--color-primary-light);
}

.arrow-indicator {
    transition: var(--transition-bounce);
}

.my-reservations-wrapper.open .arrow-indicator {
    transform: rotate(180deg);
}

.my-reservations-panel {
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    border: 1px solid var(--color-grey-200);
    border-top: none;
    box-shadow: var(--shadow-md);
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.my-reservations-wrapper.open .my-reservations-panel {
    max-height: 600px;
    padding: 30px;
    overflow-y: auto;
}

.panel-info-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.bookings-table-container {
    width: 100%;
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.bookings-table th, .bookings-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-grey-100);
}

.bookings-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

.no-bookings-message {
    text-align: center;
    color: var(--color-text-muted);
    padding: 40px !important;
    font-style: italic;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.status-cancelled {
    background-color: rgba(239, 68, 68, 0.08);
    color: var(--color-danger);
    text-decoration: line-through;
}

.btn-cancel-booking {
    background: none;
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cancel-booking:hover {
    background-color: var(--color-danger);
    color: var(--color-white);
}

.btn-cancel-booking:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--color-grey-200);
    color: var(--color-grey-500);
}

/* ==========================================================================
   4. TEMAS QUE ACOMPAÑO (TOPICS DASHBOARD)
   ========================================================================== */
.topics-container-dashboard {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(155, 93, 229, 0.05);
    overflow: hidden;
}

.topics-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-grey-200);
    background-color: var(--color-bg-light);
}

.topic-tab-btn {
    flex: 1;
    padding: 24px 16px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    outline: none;
    text-align: center;
}

.topic-tab-btn:hover {
    color: var(--color-primary);
    background-color: rgba(155, 93, 229, 0.02);
}

.topic-tab-btn.active {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary);
    background-color: var(--color-white);
}

.topics-panels-wrapper {
    padding: 50px 48px;
}

.topic-panel-content {
    display: none;
}

.topic-panel-content.active {
    display: block;
    animation: fadeInStep 0.4s ease forwards;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.panel-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.panel-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.panel-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-text-dark);
}

.panel-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-bullet-list li {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 24px;
}

.panel-bullet-list li::before {
    content: '✧';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.panel-action-card {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid rgba(155, 93, 229, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.panel-action-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.panel-action-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ==========================================================================
   5. CHARLAS Y TALLERES SECTION
   ========================================================================== */
.charlas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.charla-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.04);
    position: relative;
    transition: var(--transition-smooth);
}

.charla-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background-color: var(--color-secondary-light);
    color: var(--color-secondary-dark);
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.charla-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-dark);
    padding-right: 60px;
}

.charla-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.ch-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed var(--color-grey-200);
    padding-top: 18px;
}

.ch-details-list li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.ch-details-list li i {
    color: var(--color-primary);
    width: 18px;
}

.charlas-action-box {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(255,255,255,1) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    border: 1px solid rgba(155, 93, 229, 0.08);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.charlas-action-box h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.charlas-action-box p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   6. RECURSOS GRATUITOS / BLOG
   ========================================================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.resource-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.04);
    overflow: hidden;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.r-badge-type {
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.r-badge-type.pdf { background-color: var(--color-primary); }
.r-badge-type.guia { background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%); color: var(--color-white); }
.r-badge-type.audio { background-color: var(--color-secondary-dark); color: var(--color-white); }
.r-badge-type.ebook { background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%); color: var(--color-white); }

.r-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.r-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    line-height: 1.3;
}

.r-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Download Simulation Toast */
.download-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--color-success);
    animation: slideInToast 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

/* ==========================================================================
   7. CONTACTO SECTION
   ========================================================================== */
.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contacto-info-area h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.contacto-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contacto-cards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

.contacto-card:hover:not(.no-hover) {
    transform: translateX(8px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.c-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.08);
    color: #25D366;
}

.c-icon.email {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.c-icon.location {
    background-color: var(--color-secondary-light);
    color: var(--color-secondary-dark);
}

.c-details h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.c-details p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.click-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 8px;
}

.contacto-card:hover .click-action i {
    transform: translateX(4px);
    transition: var(--transition-smooth);
}

/* Contact form area */
.form-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(155, 93, 229, 0.04);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 28px;
}

.general-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.general-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    display: block;
}

.general-form input, .general-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-grey-200);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.general-form input:focus, .general-form textarea:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.1);
}

.contact-feedback-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background-color: rgba(16, 185, 129, 0.08);
    color: var(--color-success);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInStep 0.3s forwards;
}

/* ==========================================================================
   8. BOTÓN FLOTANTE VOLVER ARRIBA
   ========================================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(138, 92, 170, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(138, 92, 170, 0.55);
    background: linear-gradient(135deg, #7c4aa0 0%, var(--color-primary) 100%);
}

/* ==========================================================================
   WORKSHOP REQUEST MODAL SYSTEM
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 36, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 48px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    color: var(--color-danger);
}

.modal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.modal-desc-text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #15151b;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(155, 93, 229, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 96px;
    width: 96px;
    object-fit: contain;
}

.footer-logo .brand-name {
    color: var(--color-white);
}

.footer-logo .brand-tagline {
    color: rgba(255,255,255,0.4);
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 6px;
}

/* Footer Contact */
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--color-primary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.8rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

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

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .sobre-mi-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sobre-mi-img-area {
        order: -1;
    }

    .contacto-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-benefits-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-contact {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 80px;
    }

    .logo-img {
        height: 60px;
        width: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition-smooth);
        overflow-y: auto;
        z-index: 999;
        align-items: stretch;
        text-align: center;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .btn-nav {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

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

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

    .calendar-datetime-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .time-slots-grid {
        max-height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 30px 20px;
    }

    .booking-steps-nav::before {
        display: none;
    }

    .step-nav-item {
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        width: 100%;
        border-bottom: 1px solid var(--color-grey-100);
        padding-bottom: 12px;
    }

    .booking-steps-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-label {
        text-align: left;
        margin-top: 0;
    }

    .my-reservations-panel {
        padding: 20px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .success-actions {
        flex-direction: column;
    }

    .topic-tab-btn {
        padding: 16px 8px;
        font-size: 0.85rem;
    }

    .topics-tabs {
        flex-wrap: wrap;
    }

    .topics-panels-wrapper {
        padding: 30px 20px;
    }

    .modal-card {
        padding: 30px 20px;
    }

    .charlas-action-box {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   STATEMENT OF PURPOSE & HERO PURPOSE STYLING
   ========================================================================== */
.hero-purpose {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-top: -15px;
    margin-bottom: 35px;
    border-left: 3px solid var(--color-secondary-dark);
    padding-left: 16px;
    max-width: 650px;
    line-height: 1.55;
    position: relative;
    z-index: 2;
}

.purpose-quote-card {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(155, 93, 229, 0.12);
    border-radius: var(--radius-md);
    padding: 35px 30px 30px 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.p-quote-icon {
    font-size: 2.2rem;
    color: rgba(155, 93, 229, 0.18);
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
}

.p-quote-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.p-quote-author {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .hero-purpose {
        margin-top: -10px;
        margin-bottom: 25px;
        font-size: 0.95rem;
        padding-left: 12px;
    }
    
    .purpose-quote-card {
        padding: 30px 20px 24px 20px;
    }
    
    .p-quote-text {
        font-size: 1.05rem;
        padding-left: 10px;
    }
    
    .p-quote-author {
        padding-left: 10px;
    }
}

/* ==========================================================================
   QUIÉN TE ACOMPAÑA / SOBRE MÍ CREDENTIALS GRID
   ========================================================================== */
.sobre-mi-credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.sobre-mi-credentials-grid .credential-item {
    background-color: var(--color-white);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.sobre-mi-credentials-grid .credential-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-md);
}

.sobre-mi-credentials-grid .credential-item .cred-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.sobre-mi-credentials-grid .credential-item:hover .cred-icon {
    transform: scale(1.1) rotate(5deg);
}

@media (max-width: 992px) {
    .sobre-mi-credentials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
}

/* ==========================================================================
   SVG HERO GRAPHIC ILLUSTRATION MOTION EFFECTS
   ========================================================================== */
.circle-rotating {
    transform-origin: 210px 230px;
    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-pulsing {
    transform-origin: 290px 230px;
    animation: pulseCircle 4s ease-in-out infinite alternate;
}

@keyframes pulseCircle {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.06); opacity: 1; }
}

.hero-svg-bg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-logo-center {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78%;
    max-width: 330px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 15px 35px rgba(155, 93, 229, 0.16));
    clip-path: inset(0 0 38% 0);
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-15px) rotate(1.5deg); }
    100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
}

@media (max-width: 768px) {
    .hero-logo-center {
        max-width: 250px;
    }
}

/* ==========================================================================
   SOMATIC INTERACTIVE INFOGRAPHIC STYLES
   ========================================================================== */
.somatic-infographic-container {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(155, 93, 229, 0.08);
    border-top: 5px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 36px;
    transition: var(--transition-smooth);
}

.info-header {
    text-align: left;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #004d40; /* Color verde muy oscuro y orgánico de la imagen */
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.info-subtitle {
    font-size: 0.95rem;
    color: var(--color-primary-dark); /* Color morado de la imagen para el subtítulo */
    font-weight: 600;
    line-height: 1.5;
}

/* Grilla interior de contenidos */
.info-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Columna de Metodología de Abordaje */
.info-methodology-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.methodology-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 8px;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.methodology-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.methodology-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.methodology-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.bg-purple-circle {
    background-color: #f5eeff;
    color: var(--color-primary);
    border: 1px solid rgba(155, 93, 229, 0.1);
}

.bg-teal-circle {
    background-color: #e6fffc;
    color: #00a896;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.methodology-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.45;
}

/* Columna de la mujer pura en la infografía superior */
.info-woman-only-column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.somatic-woman-img-static {
    width: 100%;
    height: auto;
    max-height: 290px;
    object-fit: contain; /* ¡Clave! Muestra a la mujer 100% COMPLETA sin recortes */
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.03));
    mix-blend-mode: multiply; /* Fusión artística del trazo sobre el fondo blanco */
    transition: var(--transition-smooth);
}

.somatic-woman-img-static:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   BREATHING ORB & CYCLE ANIMATIONS (Reutilizadas en la tarjeta de abajo)
   ========================================================================== */
.breathing-orb-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.chest-contour-svg {
    position: absolute;
    width: 270px;
    height: 270px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(155, 93, 229, 0.08));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.somatic-infographic-container.breath-active .chest-contour-svg {
    animation: somatic-chest-expand-loop 16s ease-in-out infinite;
}

@keyframes somatic-chest-expand-loop {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.75;
    }
    25% { 
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 4px 15px rgba(0, 245, 212, 0.15));
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
    }
    75% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.75;
        filter: drop-shadow(0 2px 8px rgba(155, 93, 229, 0.08));
    }
}

.breathing-orb-core {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    z-index: 3;
    box-shadow: 0 8px 24px rgba(155, 93, 229, 0.35);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.breathing-orb-core i {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.breathing-phase {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breathing-orb-wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(155, 93, 229, 0.12);
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wave-1 {
    transform: scale(0.85);
    animation: somatic-wave-pulsate 3s ease-in-out infinite;
}

.wave-2 {
    transform: scale(1);
    animation: somatic-wave-pulsate 3s ease-in-out infinite 1.5s;
}

/* Somatic Breath Guide Active State Animations */
.somatic-infographic-container.breath-active .breathing-orb-core {
    animation: somatic-breath-core-loop 16s ease-in-out infinite;
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.4);
}

.somatic-infographic-container.breath-active .wave-1 {
    animation: somatic-breath-wave-loop 16s ease-in-out infinite;
    border-color: rgba(0, 201, 167, 0.25);
}

.somatic-infographic-container.breath-active .wave-2 {
    animation: somatic-breath-wave-loop 16s ease-in-out infinite 4s;
    border-color: rgba(155, 93, 229, 0.25);
}

/* Passive Wave Pulsation when inactive */
@keyframes somatic-wave-pulsate {
    0% { transform: scale(0.7); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(0.7); opacity: 0.8; }
}

/* Active breathing cycle guide (4s Inhale, 4s Hold, 4s Exhale, 4s Hold) */
@keyframes somatic-breath-core-loop {
    0%, 100% { transform: scale(1); } /* Inicia chico (Vacío) */
    25% { transform: scale(1.4); } /* Inhala completo */
    50% { transform: scale(1.4); } /* Mantén lleno */
    75% { transform: scale(1); } /* Exhala completo */
}

@keyframes somatic-breath-wave-loop {
    0%, 100% { transform: scale(1.1); opacity: 0.8; }
    25% { transform: scale(1.75); opacity: 0.15; }
    50% { transform: scale(1.75); opacity: 0.15; }
    75% { transform: scale(1.1); opacity: 0.8; }
}

.breathing-controller {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    background-color: var(--color-bg-light);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 290px;
}

.btn-breath-action {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    border: none;
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-bounce);
    font-family: var(--font-heading);
}

.btn-breath-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    background-color: var(--color-primary-dark);
}

.btn-breath-action.active {
    background-color: var(--color-danger);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}

.btn-breath-action.active:hover {
    background-color: #dc2626;
}

.breath-instruction-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color 0.3s;
    height: 36px;
    line-height: 1.4;
    max-width: 280px;
}

.somatic-infographic-container.breath-active .breath-instruction-text {
    color: var(--color-primary-dark);
    animation: breath-text-pulse 2s infinite;
}

@keyframes breath-text-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ==========================================================================
   INTERACTIVE SOMATIC BOX (Right Column)
   ========================================================================== */
.info-somatic-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(155, 93, 229, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(155, 93, 229, 0.12);
    gap: 20px;
    width: 100%;
    transition: var(--transition-smooth);
}

/* Fila Inferior de Pilares de la Imagen Superior */
.info-footer-pillars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    gap: 12px;
}

.footer-pillar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.footer-pillar-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-teal-icon {
    color: #007a68;
}

.bg-purple-icon {
    color: var(--color-primary);
}

.footer-pillar-text {
    display: flex;
    flex-direction: column;
}

.footer-pillar-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: 0.5px;
}

.footer-pillar-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-pillar-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

/* Micro-animation of lungs pulsing */
.text-pulse {
    animation: lungsPulse 4s ease-in-out infinite;
}

@keyframes lungsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .info-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .info-footer-pillars {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-pillar-divider {
        display: none;
    }
}

/* ==========================================================================
   BECK QUIZ OPTION BUTTONS & INTERACTIVE SELECTED STATE
   ========================================================================== */
.btn-quiz-option {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    background-color: var(--color-bg-alt) !important;
    transition: all 0.25s ease !important;
}

.btn-quiz-option:hover {
    border-color: var(--color-primary-light) !important;
    background-color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-quiz-option.selected {
    border-color: var(--color-primary) !important;
    background-color: rgba(155, 93, 229, 0.05) !important;
    color: var(--color-primary-dark) !important;
    font-weight: 700 !important;
    box-shadow: 0 0 0 2px rgba(155, 93, 229, 0.15) !important;
}

/* ==========================================================================
   STAXI ANGER BREATH GUIDE ACTIVE STATE ANIMATIONS
   ========================================================================== */
.staxi-infographic-container.breath-active .staxi-orb-core {
    animation: staxi-breath-core-loop 16s ease-in-out infinite;
    background: linear-gradient(135deg, #ff7b00 0%, var(--color-primary) 100%);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
}

.staxi-infographic-container.breath-active .staxi-wave-1 {
    animation: staxi-breath-wave-loop 16s ease-in-out infinite;
    border-color: rgba(255, 123, 0, 0.25);
}

.staxi-infographic-container.breath-active .staxi-wave-2 {
    animation: staxi-breath-wave-loop 16s ease-in-out infinite 4s;
    border-color: rgba(155, 93, 229, 0.25);
}

.staxi-infographic-container.breath-active .staxi-chest-contour {
    animation: staxi-chest-expand-loop 16s ease-in-out infinite;
}

.staxi-infographic-container.breath-active .staxi-lungs-icon {
    color: #ffb703 !important;
}

/* STAXI Active breathing cycle keyframes (4s Inhale, 2s Hold, 6s Exhale, 4s Hold Empty) */
@keyframes staxi-breath-core-loop {
    0%, 100% { 
        transform: scale(1); 
        background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-primary) 100%);
        box-shadow: 0 8px 24px rgba(0, 245, 212, 0.3);
    }
    25%, 37.5% { 
        transform: scale(1.4); 
        background: linear-gradient(135deg, #ff7b00 0%, var(--color-primary) 100%);
        box-shadow: 0 10px 30px rgba(255, 123, 0, 0.45);
    }
    75% { 
        transform: scale(1); 
        background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-primary) 100%);
        box-shadow: 0 8px 24px rgba(0, 245, 212, 0.3);
    }
}

@keyframes staxi-breath-wave-loop {
    0%, 100% { transform: scale(1.1); opacity: 0.8; border-color: rgba(0, 245, 212, 0.25); }
    25%, 37.5% { transform: scale(1.75); opacity: 0.15; border-color: rgba(255, 123, 0, 0.25); }
    75% { transform: scale(1.1); opacity: 0.8; border-color: rgba(0, 245, 212, 0.25); }
}

@keyframes staxi-chest-expand-loop {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.75;
    }
    25%, 37.5% { 
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
        filter: drop-shadow(0 4px 15px rgba(255, 123, 0, 0.2));
    }
    75% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.75;
        filter: drop-shadow(0 2px 8px rgba(0, 245, 212, 0.08));
    }
}

/* ==========================================================================
   CDE EMOTIONAL DEPENDENCE - HEART IN A CAGE ANIMATION STYLES
   ========================================================================== */

.cde-infographic-container {
    border-top: 5px solid #ff4d6d !important; /* Custom boundary pink/red accent border */
}

/* Static heart float and glow when inactive */
@keyframes cde-heart-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 4px 10px rgba(255, 77, 109, 0.45));
    }
    50% {
        transform: translateY(-6px) scale(1.04);
        filter: drop-shadow(0 8px 20px rgba(255, 77, 109, 0.65));
    }
}

.cde-heart {
    animation: cde-heart-float 3.5s ease-in-out infinite;
}

/* Active breath transitions: Open the cage! */
.cde-infographic-container.breath-active .cage-left-group {
    transform: translate(-38px, -8px) rotate(-32deg);
    opacity: 0.22;
}

.cde-infographic-container.breath-active .cage-right-group {
    transform: translate(38px, -8px) rotate(32deg);
    opacity: 0.22;
}

.cde-infographic-container.breath-active .cde-heart {
    animation: none; /* Override static float for active cycle */
}

/* Active Breathing Cycle (4s Inhale, 4s Hold, 4s Exhale, 4s Hold Empty) */
.cde-infographic-container.breath-active.cde-phase-inhale .cde-heart {
    transform: scale(1.35);
    filter: drop-shadow(0 10px 25px rgba(255, 77, 109, 0.8));
}

.cde-infographic-container.breath-active.cde-phase-hold .cde-heart {
    transform: scale(1.42);
    filter: drop-shadow(0 15px 35px #ffd700); /* Golden light halo when full of oxygen and love */
}

.cde-infographic-container.breath-active.cde-phase-exhale .cde-heart {
    transform: scale(0.95);
    filter: drop-shadow(0 2px 8px rgba(255, 77, 109, 0.4));
}

.cde-infographic-container.breath-active.cde-phase-empty .cde-heart {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 16px rgba(255, 77, 109, 0.5));
}

/* Pulse Halo behind heart active animations */
@keyframes cde-halo-breath {
    0%, 100% { transform: scale(1.0); opacity: 0.35; }
    25% { transform: scale(1.6); opacity: 0.65; }
    50% { transform: scale(1.85); opacity: 0.85; }
    75% { transform: scale(1.25); opacity: 0.2; }
}

.cde-infographic-container.breath-active .cde-pulse-halo {
    animation: cde-halo-breath 16s ease-in-out infinite;
}

/* Control button for cage liberation */
.btn-cde-breath-action {
    background-color: var(--color-white);
    color: #ff4d6d;
    border: 2px solid #ff4d6d;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.08);
}

.btn-cde-breath-action:hover {
    background-color: #ff4d6d;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.3);
    transform: translateY(-1px);
}

.btn-cde-breath-action.active {
    background-color: #ff4d6d;
    color: var(--color-white);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(255, 77, 109, 0.25);
}

/* ==========================================================================
   RSE AUTOESTIMA - ESPEJO DE ACEPTACIÓN ANIMATION STYLES
   ========================================================================== */

.rse-infographic-container {
    border-top: 5px solid #ffb703 !important; /* Elegant gold border representing self-worth */
}

/* Static mirror floating when inactive */
@keyframes rse-mirror-float {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 6px 12px rgba(255, 183, 3, 0.15));
    }
    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 12px 24px rgba(255, 183, 3, 0.3));
    }
}

.rse-mirror-svg {
    width: 100%;
    height: 100%;
    max-width: 180px;
    margin: 0 auto;
    display: block;
    animation: rse-mirror-float 4s ease-in-out infinite;
}

/* Breath Active Mirror Transformations */
.rse-infographic-container.breath-active .rse-mirror-glass {
    fill: #ffffff; /* Becomes a pure white reflection surface */
    filter: drop-shadow(0 0 10px rgba(255, 183, 3, 0.4));
}

.rse-infographic-container.breath-active .rse-mirror-glow-orb {
    opacity: 0.8;
}

.rse-infographic-container.breath-active .rse-sparkle {
    opacity: 1;
}

/* Sparkling twinkling particles */
@keyframes rse-sparkle-twinkle {
    0%, 100% { transform: scale(0.6); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

.rse-infographic-container.breath-active .sparkle-1 {
    animation: rse-sparkle-twinkle 2s infinite ease-in-out;
}

.rse-infographic-container.breath-active .sparkle-2 {
    animation: rse-sparkle-twinkle 2.5s infinite ease-in-out 0.5s;
}

.rse-infographic-container.breath-active .sparkle-3 {
    animation: rse-sparkle-twinkle 1.8s infinite ease-in-out 1s;
}

/* Active Breathing Cycle (4s Inhale, 4s Hold, 4s Exhale, 4s Hold Empty) */
.rse-infographic-container.breath-active.rse-phase-inhale .rse-mirror-glow-orb {
    transform: scale(1.3);
    fill: url(#mirrorReflectionGlow);
    opacity: 0.6;
}

.rse-infographic-container.breath-active.rse-phase-hold .rse-mirror-glow-orb {
    transform: scale(1.5);
    fill: url(#mirrorReflectionGlow);
    opacity: 0.9;
    filter: drop-shadow(0 0 15px #ffd700);
}

.rse-infographic-container.breath-active.rse-phase-exhale .rse-mirror-glow-orb {
    transform: scale(0.8);
    opacity: 0.45;
}

.rse-infographic-container.breath-active.rse-phase-empty .rse-mirror-glow-orb {
    transform: scale(1.0);
    opacity: 0.5;
}

/* Control button for self-acceptance mirror */
.btn-rse-breath-action {
    background-color: var(--color-white);
    color: #ffb703;
    border: 2px solid #ffb703;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.08);
}

.btn-rse-breath-action:hover {
    background-color: #ffb703;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
    transform: translateY(-1px);
}

.btn-rse-breath-action.active {
    background-color: #ffb703;
    color: var(--color-white);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(255, 183, 3, 0.25);
}

/* ==========================================================================
   UN MENSAJE PARA TI - BIENESTAR EMOCIONAL SECTION
   ========================================================================== */
.bienestar-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 244, 252, 0.98) 100%);
    border: 1px solid rgba(138, 92, 170, 0.16);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 16px 45px rgba(88, 54, 126, 0.09);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bienestar-header-group {
    margin-bottom: 24px;
}

.bienestar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(138, 92, 170, 0.09);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.bienestar-title {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.bienestar-intro-lead {
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 500;
    max-width: 480px;
    margin: 0 auto;
}

/* Minimalist Illustration SVG */
.bienestar-illustration {
    width: 130px;
    height: 130px;
    margin: 20px auto 28px auto;
    animation: gentleFloat 4s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.illustration-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 18px rgba(138, 92, 170, 0.12));
}

.btn-discover {
    font-size: 1.05rem;
    padding: 15px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #6e419b 100%);
    box-shadow: 0 8px 24px rgba(138, 92, 170, 0.28);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
}

.btn-discover:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(138, 92, 170, 0.4);
}

/* Card revealing animation (0.6s smooth fade & scale) */
.quote-display-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 28px;
    box-shadow: 0 12px 35px rgba(74, 52, 102, 0.09);
    border: 1px solid rgba(138, 92, 170, 0.14);
    position: relative;
    margin-bottom: 22px;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: translateY(0) scale(1);
    text-align: center;
}

.quote-display-card.fade-out {
    opacity: 0;
    transform: translateY(14px) scale(0.95);
}

.quote-display-card.fade-in {
    animation: quoteCardAppear 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes quoteCardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Micro Sparkles Background */
.quote-sparkles-container {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    pointer-events: none;
    opacity: 0.5;
}

.quote-sparkles-container .sparkle {
    font-size: 0.9rem;
    color: #8a5caa;
    animation: sparklePulse 3s ease-in-out infinite alternate;
}

.quote-sparkles-container .s2 {
    animation-delay: 1s;
    color: #2b8a9e;
}

.quote-sparkles-container .s3 {
    animation-delay: 2s;
}

@keyframes sparklePulse {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 0.9; transform: scale(1.1); }
}

.quote-header-date {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.quote-text-content {
    font-family: var(--font-title);
    font-size: 1.38rem;
    line-height: 1.68;
    color: #2c223b;
    font-style: italic;
    margin: 0 0 24px 0;
    padding: 0 10px;
    font-weight: 500;
}

.quote-category-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2b8a9e;
    background: rgba(43, 138, 158, 0.1);
    padding: 5px 16px;
    border-radius: 20px;
}

.quote-save-invitation {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
    font-style: italic;
}

.quote-actions-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-quote-action {
    flex: 1;
    min-width: 160px;
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(138, 92, 170, 0.35);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: rgba(138, 92, 170, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

/* ==========================================================================
   LEGAL & CLINICAL POLICY MODALS & CHECKBOX STYLES
   ========================================================================== */
.legal-modal-card {
    max-width: 780px;
    width: 92%;
    padding: 36px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.legal-modal-header {
    border-bottom: 1px solid rgba(138, 92, 170, 0.15);
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.legal-modal-header h3 {
    font-family: var(--font-title);
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin: 8px 0 6px 0;
}

.legal-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

.legal-modal-body {
    overflow-y: auto;
    padding-right: 12px;
    margin-bottom: 20px;
    flex: 1;
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(138, 92, 170, 0.25);
    border-radius: 10px;
}

.policy-block {
    background: rgba(248, 245, 252, 0.6);
    border: 1px solid rgba(138, 92, 170, 0.12);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.policy-block h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: var(--color-primary-dark);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-block h4 i {
    color: var(--color-primary);
    font-size: 1rem;
}

.policy-block p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text);
    margin: 0 0 8px 0;
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-note {
    font-size: 0.9rem !important;
    color: var(--color-text-muted);
    font-style: italic;
    background: rgba(138, 92, 170, 0.05);
    padding: 8px 12px;
    border-left: 3px solid var(--color-primary);
    border-radius: 4px;
    margin-top: 8px !important;
}

.alert-block {
    background: rgba(255, 245, 245, 0.8);
    border-color: rgba(220, 53, 69, 0.2);
}

.alert-block h4 {
    color: #c0392b;
}

.alert-block h4 i {
    color: #e74c3c;
}

.highlight-block {
    background: linear-gradient(135deg, rgba(243, 237, 250, 0.9) 0%, rgba(235, 245, 248, 0.9) 100%);
    border-color: rgba(43, 138, 158, 0.25);
}

.legal-modal-footer {
    border-top: 1px solid rgba(138, 92, 170, 0.15);
    padding-top: 16px;
    text-align: right;
}

.legal-trigger {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-trigger:hover {
    color: var(--color-primary-dark);
}

.booking-terms-checkbox {
    background: rgba(138, 92, 170, 0.05);
    border: 1px solid rgba(138, 92, 170, 0.18);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.booking-terms-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text);
}

.booking-terms-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM (DESKTOP, TABLET & MOBILE)
   ========================================================================== */

/* GLOBAL SAFETY & OVERFLOW PREVENTION */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* BREAKPOINT: 1200px (Laptops / Small Desktops) */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .areas-section .topics-tabs {
        gap: 10px;
    }

    .topic-tab-btn {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
}

/* BREAKPOINT: 1024px (Tablets Landscape & Medium Laptops) */
@media (max-width: 1024px) {
    .section {
        padding: 70px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Header Nav adjustments */
    .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .btn-nav {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-purpose {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--color-secondary-dark);
        padding-left: 0;
        padding-top: 12px;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-svg-bg {
        max-width: 480px;
        margin: 0 auto;
    }

    /* Sobre mí / Psicobio */
    .sobre-mi-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-mi-img-area {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Contacto */
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Terapia Online */
    .steps-benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Panel mis reservas */
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* BREAKPOINT: 992px (Tablets & Medium Screen Devices) */
@media (max-width: 992px) {
    .section-header {
        margin-bottom: 40px;
    }

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

    /* Infographic grid stack */
    .info-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Sobre mí credentials grid */
    .sobre-mi-credentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Recursos Grid */
    .recursos-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }

    /* Footer Grid */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: span 3;
    }
}

/* BREAKPOINT: 768px (Tablets Portrait & Mobile Devices) */
@media (max-width: 768px) {
    .section {
        padding: 55px 0;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* NAV MENU MOBILE DRAWER */
    .nav-container {
        height: 75px;
    }

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

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
        background: transparent;
        border: none;
        color: var(--color-primary-dark);
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--color-white);
        flex-direction: column;
        padding: 24px 20px 40px 20px;
        gap: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
        align-items: stretch;
        text-align: center;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: var(--radius-sm);
    }

    .nav-link:hover, .nav-link.active {
        background-color: var(--color-primary-light);
    }

    .btn-nav {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
        padding: 14px 20px;
        font-size: 0.98rem;
    }

    /* TOPICS TABS TOUCH HORIZONTAL SCROLL */
    .topics-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        scrollbar-width: none; /* Firefox */
    }

    .topics-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .topic-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 12px 18px;
        font-size: 0.88rem;
        border-radius: 30px;
    }

    .topics-panels-wrapper {
        padding: 24px 16px;
    }

    /* INFOGRAPHICS FOOTER PILLARS */
    .info-footer-pillars {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 20px;
    }

    .footer-pillar-divider {
        display: none;
    }

    .footer-pillar-item {
        width: 100%;
    }

    /* BOOKING CARD & STEPS */
    .booking-card {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }

    .booking-steps-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .booking-steps-nav::before {
        display: none;
    }

    .step-nav-item {
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        width: 100%;
        border-bottom: 1px solid var(--color-bg-alt);
        padding-bottom: 10px;
    }

    .step-label {
        text-align: left;
        margin-top: 0;
    }

    /* CALENDAR & DATETIME CONTAINER */
    .calendar-datetime-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .calendar-card {
        padding: 16px 12px;
    }

    .time-slots-grid {
        max-height: 200px;
    }

    /* FORMS & GRIDS */
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* CHARLAS GRID */
    .charlas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .charlas-action-box {
        padding: 24px 16px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    /* FOOTER RESPONSIVE */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* BREAKPOINT: 576px (Mobile Phones Landscape & Large Portrait) */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-tag {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    /* HERO RESPONSIVE STACK */
    .hero-section {
        padding: 40px 0 30px 0;
    }

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

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

    .hero-purpose {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }

    .hero-logo-center {
        max-width: 210px;
    }

    /* SOBRE MÍ & PURPOSE QUOTE */
    .purpose-quote-card {
        padding: 24px 16px 18px 16px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .p-quote-icon {
        font-size: 1.6rem;
        top: 12px;
        left: 12px;
    }

    .p-quote-text {
        font-size: 0.98rem;
        padding-left: 0;
        margin-top: 10px;
    }

    .p-quote-author {
        padding-left: 0;
        font-size: 0.78rem;
    }

    .sobre-mi-credentials-grid .credential-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .sobre-mi-credentials-grid .credential-item .cred-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* INFOGRAPHICS RESPONSIVE */
    .somatic-infographic-container {
        padding: 20px 14px;
        gap: 24px;
    }

    .info-title {
        font-size: 1.6rem;
    }

    .somatic-woman-img-static {
        max-height: 220px;
    }

    .chest-contour-svg {
        width: 100%;
        max-width: 230px;
        height: auto;
    }

    /* QUIZZES RESPONSIVE */
    .quiz-options-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-quiz-option {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
    }

    /* CALENDAR GRID OPTIMIZATION FOR MOBILE */
    .calendar-card h4 {
        font-size: 0.98rem;
    }

    .calendar-days-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 3px;
    }

    .calendar-day-header {
        font-size: 0.72rem;
        padding: 4px 0;
    }

    .calendar-day {
        min-height: 34px;
        font-size: 0.8rem;
        padding: 2px 0;
        border-radius: var(--radius-sm);
    }

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

    .time-slot-btn {
        padding: 8px 4px;
        font-size: 0.78rem;
    }

    /* RECURSOS GRID */
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recurso-card {
        padding: 20px 16px;
    }

    /* BIENESTAR EMOCIONAL ("UN MENSAJE PARA TI") */
    .bienestar-card {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .bienestar-title {
        font-size: 1.55rem;
    }

    .bienestar-intro-lead {
        font-size: 0.95rem;
    }

    .bienestar-illustration {
        width: 100px;
        height: 100px;
        margin: 14px auto 20px auto;
    }

    .quote-display-card {
        padding: 24px 14px;
        border-radius: 16px;
    }

    .quote-text-content {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 18px;
        padding: 0;
    }

    .quote-actions-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-quote-action {
        width: 100%;
        min-width: 100%;
    }

    /* PANEL RESUMEN RESERVAS */
    .my-reservations-panel {
        padding: 16px 10px;
    }

    .reservation-card {
        padding: 16px 14px;
    }

    .reservation-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .reservation-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* MODALES RESPONSIVOS */
    .modal-card, .legal-modal-card {
        width: 94vw;
        max-width: 720px;
        max-height: 88vh;
        padding: 24px 16px;
        margin: 0 auto;
        border-radius: 18px;
    }

    .modal-close {
        top: 10px;
        right: 12px;
        font-size: 1.3rem;
    }

    .legal-modal-header h3 {
        font-size: 1.35rem;
    }

    .legal-modal-body {
        padding-right: 6px;
    }

    .policy-block {
        padding: 14px 14px;
    }
}

/* BREAKPOINT: 380px (Extra Small Mobile Devices - iPhone SE, small Androids) */
@media (max-width: 380px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .topic-tab-btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }

    .breathing-orb-wrapper {
        width: 110px;
        height: 110px;
    }

    .breathing-orb-core {
        width: 76px;
        height: 76px;
    }

    .breathing-orb-core i {
        font-size: 1.3rem;
    }

    .breathing-phase {
        font-size: 0.65rem;
    }

    .calendar-card {
        padding: 12px 8px;
    }

    .calendar-days-grid {
        gap: 2px;
    }

    .calendar-day-header {
        font-size: 0.68rem;
    }

    .calendar-day {
        min-height: 30px;
        font-size: 0.74rem;
    }

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

    .time-slot-btn {
        padding: 6px 2px;
        font-size: 0.74rem;
    }

    .modal-card, .legal-modal-card {
        padding: 18px 12px;
    }

    .btn {
        padding: 12px 18px;
        font-size: 0.88rem;
    }
}



