/* ==========================================================================
   HUMANARUM ORIENTACIÓN LABORAL - SISTEMA DE DISEÑO CLARO (styles.css)
   ========================================================================== */

/* 1. FUENTES E IMPORTACIONES */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* 2. VARIABLES DEL SISTEMA (Tema Claro Corporativo) */
:root {
    /* Paleta Oficial Humanarum */
    --primary-green: #7e9d64;
    --primary-green-dark: #4e7a42;
    --primary-green-light: #eaf4e7;
    
    --slate-gray: #7d7b7c;
    --slate-gray-light: #f5f5f3;
    --border-color: #d8d8d4;
    
    /* Acentos y Destacados */
    --accent-lime: #7aaa6b;
    --accent-gold: #b76d00;
    --accent-soft: rgba(126, 157, 100, 0.08);
    
    /* Colores del Tema Claro Premium (Lino y Nieve) */
    --bg-light-pure: #fafaf8;
    --bg-light-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    /* Bordes y Luces */
    --border-glass: rgba(125, 123, 124, 0.15);
    --border-glass-hover: rgba(78, 122, 66, 0.3);
    
    /* Textos */
    --text-primary: #252525;
    --text-secondary: #555555;
    --text-muted: #888888;
    --text-on-accent: #ffffff;
    
    /* Fuentes */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Sombras y Efectos */
    --shadow-soft: 0 10px 30px -10px rgba(125, 123, 124, 0.15);
    --shadow-premium: 0 20px 40px -15px rgba(78, 122, 66, 0.12);
    --shadow-glow: 0 0 25px 0px rgba(126, 157, 100, 0.15);
    
    /* Transiciones */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 3. RESET Y CONFIGURACIÓN GENERAL */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-light-pure);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: radial-gradient(circle at 50% 0%, #f1f5ef 0%, var(--bg-light-pure) 50%) no-repeat;
    min-height: 100vh;
}

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light-pure);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
    border: 2px solid var(--bg-light-pure);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* 4. BLOBS DE GRADIENTE FLOTANTE (Efecto Orgánico) */
.decorations-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #eaf4e7;
    top: -150px;
    right: 5%;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: #fdf5e6;
    top: 35%;
    left: -150px;
    animation-delay: -5s;
    animation-duration: 28s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #e2f0d9;
    top: 75%;
    right: -100px;
    animation-delay: -10s;
    animation-duration: 20s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -50px) scale(1.08); }
    100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* 5. DISEÑO DE CLASES COMUNES Y CONTENEDORES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 6rem 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green-dark) 30%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green-light);
    border: 1px solid rgba(126, 157, 100, 0.35);
    color: var(--primary-green-dark);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green-dark);
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(78, 122, 66, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(78, 122, 66, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(78, 122, 66, 0); }
}

/* 6. PREMIUM LIGHT CARDS */
.glass-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
}

/* 7. BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-spring);
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(78, 122, 66, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(78, 122, 66, 0.45), var(--shadow-glow);
}

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

.btn-accent {
    background: linear-gradient(135deg, var(--accent-lime) 0%, var(--primary-green-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(122, 170, 107, 0.25);
    font-weight: 600;
}

.btn-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(122, 170, 107, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--bg-light-card);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* ==========================================================================
   SECCIONES Y COMPONENTES
   ========================================================================== */

/* HEADER / NAVEGACIÓN FLOTANTE */
.site-header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.6rem 2.2rem;
    box-shadow: var(--shadow-soft);
}

.logo-link {
    display: flex;
    align-items: center;
    height: 48px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.header-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding-top: 10.5rem;
    padding-bottom: 5.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3.3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span.glow-title {
    position: relative;
    z-index: 1;
}

.hero-title span.glow-title::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--primary-green-light);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-feat-item svg {
    color: var(--primary-green-dark);
    flex-shrink: 0;
}

/* MARCO FOTO HERO (Efecto Wow Visual) */
.hero-visual-card {
    position: relative;
    width: 100%;
}

.photo-frame {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.photo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.photo-badge {
    position: absolute;
    bottom: 2.2rem;
    right: 2.2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.photo-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-badge h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.photo-badge p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.hero-visual-card .btn-floating-cta {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    transform: rotate(-4deg);
    z-index: 10;
}

/* SECCIÓN TÍTULOS */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

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

/* ANALIZADOR DE PERFIL INTERACTIVO (QUIZ) */
.quiz-section {
    position: relative;
}

.profile-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.profile-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-spring);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.profile-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    transition: var(--transition-spring);
    transform: scaleX(0);
    transform-origin: center;
}

.profile-card:hover {
    border-color: rgba(126, 157, 100, 0.4);
    transform: translateY(-6px);
}

.profile-card.active {
    background: var(--primary-green-light);
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.profile-card.active::before {
    background: var(--primary-green-dark);
    transform: scaleX(1);
}

.profile-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--slate-gray-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--primary-green-dark);
    transition: var(--transition-spring);
}

.profile-card.active .profile-icon-wrapper {
    background: var(--primary-green-dark);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(78, 122, 66, 0.25);
    transform: scale(1.08) rotate(5deg);
}

.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.profile-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* DASHBOARD DEL ANALIZADOR */
.quiz-dashboard {
    position: relative;
}

.dashboard-card {
    background: var(--bg-light-card);
    border-color: var(--border-color);
}

.dashboard-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-badge {
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.dash-block-title {
    font-size: 1.1rem;
    color: var(--primary-green-dark);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dash-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.dash-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.dash-list li svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.dash-list-red li svg {
    color: #c0392b;
}

.dash-list-green li svg {
    color: var(--primary-green-dark);
}

.dashboard-highlight {
    background: var(--slate-gray-light);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.highlight-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.highlight-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* MARCO FOTO INTERACTIVO DASHBOARD */
.dashboard-visual-container {
    position: relative;
    width: 100%;
}

.dash-photo-frame {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.6rem;
    box-shadow: var(--shadow-soft);
}

.dash-photo {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: opacity 0.3s ease;
}

/* SECCIÓN POR QUÉ 10 SESIONES */
.why-10-section {
    background: linear-gradient(180deg, var(--bg-light-pure) 0%, #f6f8f5 50%, var(--bg-light-pure) 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
    align-items: center;
}

.why-left h2 {
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.why-left p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.truth-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.truth-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
}

.truth-card.loose {
    background: #fdf0f0;
    border-color: #f5c6c6;
}

.truth-card.method-10 {
    background: var(--primary-green-light);
    border-color: var(--border-color);
}

.truth-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.loose .truth-badge {
    background: rgba(192, 57, 43, 0.1);
    color: #c0392b;
}

.method-10 .truth-badge {
    background: var(--primary-green-dark);
    color: #ffffff;
}

.truth-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loose h3 { color: #c0392b; }
.method-10 h3 { color: var(--primary-green-dark); }

.truth-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ROADMAP DE 10 SESIONES (TIMELINE) */
.timeline-section {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    margin-top: 3rem;
}

.timeline-progress-bar {
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: 100%;
    background: var(--border-color);
    z-index: 1;
}

.timeline-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: var(--shadow-glow);
    z-index: 2;
    transition: height 0.5s ease-out;
}

.timeline-block {
    position: relative;
    padding-left: 60px;
    margin-bottom: 1.8rem;
    z-index: 5;
}

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

.timeline-node {
    position: absolute;
    left: 10px;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-light-pure);
    border: 3px solid var(--slate-gray);
    z-index: 10;
    transition: var(--transition-spring);
}

.timeline-block.active .timeline-node {
    border-color: var(--primary-green-dark);
    background: var(--primary-green-dark);
    box-shadow: 0 0 12px 3px rgba(78, 122, 66, 0.25);
    transform: scale(1.2);
}

.timeline-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.4rem 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.timeline-card:hover {
    border-color: var(--primary-green);
    background: var(--slate-gray-light);
}

.timeline-block.active .timeline-card {
    background: var(--primary-green-light);
    border-color: var(--primary-green);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-session-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.session-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--slate-gray);
    transition: var(--transition-fast);
}

.timeline-block.active .session-number {
    color: var(--primary-green-dark);
}

.session-type {
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.type-individual {
    background: rgba(126, 157, 100, 0.18);
    color: var(--primary-green-dark);
}

.type-grupal {
    background: rgba(183, 109, 0, 0.15);
    color: var(--accent-gold);
}

.session-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.session-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.timeline-block.expanded .session-arrow {
    transform: rotate(180deg);
    color: var(--primary-green-dark);
}

.timeline-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.timeline-block.expanded .timeline-card-body {
    max-height: 500px;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    transition: max-height 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.session-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.session-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deliverable-badge {
    background: var(--bg-light-pure);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.2rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.deliverable-badge svg {
    color: var(--primary-green-dark);
}

/* TESTIMONIOS */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.test-stars {
    color: #f1c40f;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.test-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-green-dark);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

.test-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.test-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECCIÓN AGENDA / WIDGET DE RESERVA INTEGRAL */
.booking-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-light-pure) 0%, #f3f6f1 100%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.booking-intro h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.booking-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.booking-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-bullets li {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
}

.booking-bullets li svg {
    color: var(--primary-green-dark);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.booking-bullets h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.booking-bullets p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* WIDGET VISUAL A CITA PREVIA (Tema Claro) */
.booking-widget-cta {
    position: relative;
}

.booking-widget-cta .glass-card {
    background: var(--bg-light-card);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-widget-cta .glass-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(126, 157, 100, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.widget-cta-title {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

.widget-cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    line-height: 1.5;
}

.booking-widget-cta .btn {
    width: 100%;
}

.appointment-badge-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.appointment-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green-dark);
}

.appointment-badge svg {
    color: var(--primary-green-dark);
}

/* ACORDEÓN PREGUNTAS FRECUENTES (FAQs) */
.faq-section {
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.faq-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-green);
    background: var(--primary-green-light);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-green-dark);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(126, 157, 100, 0.15);
    padding-top: 1rem;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--border-color);
    background: #111110;
    padding: 4.5rem 0 2rem 0;
    position: relative;
    z-index: 10;
    color: #e5e5e5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 4.5rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green-light);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #b3b3b3;
    margin-bottom: 0.85rem;
}

.footer-info-item svg {
    color: var(--primary-green);
}

.footer-info-item a {
    color: #b3b3b3;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-info-item a:hover {
    color: #ffffff;
}

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

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

.footer-legal-links a {
    color: #888888;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: #b3b3b3;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA SCROLL TRIGGERED
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

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

/* ==========================================================================
   RESPONSIVIDAD Y MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .profile-selector-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .dashboard-highlight {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .site-header {
        top: 1rem;
    }
    
    .site-header .container {
        padding: 0.5rem 1.4rem;
    }
    
    .site-navigation {
        display: none; /* Simplificado para móviles en landing */
    }
    
    .why-left h2, .booking-intro h2 {
        font-size: 1.9rem;
    }
    
    .photo-img {
        height: 280px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   16. SECCIÓN PRECIOS Y COMPROMISO (CSS ADICIONAL)
   ========================================================================== */
.pricing-commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.pricing-card, .commitment-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    align-self: flex-start;
    background: var(--primary-green-dark);
    color: #ffffff;
    padding: 0.35rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.pricing-intro-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.price-block {
    background: var(--slate-gray-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-old {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-old del {
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: line-through;
    color: #c0392b;
}

.price-new {
    display: flex;
    flex-direction: column;
}

.price-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green-dark);
    line-height: 1;
}

.price-tax {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pricing-card-footer {
    margin-top: auto;
    text-align: center;
}

.pricing-footer-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-full {
    width: 100%;
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.2rem;
}

.commitment-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-green-light);
    color: var(--primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.commitment-bullets-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 0.5rem;
}

.commitment-bullets-list li {
    position: relative;
    padding-left: 1.5rem;
}

.commitment-bullets-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #c0392b;
    font-size: 1.5rem;
    line-height: 1;
}

.commitment-quote {
    background: var(--slate-gray-light);
    border-left: 4px solid var(--primary-green);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 0.925rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.commitment-conclusion {
    background: rgba(126, 157, 100, 0.08);
    border: 1px dashed rgba(126, 157, 100, 0.4);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-size: 0.925rem;
    color: var(--primary-green-dark);
}

@media (max-width: 1024px) {
    .pricing-commitment-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

