/* ==========================================================================
   JHOANA LECUNA | PSICÓLOGA • SUICIDÓLOGA
   Diseño Exacto Basado en la Maqueta de Referencia
   ========================================================================== */

:root {
    /* Paleta Azul Oscuro Dominante */
    --navy-header: #07172B;
    --navy-hero: #07172B;
    --navy-deep: #061426;
    --navy-dark: #0B1B33;
    --navy-card: #0E2442;
    --navy-border: rgba(255, 255, 255, 0.1);

    /* Acentos y Botones */
    --btn-blue-primary: #1C3D6A;
    --btn-blue-hover: #25508D;
    --blue-accent-soft: #7CA0C7;
    --blue-accent-light: #93C5FD;
    --gold-logo: #D9A74A;

    /* Superficies Claras (Sobre Mí) */
    --bg-white: #FFFFFF;
    --bg-light-soft: #F8FAFC;
    --text-dark: #0F2440;
    --text-muted: #475569;
    --text-light: #CBD5E1;

    /* Tipografía */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transición & Radio */
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-pill: 9999px;
    --radius-card: 18px;
}

/* Reset Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--navy-hero);
}

body {
    font-family: var(--font-sans);
    color: var(--text-muted);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilidad de Accesibilidad: Screen Reader Only (Oculta visualmente inputs nativos) */
.sr-only,
.modalidad-card input[type="radio"],
.time-slot-card input[type="radio"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   CABECERA PRINCIPAL (MINIMALISTA PREMIUM)
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #07172B;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s ease, padding 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(7, 23, 43, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(217, 167, 74, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.15rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 0.85rem 2.5rem;
}

/* Marca Oficial Minimalista */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.brand-logo:hover .brand-mark img {
    opacity: 0.9;
}

.brand-titles {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #FFFFFF;
    line-height: 1.15;
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: #D9A74A;
    margin-top: 2px;
    opacity: 0.88;
}

/* Navegación Tipográfica Pura */
.desktop-nav {
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 0.4rem 0;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: #D9A74A;
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    width: 100%;
    background-color: #D9A74A;
}

/* Acciones y Botón de Agendar: Minimalista Premium */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.45rem;
    background: transparent;
    border: 1px solid rgba(217, 167, 74, 0.6);
    color: #D9A74A;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-header-cta:hover {
    background: #D9A74A;
    color: #07172B;
    border-color: #D9A74A;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217, 167, 74, 0.25);
}

/* Botón Menú Móvil Minimalista */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 1.5px;
    background-color: #FFFFFF;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu-btn.open .bar:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
}

.mobile-menu-btn.open .bar:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-drawer {
    display: none;
    background: var(--navy-deep);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--navy-border);
}

.mobile-drawer.open {
    display: block;
}

.mobile-drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-drawer-link {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   SECCIÓN 1: HERO (DISEÑO EDITORIAL INTEGRADO SIN RECUADRO)
   ========================================================================== */
.section-inicio {
    background-color: var(--navy-hero);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-split-section {
    background-color: var(--navy-hero);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 560px;
    max-height: 650px;
    position: relative;
    overflow: hidden;
}

/* Columna Izquierda: Mensaje y Marca de Agua */
.hero-left-col {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.25rem 3.5rem 2.25rem 5rem;
    z-index: 2;
}

/* Marca de Agua Botánica en la esquina inferior izquierda */
.hero-botanical-bg {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 380px;
    height: 520px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
}

.botanical-svg-layer {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
}

.hero-text-content {
    position: relative;
    z-index: 3;
    max-width: 590px;
}

/* Badge Eyebrow Dorado / Azul */
.hero-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 167, 74, 0.35);
    border-radius: var(--radius-pill);
    padding: 0.35rem 0.95rem;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--gold-logo);
    box-shadow: 0 0 8px var(--gold-logo);
}

.hero-eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--blue-accent-light);
    text-transform: uppercase;
}

/* Título Principal */
.hero-main-title {
    font-family: var(--font-serif);
    font-size: 3.45rem;
    line-height: 1.14;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
}

.title-line-1 {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.title-line-2 {
    display: block;
    font-weight: 400;
    color: #E2E8F0;
}

.title-line-2 em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--blue-accent-soft);
    font-weight: 400;
}

/* Párrafo Bio */
.hero-bio-paragraph {
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(203, 213, 225, 0.94);
    margin-bottom: 1.85rem;
    max-width: 540px;
    font-weight: 350;
}

.hero-bio-paragraph strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* Grupo de Botones */
.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Botón Primario: Coordinar Encuentro */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1E4679 0%, #132E52 100%);
    color: #FFFFFF;
    border: 1px solid rgba(217, 167, 74, 0.45);
    border-radius: var(--radius-pill);
    padding: 0.88rem 1.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(6, 20, 38, 0.6), 0 0 15px rgba(217, 167, 74, 0.15);
    transition: var(--transition);
    outline: none;
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #265592 0%, #1A3D6B 100%);
    border-color: rgba(217, 167, 74, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 20, 38, 0.8), 0 0 22px rgba(217, 167, 74, 0.35);
    color: #FFFFFF;
}

.calendar-icon {
    flex-shrink: 0;
}

/* Botón Secundario: Un Respiro Para Vos (SIN LÍNEAS TOSTADAS DE NAVEGADOR) */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    padding: 0.45rem 1.4rem 0.45rem 0.55rem;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(217, 167, 74, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.play-circle-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-secondary-text {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.btn-hero-secondary:hover .play-circle-icon {
    background-color: var(--gold-logo);
    color: var(--navy-header);
    border-color: var(--gold-logo);
    transform: scale(1.06);
}

.btn-hero-secondary:hover .btn-secondary-text {
    color: #FFFFFF;
}

/* Ribbon de Autoridad Profesional */
.hero-authority-strip {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-badge-item {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.auth-number {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold-logo);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.auth-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #94A3B8;
    text-transform: uppercase;
}

.authority-sep {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Columna Derecha: Foto Hero con desvanecimiento lateral suave hacia el azul (SIN RECUADRO) */
.hero-right-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background-color: var(--navy-hero);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* El desvanecimiento suave y desenfoque armónico en el costado izquierdo (blureado en el costado) */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, #07172B 0%, rgba(7, 23, 43, 0.95) 8%, rgba(7, 23, 43, 0.5) 24%, transparent 50%),
        linear-gradient(to bottom, rgba(7, 23, 43, 0.45) 0%, transparent 12%),
        linear-gradient(to top, rgba(7, 23, 43, 0.45) 0%, transparent 12%);
    pointer-events: none;
    z-index: 2;
}

.hero-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ==========================================================================
   SECCIÓN 2: SOBRE MÍ (IDÉNTICO A LA REFERENCIA)
   ========================================================================== */
section[id] {
    scroll-margin-top: 88px;
}

.section-sobre-mi {
    background-color: var(--bg-white);
    padding: 6rem 0;
}

.container-sobre-mi {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.sobre-mi-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.sobre-mi-badge-wrap {
    margin-bottom: 1.25rem;
}

.badge-sobre-mi {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #2563EB;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.badge-sobre-mi::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: #2563EB;
}

.sobre-mi-heading {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.heading-line-1 {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.heading-line-2 {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: #22487A;
}

.sobre-mi-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Los 3 Pilares con Iconos */
.sobre-mi-features {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 0.84rem;
    line-height: 1.35;
    font-weight: 500;
    color: #334155;
}

/* Botón Historia */
.btn-sobre-mi-history {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--navy-dark);
    color: #FFFFFF;
    padding: 0.92rem 2rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(11, 27, 51, 0.25);
    transition: var(--transition);
}

.btn-sobre-mi-history:hover {
    background-color: #16365C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 27, 51, 0.35);
    color: #FFFFFF;
}

/* Foto Derecha Sobre Mí (Speaker con micrófono) */
.sobre-mi-visual {
    width: 100%;
}

.sobre-mi-image-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.speaker-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   SECCIONES ADICIONALES (SERVICIOS, MEDIOS, LIBRO AMAZON, CONTACTO)
   ========================================================================== */
.container-standard {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.text-center {
    text-align: center;
}

.sub-badge {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.sub-badge-light {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--blue-accent-light);
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.dark-section-title {
    font-family: var(--font-serif);
    font-size: 2.45rem;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.section-subtitle-lead {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

/* SERVICIOS */
.section-services {
    background-color: var(--bg-light-soft);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-box {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-box h3 {
    font-family: var(--font-serif);
    font-size: 1.32rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

.service-box-highlight {
    border: 2px solid #2563EB;
}

.service-badge-pill {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563EB;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}

/* MEDIOS Y PRENSA */
.section-medios {
    background-color: #FFFFFF;
    padding: 6rem 0;
}

.medios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.medios-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.medios-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.medios-img-wrap {
    height: 200px;
    overflow: hidden;
}

.medios-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medios-body {
    padding: 1.75rem;
}

.medios-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #2563EB;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.5rem;
}

.medios-body h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.65rem;
}

.medios-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* LIBROS EN AMAZON (VITRINA EDITORIAL) */
.section-books {
    background-color: var(--navy-hero);
    padding: 6rem 0;
    color: #FFFFFF;
}

.books-showcase-box {
    background: linear-gradient(145deg, #0B1F38 0%, #061222 100%);
    border-radius: 24px;
    padding: 4rem;
    border: 1px solid var(--navy-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.books-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* Portada 3D del Libro */
.book-3d-scene {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.book-3d {
    width: 220px;
    height: 330px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(8deg);
    transition: transform 0.5s ease;
}

.book-3d:hover {
    transform: rotateY(-8deg) rotateX(4deg) translateY(-8px);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #07172B 0%, #102B4C 100%);
    border-radius: 4px 14px 14px 4px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.book-cover-inner {
    height: 100%;
    border: 1px solid rgba(217, 167, 74, 0.3);
    padding: 1rem 0.85rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border-radius: 2px 8px 8px 2px;
}

.book-cover-header {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gold-logo);
}

.book-subtitle-text {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94A3B8;
    margin-bottom: 0.25rem;
}

.book-name-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.book-desc-text {
    display: block;
    font-size: 0.62rem;
    color: #CBD5E1;
    line-height: 1.35;
}

.book-symbol-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.book-cover-footer {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #94A3B8;
}

.book-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 100%;
    background: #050E1A;
    transform: rotateY(-90deg) translateZ(14px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-spine span {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 0.6rem;
    color: #CBD5E1;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.book-pages {
    position: absolute;
    top: 3px;
    right: -22px;
    width: 22px;
    height: 324px;
    background: linear-gradient(90deg, #E2E8F0 0%, #CBD5E1 100%);
    transform: rotateY(90deg) translateZ(-11px);
}

/* Columna Info Libro */
.book-highlight-badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-logo);
    margin-bottom: 0.85rem;
}

.book-heading {
    font-family: var(--font-serif);
    font-size: 2.15rem;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.book-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.book-formats-list {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.format-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: #FFFFFF;
}

.btn-amazon-buy {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #0B1626;
    color: #FFFFFF;
    padding: 0.95rem 1.75rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.btn-amazon-buy:hover {
    background: #0F2038;
    border-color: #FF9900;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.25);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.amazon-logo-svg {
    width: 30px;
    height: 30px;
    color: #FF9900;
    flex-shrink: 0;
}

.amazon-btn-text {
    display: flex;
    flex-direction: column;
}

.amazon-btn-text .subtext {
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
}

.amazon-btn-text .maintext {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.arrow-svg {
    color: #FF9900;
    margin-left: 0.5rem;
}

.amazon-secure-note {
    display: block;
    font-size: 0.76rem;
    color: #94A3B8;
    margin-top: 0.85rem;
}

/* SECCIÓN CONTACTO */
.section-contact {
    background-color: var(--bg-light-soft);
    padding: 6rem 0;
}

.contact-box-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
}

.contact-left-info {
    background: var(--navy-header);
    color: #FFFFFF;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
}

.contact-links-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-top: auto;
}

.c-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.c-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.c-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon { background: rgba(37, 211, 102, 0.15); color: #25D366; }
.mail-icon { background: rgba(96, 165, 250, 0.15); color: #60A5FA; }
.ig-icon { background: rgba(236, 72, 153, 0.15); color: #F472B6; }

.c-label {
    display: block;
    font-size: 0.72rem;
    color: #94A3B8;
    text-transform: uppercase;
}

.c-val {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Formulario Contacto */
.contact-right-form {
    padding: 3.5rem;
}

.form-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
}

.direct-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: #0F172A;
    background: #F8FAFC;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-submit-form {
    background-color: var(--navy-dark);
    color: #FFFFFF;
    padding: 0.95rem;
    border-radius: var(--radius-pill);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(11, 27, 51, 0.25);
}

.btn-submit-form:hover {
    background-color: #16365C;
    transform: translateY(-2px);
}

.privacy-caption {
    font-size: 0.76rem;
    color: #64748B;
    text-align: center;
}

.form-success-box {
    background: #ECFDF5;
    border: 1px solid #10B981;
    color: #065F46;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

/* FOOTER */
.site-footer {
    background: #040B16;
    color: #FFFFFF;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-copy-text {
    font-size: 0.84rem;
    color: #94A3B8;
    margin-bottom: 0.25rem;
}

.footer-rights {
    font-size: 0.76rem;
    color: #64748B;
    margin: 0;
}

.btn-crisis-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #FCA5A5;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-crisis-footer:hover {
    background: #DC2626;
    color: #FFFFFF;
}

/* MODAL DE CRISIS */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 10, 20, 0.82);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #0B1C33;
    border-radius: var(--radius-card);
    width: calc(100% - 2rem);
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    margin: auto;
}

.modal-header {
    background: #071526;
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h3 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: #94A3B8;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 1.6rem;
    cursor: pointer;
}

.modal-close:hover { color: #FFFFFF; }

.modal-body {
    padding: 1.75rem;
}

.modal-intro {
    font-size: 0.92rem;
    color: #E2E8F0;
    margin-bottom: 1.5rem;
}

.hotlines-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hotline-card {
    background: #081628;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotline-country-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.country-pill-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 22px;
    padding: 0 0.45rem;
    border-radius: 6px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38BDF8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.country-globe-tag {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.4);
    color: #34D399;
}

.time-slot-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    height: 32px;
}

.hotline-country {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.hotline-info {
    text-align: right;
}

.hl-name {
    display: block;
    font-size: 0.76rem;
    color: #94A3B8;
}

.hl-num {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #34D399;
}

/* ==========================================================================
   ESTILOS DE CABECERA Y FOOTER ENRIQUECIDO PARA AGENDAMIENTO
   ========================================================================== */
.nav-link-btn {
    background: linear-gradient(135deg, #1C3D6A 0%, #25508D 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nav-link-btn:hover {
    background: linear-gradient(135deg, #25508D 0%, #3B82F6 100%);
    border-color: #38BDF8;
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-contacts-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-c-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: #CBD5E1;
    transition: var(--transition);
}

.footer-c-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: #38BDF8;
    transform: translateY(-2px);
}

.btn-footer-agendar {
    background: #1C3D6A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-footer-agendar:hover {
    background: #25508D;
    border-color: #38BDF8;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   MODAL INTERACTIVO MULTI-PASO: AGENDAR CONSULTA (ANIMACIÓN ÉPICA)
   ========================================================================== */
.booking-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 12, 24, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.booking-modal-card {
    background: linear-gradient(175deg, #09192E 0%, #061120 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(37, 99, 235, 0.15);
    transform: scale(0.9) translateY(25px);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.25);
    padding: 2.25rem;
    scrollbar-width: thin;
    scrollbar-color: #1E3A5F transparent;
}

.booking-modal-backdrop.open .booking-modal-card {
    transform: scale(1) translateY(0);
}

.booking-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #94A3B8;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.booking-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    transform: rotate(90deg) scale(1.08);
}

/* Encabezado del Modal */
.booking-modal-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.booking-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 167, 74, 0.12);
    border: 1px solid rgba(217, 167, 74, 0.3);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FCD34D;
    margin-bottom: 0.85rem;
}

.booking-modal-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.35rem;
}

.booking-modal-subtitle {
    font-size: 0.88rem;
    color: #94A3B8;
    max-width: 480px;
    margin: 0 auto;
}

/* Stepper / Indicador de Pasos */
.booking-stepper-wrap {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.booking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    transition: var(--transition);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0D223D;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #64748B;
    transition: var(--transition);
}

.step-indicator.active .step-num {
    background: #2563EB;
    border-color: #38BDF8;
    color: #FFFFFF;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.6);
    transform: scale(1.1);
}

.step-indicator.active .step-label {
    color: #38BDF8;
    font-weight: 700;
}

.step-indicator.completed .step-num {
    background: #10B981;
    border-color: #34D399;
    color: #FFFFFF;
}

.step-indicator.completed .step-label {
    color: #34D399;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    margin: -1.2rem 0.5rem 0;
    transition: background 0.4s ease;
}

.step-connector.filled {
    background: linear-gradient(90deg, #2563EB, #38BDF8);
}

/* Paneles del Formulario */
.booking-step-panel {
    display: none;
    opacity: 0;
}

.booking-step-panel.is-active {
    display: block;
    animation: stepPanelEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes stepPanelEnter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.step-panel-header {
    margin-bottom: 1.4rem;
}

.panel-question {
    font-size: 1.15rem;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.panel-hint {
    font-size: 0.82rem;
    color: #94A3B8;
}

/* Tarjetas de Selección de Modalidad */
.modalidad-card input[type="radio"],
.time-slot-card input[type="radio"] {
    display: none !important;
}

.modalidad-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.modalidad-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.modalidad-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modalidad-card.selected {
    background: rgba(37, 99, 235, 0.14);
    border-color: #38BDF8;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
}

.m-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modalidad-card.selected .m-card-icon {
    background: #2563EB;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.5);
}

.m-card-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.m-card-desc {
    display: block;
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.45;
}

.m-card-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: var(--transition);
}

.modalidad-card.selected .m-card-check {
    background: #10B981;
    border-color: #10B981;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Motivo Chips */
.motivo-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
}

.motivo-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 0.85rem;
}

.motivo-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.motivo-chip, .day-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #CBD5E1;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.motivo-chip:hover, .day-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: #38BDF8;
    transform: translateY(-2px);
}

.motivo-chip.active, .day-chip.active {
    background: #2563EB;
    border-color: #38BDF8;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

/* PASO 2: HORARIO */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.time-slot-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.25rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-3px);
}

.time-slot-card.selected {
    background: rgba(37, 99, 235, 0.15);
    border-color: #38BDF8;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.time-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.4rem;
}

.time-title {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}

.time-range {
    display: block;
    font-size: 0.72rem;
    color: #94A3B8;
}

.days-preference-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
}

.days-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* PASO 3: DATOS Y RESUMEN */
.booking-live-summary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(56, 189, 248, 0.06) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.summary-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #38BDF8;
    letter-spacing: 0.04em;
}

.summary-items-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.summary-pill {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.76rem;
}

.summary-pill .s-label {
    color: #94A3B8;
    margin-right: 0.25rem;
}

.summary-pill .s-val {
    color: #FFFFFF;
    font-weight: 600;
}

.booking-inputs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.b-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.b-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
}

.b-field input, .b-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 0.75rem 0.95rem;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.b-field input:focus, .b-field textarea:focus {
    outline: none;
    border-color: #38BDF8;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.confidential-lock-banner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 0.65rem 0.95rem;
    font-size: 0.76rem;
    color: #34D399;
}

/* Acciones de Navegación de Pasos */
.booking-footer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-step-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-step-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #CBD5E1;
}

.btn-step-prev:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-step-next {
    background: linear-gradient(135deg, #1C3D6A 0%, #25508D 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-step-next:hover {
    background: linear-gradient(135deg, #25508D 0%, #3B82F6 100%);
    border-color: #38BDF8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.btn-step-submit {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    border: 1px solid #34D399;
    color: #FFFFFF;
    padding: 0.9rem 1.75rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
}

.btn-step-submit:hover {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

/* ==========================================================================
   RESPONSIVE DESIGN Y OPTIMIZACIÓN MÓVIL PROFESIONAL
   ========================================================================== */

/* TABLETS Y PANTALLAS MEDIANAS (Hasta 1024px) */
@media (max-width: 1024px) {
    .header-inner {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 1.4rem;
    }

    .hero-split-section {
        min-height: 520px;
    }

    .hero-left-col {
        padding: 2.5rem 2.5rem 2.5rem 3rem;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .sobre-mi-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* TABLETS Y PANTALLAS COMPACTAS (Hasta 1024px) */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.4rem;
    }

    .nav-link {
        font-size: 0.72rem;
    }

    .btn-header-cta {
        padding: 0.55rem 1.1rem;
        font-size: 0.72rem;
    }
}

/* SMARTPHONES Y TABLETS VERTICALES (Hasta 768px) */
@media (max-width: 768px) {
    /* Cabecera Móvil Minimalista */
    .header-inner {
        padding: 0.85rem 1.25rem;
    }

    .desktop-nav,
    .btn-header-cta {
        display: none;
    }

    .brand-logo {
        gap: 0.75rem;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-name {
        font-size: 1.12rem;
        letter-spacing: 0.1em;
    }

    .brand-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 36px;
        height: 36px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-btn .bar {
        width: 22px;
        height: 1.5px;
        background-color: #FFFFFF;
        border-radius: 1px;
        transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .mobile-menu-btn.open .bar:nth-child(1) {
        transform: translateY(3.75px) rotate(45deg);
    }

    .mobile-menu-btn.open .bar:nth-child(2) {
        transform: translateY(-3.75px) rotate(-45deg);
    }

    /* Cajón Desplegable Móvil */
    .mobile-drawer {
        background: rgba(6, 17, 33, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.25rem 1.5rem 1.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .mobile-drawer-list {
        gap: 0.4rem;
    }

    .mobile-drawer-link {
        display: block;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: #E2E8F0;
    }

    .mobile-drawer-link:active, .mobile-drawer-link:hover {
        color: #38BDF8;
        padding-left: 0.75rem;
    }

    .mobile-drawer-cta {
        margin-top: 1.25rem;
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #1C3D6A 0%, #25508D 100%);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #FFFFFF;
        padding: 0.9rem;
        border-radius: var(--radius-pill);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* SECCIÓN 1: HERO EN MÓVIL */
    .hero-split-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }

    .hero-left-col {
        padding: 2.5rem 1.5rem 2rem;
        text-align: center;
        align-items: center;
    }

    .hero-botanical-bg {
        width: 220px;
        height: 320px;
        opacity: 0.2;
    }

    .hero-eyebrow-pill {
        margin: 0 auto 1.1rem;
        padding: 0.35rem 0.85rem;
    }

    .hero-eyebrow-text {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .hero-main-title {
        font-size: 2.25rem;
        line-height: 1.16;
        margin-bottom: 1.1rem;
    }

    .hero-bio-paragraph {
        font-size: 0.96rem;
        line-height: 1.65;
        margin: 0 auto 1.75rem;
        max-width: 100%;
    }

    .hero-actions-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn-hero-primary {
        width: 100%;
        justify-content: center;
        padding: 0.92rem 1.5rem;
        font-size: 0.84rem;
    }

    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
    }

    .hero-authority-strip {
        justify-content: center;
        gap: 1.25rem;
        padding-top: 1.35rem;
    }

    .authority-badge-item {
        align-items: center;
        text-align: center;
    }

    .auth-number {
        font-size: 1.3rem;
    }

    .auth-label {
        font-size: 0.65rem;
    }

    /* Foto Hero en Móvil con Transición Fusión */
    .hero-right-col {
        height: 360px;
        width: 100%;
        overflow: hidden;
    }

    .hero-image-wrapper::before {
        background: 
            linear-gradient(to bottom, #07172B 0%, rgba(7, 23, 43, 0.4) 10%, transparent 30%, rgba(255, 255, 255, 0.85) 92%, #FFFFFF 100%),
            linear-gradient(to right, rgba(7, 23, 43, 0.3) 0%, transparent 20%);
    }

    /* SECCIÓN 2: SOBRE MÍ EN MÓVIL */
    .section-sobre-mi {
        padding: 3.5rem 0;
    }

    .container-sobre-mi {
        padding: 0 1.25rem;
    }

    .sobre-mi-heading {
        font-size: 2rem;
        line-height: 1.22;
        margin-bottom: 1.25rem;
    }

    .sobre-mi-description {
        font-size: 0.95rem;
        line-height: 1.68;
        margin-bottom: 2rem;
    }

    .sobre-mi-features {
        flex-direction: column;
        gap: 0.85rem;
        margin-bottom: 2.25rem;
    }

    .interactive-feature-card {
        background-color: #F8FAFC;
        border: 1px solid #E2E8F0;
        padding: 0.9rem 1rem;
        border-radius: 14px;
        width: 100%;
    }

    .btn-sobre-mi-history {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
    }

    .sobre-mi-visual {
        margin-top: 1.5rem;
    }

    .speaker-photo-img {
        max-height: 320px;
        object-fit: cover;
    }

    /* SECCIÓN 3: SERVICIOS EN MÓVIL */
    .section-services {
        padding: 5rem 0 3rem;
    }

    .container-standard {
        padding: 0 1.25rem;
    }

    .dark-section-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }

    .section-subtitle-lead {
        font-size: 0.94rem;
        margin-bottom: 2.5rem;
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-box {
        padding: 1.75rem 1.4rem;
    }

    /* SECCIÓN 4: MEDIOS EN MÓVIL */
    .section-medios {
        padding: 4rem 0;
    }

    .medios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* SECCIÓN 5: LIBROS EN MÓVIL */
    .section-books {
        padding: 4rem 0;
    }

    .books-showcase-box {
        padding: 2.5rem 1.25rem;
        border-radius: 20px;
    }

    .book-3d-scene {
        padding: 1rem 0;
    }

    .book-3d {
        transform: scale(0.88) rotateY(-14deg) rotateX(6deg);
    }

    .book-heading {
        font-size: 1.65rem;
        line-height: 1.28;
    }

    .book-paragraph {
        font-size: 0.94rem;
    }

    .book-formats-list {
        gap: 0.5rem;
    }

    .format-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
    }

    .btn-amazon-buy {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
    }

    /* FOOTER EN MÓVIL */
    .footer-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.75rem;
    }

    .footer-contacts-list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-c-pill {
        width: 100%;
        justify-content: center;
    }

    .btn-footer-agendar {
        width: 100%;
    }

    /* MODAL DE AGENDAMIENTO EN MÓVIL */
    .booking-modal-card {
        padding: 1.5rem 1.15rem 1.75rem;
        border-radius: 18px;
        max-height: 92vh;
    }

    .booking-modal-title {
        font-size: 1.65rem;
    }

    .modalidad-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .time-slots-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .booking-footer-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem;
    }

    .btn-step-next,
    .btn-step-submit,
    .btn-step-prev {
        width: 100%;
        justify-content: center;
    }

    .b-field input,
    .b-field textarea {
        font-size: 16px !important; /* Previene auto-zoom en iOS Safari */
    }

    /* MODAL DE CRISIS EN MÓVIL */
    .modal-card {
        max-height: 85vh;
        margin: 1rem;
    }

    .hotline-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .hotline-info {
        text-align: left;
    }
}

/* SMARTPHONES PEQUEÑOS (Hasta 400px - iPhone SE, Galaxy A, etc.) */
@media (max-width: 400px) {
    .brand-name {
        font-size: 1.02rem;
    }

    .hero-main-title {
        font-size: 2.05rem;
    }

    .sobre-mi-heading {
        font-size: 1.75rem;
    }

    .dark-section-title {
        font-size: 1.7rem;
    }

    .book-heading {
        font-size: 1.45rem;
    }

    .book-3d {
        transform: scale(0.8) rotateY(-12deg) rotateX(5deg);
    }
}

/* ==========================================================================
   SISTEMA DE ANIMACIONES, EFECTOS DE SCROLL Y MICRO-INTERACCIONES
   ========================================================================== */

/* 1. Barra de Progreso de Lectura / Scroll en el borde superior */
.scroll-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    width: 0%;
    background: linear-gradient(90deg, #2563EB 0%, #38BDF8 60%, #D9A74A 100%);
    z-index: 99999;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    transition: width 0.1s ease-out;
}

/* 2. Cabecera Dinámica al hacer Scroll */
.site-header.scrolled {
    background-color: rgba(6, 17, 33, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* 3. Animaciones de Entrada en el Hero */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroPhotoZoom {
    from {
        opacity: 0;
        transform: scale(1.04);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
}

@keyframes leavesFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(1.8deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulseRadarRing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes buttonShine {
    0% { left: -100%; }
    40% { left: 200%; }
    100% { left: 200%; }
}

.anim-fade-in {
    animation: heroFadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-up {
    animation: heroSlideUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.anim-slide-up.delay-1 {
    animation-delay: 0.18s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.anim-slide-up.delay-2 {
    animation-delay: 0.36s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.anim-float-leaves {
    animation: leavesFloat 8s ease-in-out infinite;
    will-change: transform;
}

.anim-hero-photo {
    animation: heroPhotoZoom 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.pulse-radar-ring {
    animation: pulseRadarRing 2.6s infinite;
}

/* 4. Efecto de Brillo Deslizante en Botones (Shine Sweep) */
.btn-shine-effect {
    position: relative;
    overflow: hidden;
}

.btn-shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(25deg);
    pointer-events: none;
    transition: none;
}

.btn-shine-effect:hover::after {
    animation: buttonShine 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 5. Scroll Reveal Engine (Aparición Fluida al Desplazar) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease-out, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.delay-1 { transition-delay: 0.05s; }
.reveal-on-scroll.delay-2 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-3 { transition-delay: 0.15s; }
.reveal-on-scroll.delay-4 { transition-delay: 0.2s; }

/* 6. Micro-interacción en los 3 Pilares de Sobre Mí */
.interactive-feature-card {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.interactive-feature-card:hover {
    background-color: #F8FAFC;
    border-color: #E2E8F0;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.interactive-feature-card:hover .feature-icon {
    background-color: #2563EB;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.interactive-feature-card:hover .feature-icon svg {
    stroke: #FFFFFF;
}

.feature-icon {
    transition: var(--transition);
}

.feature-icon svg {
    transition: var(--transition);
}

/* 7. Efecto 3D Tilt y Resplandor en la Tarjeta de la Disertante */
.tilt-target-card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    will-change: transform;
}

.tilt-target-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(15, 36, 64, 0.16);
}

.card-glare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius-card);
}

.tilt-target-card:hover .card-glare-overlay {
    opacity: 1;
}

/* 8. Botón Historia con Flecha Animada */
.btn-bounce-hover {
    position: relative;
}

.btn-bounce-hover .arrow-move {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-bounce-hover:hover .arrow-move {
    transform: translateX(6px);
}

/* 10. Soporte para Preferencias de Reducción de Movimiento */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   NUEVOS ESTILOS: INTEGRACIÓN DE CONTENIDOS Y MATERIALES DE JHOANA LECUNA
   ========================================================================== */

/* 1. Sello Flotante en Hero */
.hero-seal-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(7, 23, 43, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(217, 167, 74, 0.35);
    padding: 0.65rem 1.15rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    z-index: 10;
}

.hero-seal-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #D9A74A;
}

.hero-seal-text {
    display: flex;
    flex-direction: column;
}

.hero-seal-text .seal-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
}

.hero-seal-text .seal-specialty {
    font-size: 0.72rem;
    color: #D9A74A;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.anim-float-badge {
    animation: badgeFloatGentle 4.5s ease-in-out infinite alternate;
}

@keyframes badgeFloatGentle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

/* 2. Cita Destacada y Mosaico de Resiliencia en Sobre Mí */
.sobre-mi-quote-box {
    position: relative;
    background-color: #F8FAFC;
    border-left: 3px solid #D9A74A;
    padding: 1.25rem 1.4rem 1.25rem 1.6rem;
    border-radius: 0 14px 14px 0;
    margin: 1.6rem 0;
    box-shadow: 0 4px 20px rgba(15, 36, 64, 0.04);
}

.sobre-mi-quote-box .quote-icon {
    position: absolute;
    top: 14px;
    left: -13px;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 2px;
}

.sobre-mi-quote-box .quote-text {
    font-family: var(--font-serif);
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
}

.sobre-mi-mosaic-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: visible;
    box-shadow: 0 20px 50px rgba(15, 36, 64, 0.12);
}

.mosaic-main-img-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
}

.mosaic-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sobre-mi-mosaic-card:hover .mosaic-main-img {
    transform: scale(1.03);
}

.mosaic-sub-badge {
    position: absolute;
    bottom: -25px;
    left: -20px;
    right: 20px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(15, 36, 64, 0.15);
    border: 1px solid rgba(15, 36, 64, 0.08);
}

.resilience-mini-thumb {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid #D9A74A;
}

.resilience-mini-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resilience-badge-copy {
    display: flex;
    flex-direction: column;
}

.resilience-badge-copy .r-badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #D9A74A;
    text-transform: uppercase;
}

.resilience-badge-copy .r-badge-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.resilience-badge-copy .r-badge-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.mosaic-official-seal {
    position: absolute;
    top: -20px;
    right: -15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 2px solid #FFFFFF;
    background: #FFFFFF;
}

.mosaic-official-seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 3. Subtítulos de rol en las tarjetas de modalidad */
.service-subtitle-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #2563EB;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

/* 4. Sección Suicidología Comunitaria & Lazos */
.section-suicidologia {
    background-color: var(--navy-dark);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.suicidologia-hero-banner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(14, 36, 66, 0.7);
    border: 1px solid rgba(217, 167, 74, 0.25);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}

.sub-badge-gold {
    background: rgba(217, 167, 74, 0.15);
    color: #D9A74A;
    border: 1px solid rgba(217, 167, 74, 0.3);
}

.light-text {
    color: #FFFFFF !important;
}

.suicidologia-manifesto {
    font-family: var(--font-serif);
    font-size: 1.18rem;
    font-style: italic;
    color: #CBD5E1;
    line-height: 1.8;
    margin: 1.4rem 0 2rem;
}

.author-signature {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.2rem;
}

.signature-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
}

.signature-tag {
    font-size: 0.82rem;
    color: #D9A74A;
}

.suicidologia-banner-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.emblem-gold-img {
    max-width: 280px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 167, 74, 0.35);
}

.lazos-concientizacion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.lazo-card {
    background: #0E2442;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lazo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 167, 74, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.lazo-card-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: #061426;
}

.lazo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lazo-card:hover .lazo-img {
    transform: scale(1.05);
}

.lazo-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lazo-pill-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.lazo-color-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.lazo-yellow {
    background-color: #F59E0B;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.lazo-orange {
    background-color: #F97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
}

.lazo-date {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #94A3B8;
    text-transform: uppercase;
}

.lazo-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.lazo-subtitle {
    font-size: 0.88rem;
    color: #38BDF8;
    font-weight: 500;
    margin-bottom: 1rem;
}

.lazo-card-body p {
    font-size: 0.92rem;
    color: #CBD5E1;
    line-height: 1.65;
    margin: 0;
}

/* 5. Sección Lapiceras Ecológicas Plantables */
.section-lapiceras {
    background-color: #FDFEFA;
    padding: 6.5rem 0;
    position: relative;
    border-top: 1px solid rgba(15, 36, 64, 0.06);
    border-bottom: 1px solid rgba(15, 36, 64, 0.06);
}

.sub-badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.lapiceras-split-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lapiceras-poetic-quote {
    background-color: #F3F8F4;
    border-left: 3.5px solid #22C55E;
    padding: 1.5rem 1.8rem;
    border-radius: 0 16px 16px 0;
    margin: 1.8rem 0 2.2rem;
}

.lapiceras-poetic-quote p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #1E293B;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.poetic-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #15803D;
    letter-spacing: 0.04em;
}

.seed-steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.seed-step {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #15803D;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}

.step-text-wrap {
    display: flex;
    flex-direction: column;
}

.step-heading {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.step-detail {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.lapiceras-cta-action {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-order-lapicera {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #15803D;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    padding: 1.1rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 25px rgba(21, 128, 61, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: fit-content;
}

.btn-order-lapicera:hover {
    background-color: #166534;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(21, 128, 61, 0.45);
    color: #FFFFFF;
}

.lapicera-notice {
    font-size: 0.8rem;
    color: #64748B;
    font-style: italic;
}

.lapiceras-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lapicera-gallery-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 36, 64, 0.1);
    border: 1px solid rgba(15, 36, 64, 0.06);
}

.lapicera-gallery-card.card-large {
    height: 320px;
}

.lapicera-gallery-card .lapicera-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lapicera-gallery-card:hover .lapicera-photo {
    transform: scale(1.04);
}

.gallery-card-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(7, 23, 43, 0.8);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
}

.lapicera-gallery-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.lapicera-gallery-card.card-small {
    height: 200px;
}

/* 6. Libro Insignia SOBREVIVÍ y Antologías */
.book-cover-sobrevivi {
    background: linear-gradient(135deg, #07172B 0%, #0F2440 60%, #1A365D 100%) !important;
    border: 2px solid #D9A74A !important;
}

.book-flagship-card {
    background: #0E2442;
    border: 1px solid rgba(217, 167, 74, 0.25);
    border-radius: 22px;
    padding: 3.5rem;
    margin-bottom: 5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.book-flagship-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    align-items: center;
}

.anthology-section-wrap {
    margin-top: 2rem;
}

.anthology-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-top: 2.8rem;
}

.anthology-card {
    background: #0E2442;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.anthology-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 167, 74, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.anthology-cover-wrap {
    width: 100%;
    height: 310px;
    background-color: #061426;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.anthology-cover-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease;
}

.anthology-card:hover .anthology-cover-img {
    transform: scale(1.05);
}

.anthology-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.anthology-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #D9A74A;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.anthology-card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}

.anthology-compiladoras {
    font-size: 0.78rem;
    font-weight: 500;
    color: #93C5FD;
    margin-bottom: 0.85rem;
}

.anthology-desc {
    font-size: 0.88rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Breakpoints para las Nuevas Secciones */
@media (max-width: 1024px) {
    .suicidologia-hero-banner {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .lapiceras-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .book-flagship-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 2.5rem;
    }

    .book-formats-list {
        justify-content: center;
    }

    .amazon-button-wrapper {
        align-items: center;
    }

    .anthology-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-seal-badge {
        bottom: 12px;
        left: 12px;
        padding: 0.5rem 0.85rem;
    }

    .hero-seal-img {
        width: 36px;
        height: 36px;
    }

    .mosaic-sub-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 1rem;
    }

    .mosaic-official-seal {
        top: 10px;
        right: 10px;
        width: 54px;
        height: 54px;
    }

    .lazos-concientizacion-grid {
        grid-template-columns: 1fr;
    }

    .lapicera-gallery-sub {
        grid-template-columns: 1fr;
    }

    .anthology-cards-grid {
        grid-template-columns: 1fr;
    }

    .book-flagship-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   NUEVA SECCIÓN: ESPACIO DE ABRIGO & CALMA ("QUE QUIEN LLEGUE SE LLEVE ALGO")
   ========================================================================== */
/* ==========================================================================
   NUEVA SECCIÓN: ESPACIO DE ABRIGO & CALMA (COMPACTO Y ARMONIOSO)
   ========================================================================== */
.section-abrigo {
    background: radial-gradient(circle at 50% 0%, #0d274c 0%, #061426 65%, #040c17 100%);
    padding: 3.5rem 1.5rem;
    position: relative;
    border-top: 1px solid rgba(217, 167, 74, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.section-abrigo::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(217, 167, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.section-abrigo::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.abrigo-header-wrap {
    max-width: 820px;
    margin: 0 auto 2.25rem;
}

.light-muted {
    color: #CBD5E1 !important;
    font-size: 1.05rem !important;
    line-height: 1.65;
    margin-top: 0.75rem;
}

.abrigo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1160px;
    margin: 0 auto;
}

.abrigo-card {
    background: rgba(14, 36, 66, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 1.85rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    position: relative;
    min-height: 320px;
}

.abrigo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 167, 74, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

.abrigo-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-logo);
    margin-bottom: 1rem;
}

.card-respiracion .abrigo-card-tag {
    color: #38BDF8;
}

/* Caja de Reflexión Dinámica */
.reflexion-quote-box {
    position: relative;
    padding: 0.25rem 0 1rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark-open {
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(217, 167, 74, 0.22);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.reflexion-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.62;
    color: #F8FAFC;
    font-style: italic;
    transition: opacity 0.25s ease, transform 0.25s ease;
    position: relative;
    z-index: 1;
}

.reflexion-text.fade-out {
    opacity: 0;
    transform: translateY(4px);
}

.reflexion-author {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #D9A74A;
    font-style: normal;
}

.reflexion-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-abrigo-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(217, 167, 74, 0.12);
    color: #F8D38D;
    border: 1px solid rgba(217, 167, 74, 0.3);
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-abrigo-refresh:hover {
    background: rgba(217, 167, 74, 0.22);
    border-color: #D9A74A;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-abrigo-refresh .spin-icon {
    transition: transform 0.4s ease;
}

.btn-abrigo-refresh.rotating .spin-icon {
    transform: rotate(180deg);
}

.reflexion-counter {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.08em;
}

/* Escena de Respiración Guiada */
.breathe-interactive-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    min-height: 150px;
}

.breathe-circle-container {
    width: 110px;
    height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.breathe-outer-halo {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(56, 189, 248, 0.4);
    transition: transform 4s ease-in-out, border-color 1s ease, box-shadow 4s ease;
}

.breathe-core-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, #1E4976 0%, #0B2545 100%);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
    border: 2px solid rgba(56, 189, 248, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 4s ease-in-out, background 1s ease, box-shadow 4s ease;
    z-index: 2;
}

.breathe-instruction {
    font-size: 0.76rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.breathe-timer {
    font-size: 1.2rem;
    font-weight: 800;
    color: #38BDF8;
    margin-top: 2px;
}

/* Fases de Respiración */
.breathe-circle-container.phase-inhale .breathe-outer-halo {
    transform: scale(1.3);
    border-color: #38BDF8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.45);
}

.breathe-circle-container.phase-inhale .breathe-core-circle {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
}

.breathe-circle-container.phase-hold .breathe-outer-halo {
    transform: scale(1.3);
    border-color: #D9A74A;
    box-shadow: 0 0 35px rgba(217, 167, 74, 0.4);
}

.breathe-circle-container.phase-hold .breathe-core-circle {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(217, 167, 74, 0.45);
    border-color: #D9A74A;
}

.breathe-circle-container.phase-exhale .breathe-outer-halo {
    transform: scale(0.9);
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
}

.breathe-circle-container.phase-exhale .breathe-core-circle {
    transform: scale(0.9);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.breathe-hint-text {
    font-size: 0.84rem;
    color: #94A3B8;
    text-align: center;
}

.breathe-action-row {
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-breathe-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(56, 189, 248, 0.12);
    color: #7DD3FC;
    border: 1px solid rgba(56, 189, 248, 0.35);
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-breathe-toggle:hover {
    background: rgba(56, 189, 248, 0.24);
    border-color: #38BDF8;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.abrigo-gentle-footer {
    max-width: 780px;
    margin: 2.5rem auto 0;
    text-align: center;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(217, 167, 74, 0.25);
}

.gentle-message {
    color: #E2E8F0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    font-family: var(--font-serif);
}

/* ==========================================================================
   ARQUITECTURA DE SLIDERS AUTOMÁTICOS UNIVERSALES (COMPACTOS Y FLUIDOS)
   ========================================================================== */
.auto-slider {
    position: relative;
    width: 100%;
}

.slider-track-overflow {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.4;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.slider-slide.is-active {
    opacity: 1;
}

/* Controles Superiores de Navegación */
.slider-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.slider-tabs-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.slider-tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    color: #0E2442;
    padding: 0.5rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(14, 36, 66, 0.05);
}

.tab-btn:hover {
    background: #F8FAFC;
    border-color: #D9A74A;
    color: #07172B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(217, 167, 74, 0.2);
}

.tab-btn.active {
    background: #D9A74A;
    border-color: #D9A74A;
    color: #07172B;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(217, 167, 74, 0.4);
    transform: translateY(-1px);
}

/* Flechas de Navegación */
.slider-arrow-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-slider-prev,
.btn-slider-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0E2442;
    border: 1.5px solid rgba(217, 167, 74, 0.4);
    color: #D9A74A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-slider-prev:hover,
.btn-slider-next:hover {
    background: #D9A74A;
    border-color: #D9A74A;
    color: #07172B;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(217, 167, 74, 0.4);
}

/* Barra Inferior de Dots */
.slider-dots-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.slider-dots-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slider-dots-group .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots-group .dot:hover {
    background: #D9A74A;
}

.slider-dots-group .dot.active {
    width: 26px;
    border-radius: 9999px;
    background: #D9A74A;
    box-shadow: 0 0 10px rgba(217, 167, 74, 0.5);
}

.slider-counter-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.06em;
}

/* Variantes para secciones oscuras (ej. Libros) */
.section-books .slider-dots-group .dot {
    background: rgba(255, 255, 255, 0.3);
}

.section-books .slider-dots-group .dot.active {
    background: #D9A74A;
}

.section-books .slider-counter-badge {
    color: #CBD5E1;
}

/* ==========================================================================
   TARJETAS COMPACTAS DEL SLIDER DE MODALIDAD
   ========================================================================== */
.modalidad-slider-container {
    max-width: 1160px;
    margin: 0 auto;
}

.modalidad-slide-card {
    background: linear-gradient(145deg, rgba(14, 36, 66, 0.85), rgba(7, 23, 43, 0.95));
    border: 1px solid rgba(217, 167, 74, 0.25);
    border-radius: 20px;
    padding: 2.25rem 2.75rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slide-badge-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.clinical-badge {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(217, 167, 74, 0.12);
    border: 1px solid rgba(217, 167, 74, 0.3);
    border-radius: 9999px;
    color: #E6B75E;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.clinical-badge.badge-blue {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.35);
    color: #7DD3FC;
}

.clinical-badge.badge-orange {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #FBBF24;
}

.clinical-badge.badge-cyan {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.35);
    color: #67E8F9;
}

.clinical-badge.badge-gold {
    background: rgba(217, 167, 74, 0.16);
    border-color: rgba(217, 167, 74, 0.4);
    color: #F8D38D;
}

.slide-indicator-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.05em;
}

.slide-headline {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.slide-intro {
    font-size: 1rem;
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.slide-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.slide-features-list li {
    font-size: 0.92rem;
    color: #E2E8F0;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.slide-features-list li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 2px;
    color: #D9A74A;
    font-size: 0.55rem;
}

.slide-cta-row {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.btn-slide-action {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(217, 167, 74, 0.14);
    border: 1px solid rgba(217, 167, 74, 0.4);
    color: #F8D38D;
    padding: 0.65rem 1.35rem;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-slide-action:hover {
    background: #D9A74A;
    color: #07172B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 167, 74, 0.35);
}

/* Botón Secundario de Diapositiva (Símbolos del Cuidado) */
.btn-slide-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #E2E8F0;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-left: 0.75rem;
}

.btn-slide-secondary:hover {
    background: rgba(217, 167, 74, 0.18);
    border-color: rgba(217, 167, 74, 0.5);
    color: #FCD34D;
    transform: translateY(-2px);
}

/* Stepper Clínico Conectado: Del Caos al Propósito (Slide 1) */
.clinical-journey-stepper {
    display: grid;
    grid-template-columns: 1fr auto 1.1fr auto 1fr;
    align-items: center;
    gap: 0.85rem;
    margin: 1.25rem 0 0.5rem;
}

.journey-step-item {
    background: rgba(6, 20, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: all 0.25s ease;
}

.journey-step-item:hover {
    background: rgba(6, 20, 38, 0.85);
    border-color: rgba(217, 167, 74, 0.3);
    transform: translateY(-2px);
}

.journey-step-item.step-caos { border-left: 3px solid #EF4444; }
.journey-step-item.step-puente { border-left: 3px solid #38BDF8; }
.journey-step-item.step-proposito { border-left: 3px solid #D9A74A; }

.journey-step-item .step-marker {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-caos .step-marker {
    background: rgba(239, 68, 68, 0.18);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.step-puente .step-marker {
    background: rgba(56, 189, 248, 0.18);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.step-proposito .step-marker {
    background: rgba(217, 167, 74, 0.18);
    color: #FCD34D;
    border: 1px solid rgba(217, 167, 74, 0.4);
}

.journey-step-item .step-info {
    flex: 1;
    min-width: 0;
}

.step-info-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.step-info-head .step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.step-info-head .step-quote {
    font-size: 0.78rem;
    font-style: italic;
    font-weight: 500;
}

.step-caos .step-quote { color: #FCA5A5; }
.step-puente .step-quote { color: #7DD3FC; }
.step-proposito .step-quote { color: #FDE047; }

.journey-step-item .step-desc {
    font-size: 0.82rem;
    color: #94A3B8;
    line-height: 1.4;
    margin: 0;
}

.journey-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D9A74A;
    opacity: 0.7;
}

/* ==========================================================================
   GRILLAS RESPONSIVAS PARA MEDIOS Y ANTOLOGÍAS (PRESERVAN PROPORCIÓN VERTICAL)
   ========================================================================== */
.medios-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1100px;
    margin: 2.25rem auto 0;
}

.medios-grid-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(14, 36, 66, 0.09);
    box-shadow: 0 10px 30px rgba(7, 23, 43, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.medios-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(7, 23, 43, 0.12);
}

.medios-img-wrap {
    height: 230px;
    width: 100%;
    overflow: hidden;
    background: #0E2442;
    position: relative;
}

.medios-img-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.medios-grid-card:hover .medios-img-portrait {
    transform: scale(1.04);
}

.medios-body {
    padding: 1.25rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.medios-tag {
    display: inline-block;
    background: rgba(217, 167, 74, 0.15);
    color: #9E7420;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.medios-body h4 {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: #0E2442;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.medios-body p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Grilla Antologías (Fondos oscuros sofisticados) */
.anthology-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1060px;
    margin: 2.25rem auto 0;
}

.anthology-grid-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(217, 167, 74, 0.22);
    border-radius: 20px;
    padding: 1.5rem 1.15rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.anthology-grid-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 167, 74, 0.6);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.anthology-cover-wrap {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    perspective: 800px;
}

.anthology-cover-img {
    max-height: 190px;
    max-width: 145px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(217, 167, 74, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.anthology-grid-card:hover .anthology-cover-img {
    transform: scale(1.05) rotateY(-4deg);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.65), 0 4px 12px rgba(217, 167, 74, 0.35);
}

.anthology-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.anthology-tag {
    display: inline-block;
    background: rgba(217, 167, 74, 0.15);
    color: #FCD34D;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.8rem;
    border-radius: 9999px;
    margin-bottom: 0.85rem;
}

.anthology-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.anthology-compiladoras {
    font-size: 0.78rem;
    font-weight: 600;
    color: #D9A74A;
    margin-bottom: 0.75rem;
}

.anthology-desc {
    font-size: 0.86rem;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE PARA SLIDERS Y ESPACIOS
   ========================================================================== */
@media (max-width: 1024px) {
    .clinical-journey-stepper {
        gap: 0.65rem;
    }

    .modalidad-slide-card {
        padding: 1.65rem 1.4rem;
    }

    .slide-headline {
        font-size: 1.5rem;
    }
}

@media (max-width: 860px) {
    .clinical-journey-stepper {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin: 0.85rem 0 0.25rem;
    }

    .journey-step-arrow {
        display: none;
    }

    .journey-step-item {
        padding: 0.75rem 0.9rem;
        border-radius: 12px;
        gap: 0.75rem;
    }

    .journey-step-item .step-marker {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .step-info-head .step-title {
        font-size: 0.88rem;
    }

    .step-info-head .step-quote {
        font-size: 0.75rem;
    }

    .journey-step-item .step-desc {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .modalidad-slide-card {
        padding: 1.25rem 1rem;
    }

    .slide-headline {
        font-size: 1.3rem;
        margin-bottom: 0.35rem;
    }

    .slide-intro {
        font-size: 0.82rem;
        margin-bottom: 0.5rem;
    }

    .slide-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .btn-slide-secondary {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .medios-cards-grid,
    .anthology-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .section-abrigo {
        padding: 2.75rem 1.25rem;
    }

    .abrigo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .abrigo-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .slider-nav-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .slider-tabs-nav {
        width: 100%;
    }

    .slider-arrow-btns {
        display: none; /* En mobile se navega por swipe táctil y tabs */
    }

    .slide-headline {
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   SECCIÓN 5: CONTACTO Y COORDINACIÓN DE ENCUENTRO
   ========================================================================== */
.section-contacto {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    padding: 5.5rem 0;
    border-top: 1px solid rgba(14, 36, 66, 0.08);
}

.contacto-box-card {
    background: linear-gradient(145deg, #0E2442, #07172B);
    border-radius: 24px;
    padding: 3.75rem 3rem;
    box-shadow: 0 20px 50px rgba(7, 23, 43, 0.25);
    border: 1px solid rgba(217, 167, 74, 0.25);
    max-width: 1000px;
    margin: 0 auto;
}

.contacto-header {
    margin-bottom: 2.25rem;
}

.contacto-header .light-muted {
    color: #CBD5E1;
    max-width: 650px;
    margin: 0.75rem auto 0;
    font-size: 1.02rem;
    line-height: 1.6;
}

.contacto-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.contacto-action-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.contacto-action-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(217, 167, 74, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.c-action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.contacto-action-item h4 {
    font-family: var(--font-serif);
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.contacto-action-item p {
    color: #CBD5E1;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.btn-contacto-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #D9A74A;
    color: #07172B;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(217, 167, 74, 0.35);
}

.btn-contacto-action:hover {
    background: #E6B75E;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(217, 167, 74, 0.5);
}

.btn-contacto-action.btn-wa-action {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-contacto-action.btn-wa-action:hover {
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .section-contacto {
        padding: 3.5rem 0;
    }
    .contacto-box-card {
        padding: 2.25rem 1.25rem;
    }
    .contacto-actions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   COMPRESIÓN MODERNA Y COMPACTA (POPUPS & SLIM STRIPS)
   ========================================================================== */

/* 1. Slim Strip: Espacio de Abrigo */
.calma-slim-strip {
    background: linear-gradient(90deg, #09192E 0%, #0F2747 50%, #09192E 100%);
    border-top: 1px solid rgba(217, 167, 74, 0.25);
    border-bottom: 1px solid rgba(217, 167, 74, 0.25);
    padding: 0.95rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.calma-slim-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.calma-slim-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
    min-width: 280px;
}

.calma-slim-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 167, 74, 0.15);
    border: 1px solid rgba(217, 167, 74, 0.35);
    color: #FCD34D;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.8rem;
    border-radius: 9999px;
    white-space: nowrap;
}

.calma-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38BDF8;
    box-shadow: 0 0 8px #38BDF8;
}

.calma-slim-text {
    color: #E2E8F0;
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.btn-calma-strip-action {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, rgba(217, 167, 74, 0.18) 0%, rgba(217, 167, 74, 0.08) 100%);
    border: 1px solid rgba(217, 167, 74, 0.45);
    color: #FCD34D;
    padding: 0.6rem 1.35rem;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(217, 167, 74, 0.12);
}

.btn-calma-strip-action:hover {
    background: linear-gradient(135deg, rgba(217, 167, 74, 0.28) 0%, rgba(217, 167, 74, 0.16) 100%);
    border-color: rgba(217, 167, 74, 0.7);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 167, 74, 0.25);
}

@media (max-width: 768px) {
    .calma-slim-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .calma-slim-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.45rem;
        min-width: unset;
        width: 100%;
    }

    .calma-slim-text {
        text-align: center;
        font-size: 0.84rem;
    }

    .btn-calma-strip-action {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
    }
}

/* 2. Botón Testimonio Resiliencia */
.btn-resiliencia-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(217, 167, 74, 0.15);
    border: 1px solid rgba(217, 167, 74, 0.4);
    color: #FCD34D;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: all 0.25s ease;
}

.btn-resiliencia-pill:hover {
    background: #D9A74A;
    color: #07172B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(217, 167, 74, 0.3);
}

/* 3. Concientización Compact Strip */
.concientizacion-compact-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    max-width: 960px;
    margin: 2.75rem auto 0;
}

.concientizacion-pills-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .concientizacion-pills-row {
        grid-template-columns: 1fr;
    }
}

.concientizacion-pill-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(14, 36, 66, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
}

.concientizacion-pill-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 167, 74, 0.5);
    background: rgba(14, 36, 66, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.concientizacion-pill-btn.pill-yellow:hover {
    border-color: #FCD34D;
}

.concientizacion-pill-btn.pill-orange:hover {
    border-color: #FB923C;
}

.c-pill-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.c-pill-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.c-pill-sub {
    font-size: 0.78rem;
    color: #94A3B8;
}

.c-pill-arrow {
    font-size: 0.76rem;
    font-weight: 600;
    color: #D9A74A;
    background: rgba(217, 167, 74, 0.12);
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    white-space: nowrap;
}

/* 4. Lapiceras Compact Strip */
.lapiceras-compact-strip {
    background: linear-gradient(135deg, #FDFEFA 0%, #F4F7F2 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    color: #07172B;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(34, 197, 94, 0.25);
    max-width: 1040px;
    margin: 3.25rem auto 0;
}

.lapiceras-compact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

@media (max-width: 860px) {
    .lapiceras-compact-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .lapiceras-compact-actions {
        justify-content: center;
    }
}

.lapiceras-compact-content {
    flex: 1;
}

.lapiceras-compact-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #07172B;
    line-height: 1.25;
    margin: 0.4rem 0 0.5rem;
}

.lapiceras-compact-desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.lapiceras-compact-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lapiceras-modal-open {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #15803D;
    border: 1px solid #22C55E;
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(21, 128, 61, 0.3);
}

.btn-lapiceras-modal-open:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 128, 61, 0.45);
}

.btn-lapiceras-quick-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #15803D;
    padding: 0.55rem 1.15rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-lapiceras-quick-wa:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
    transform: translateY(-2px);
}

.lapiceras-compact-thumb {
    width: 170px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lapiceras-compact-thumb:hover {
    transform: scale(1.05);
}

.lapiceras-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lapiceras-thumb-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    background: rgba(7, 23, 43, 0.85);
    color: #FCD34D;
    font-size: 0.65rem;
    font-weight: 700;
    text-align: center;
    padding: 0.25rem 0.4rem;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

/* 5. Modales Específicos y Cabeceras Centradas */
.modal-header-centered {
    position: relative;
    padding: 2rem 1.5rem 1.25rem;
    background: #071526;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.modal-header-centered .modal-close {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-header-centered .modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.modal-header-inner .booking-header-badge {
    margin-bottom: 0.65rem;
}

.custom-modal-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.custom-modal-subtitle {
    font-size: 0.88rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
}

@media (max-width: 640px) {
    .modal-header-centered {
        padding: 1.5rem 1rem 1rem;
    }

    .modal-header-centered .modal-close {
        top: 0.75rem;
        right: 0.85rem;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }

    .custom-modal-title {
        font-size: 1.35rem;
    }

    .custom-modal-subtitle {
        font-size: 0.82rem;
    }
}

.calma-modal-card {
    max-width: 820px;
    width: calc(100% - 2rem);
    overflow-x: hidden;
}

.abrigo-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 720px) {
    .abrigo-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.lapiceras-modal-card {
    max-width: 780px;
}

.lapiceras-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.25rem 0;
}

@media (max-width: 640px) {
    .lapiceras-modal-gallery {
        grid-template-columns: 1fr;
    }
}

.modal-gallery-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.modal-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-gallery-item:hover img {
    transform: scale(1.05);
}

.modal-gallery-item span {
    padding: 0.5rem;
    font-size: 0.76rem;
    font-weight: 600;
    color: #CBD5E1;
}

.resiliencia-modal-card {
    max-width: 660px;
}

.resiliencia-modal-hero {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

.resiliencia-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.concientizacion-modal-card {
    max-width: 720px;
}

.concientizacion-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 680px) {
    .concientizacion-modal-grid {
        grid-template-columns: 1fr;
    }
}

.concientizacion-modal-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.c-modal-img-wrap {
    height: 140px;
    overflow: hidden;
}

.c-modal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-modal-text {
    padding: 1rem 1.15rem;
    flex: 1;
}

/* ==========================================================================
   SISTEMA DE PESTAÑAS SEGMENTADAS COMPACTAS (SOBRE MÍ & OBRAS)
   ========================================================================== */
.compact-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.compact-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    user-select: none;
}

.compact-tab-btn .tab-custom-icon,
.tab-custom-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.compact-tab-btn:hover .tab-custom-icon {
    transform: scale(1.08);
}

.section-books .compact-tab-btn .tab-custom-icon {
    color: var(--gold-logo);
}

.section-books .compact-tab-btn.active .tab-custom-icon {
    color: #07172B;
}

.tab-btn .tab-custom-svg {
    vertical-align: -2px;
    margin-right: 0.35rem;
}

/* Variante para Fondo Claro (Sobre Mí) */
.section-sobre-mi .compact-tab-btn {
    background: #FFFFFF;
    border: 1.5px solid #CBD5E1;
    color: #334155;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.section-sobre-mi .compact-tab-btn:hover {
    border-color: #D9A74A;
    color: #07172B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 167, 74, 0.2);
}

.section-sobre-mi .compact-tab-btn.active {
    background: #07172B;
    border-color: #D9A74A;
    color: #FCD34D;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(7, 23, 43, 0.25);
}

/* Variante para Fondo Oscuro (Obras) */
.section-books .compact-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    color: #CBD5E1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.section-books .compact-tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #D9A74A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(217, 167, 74, 0.25);
}

.section-books .compact-tab-btn.active {
    background: linear-gradient(135deg, #D9A74A 0%, #B8860B 100%);
    border-color: #FCD34D;
    color: #07172B;
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 167, 74, 0.4);
}

/* Contenedores y Paneles */
.sobre-panels-container,
.obras-panels-container {
    position: relative;
    width: 100%;
}

.sobre-panel,
.obras-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sobre-panel.is-active,
.obras-panel.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInCompactTab 0.35s ease forwards;
}

@keyframes fadeInCompactTab {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Layout específico del Panel 0 en Sobre Mí (Bio + 3 Pilares) */
.sobre-panel-bio-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.25rem;
    align-items: center;
}

.sobre-mi-features-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.sobre-mi-features-vertical .interactive-feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sobre-mi-features-vertical .interactive-feature-card:hover {
    transform: translateY(-2px);
    border-color: #D9A74A;
    box-shadow: 0 6px 18px rgba(217, 167, 74, 0.15);
}

.sobre-mi-features-vertical .feature-text span:first-child {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #07172B;
    margin-bottom: 0.2rem;
}

.sobre-mi-features-vertical .feature-text span:last-child {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.45;
}

/* Slide 6 de Modalidad: Lazos de Concientización */
.lazos-slide-card {
    background: linear-gradient(135deg, rgba(7, 23, 43, 0.95) 0%, rgba(14, 36, 66, 0.95) 100%);
    border: 1.5px solid rgba(217, 167, 74, 0.35);
}

.lazos-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.25rem 0 1.5rem 0;
}

.lazo-slide-mini {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.lazo-slide-mini:hover {
    border-color: rgba(217, 167, 74, 0.4);
    transform: translateY(-2px);
}

.lazo-slide-mini h4 {
    color: #FFFFFF;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.lazo-slide-mini p {
    color: #94A3B8;
    font-size: 0.85rem;
    line-height: 1.55;
}

/* Responsive para Tabs y Paneles */
@media (max-width: 820px) {
    .compact-tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .compact-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .sobre-panel-bio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lazos-slide-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* ==========================================================================
   SECCIÓN 5: OPINIONES Y TESTIMONIOS VERIFICADOS EN GOOGLE (60 RESEÑAS)
   ========================================================================== */

.section-opiniones {
    scroll-margin-top: 85px;
    position: relative;
    padding: 100px 0 90px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 50%, #EFF4F8 100%);
    overflow: hidden;
}

.opiniones-header {
    max-width: 780px;
    margin: 0 auto 36px auto;
}

/* Tarjeta Destacada de Google Maps (Trust Hero) */
.google-trust-hero-card {
    background: #FFFFFF;
    border: 1px solid rgba(28, 61, 106, 0.12);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 30px rgba(7, 23, 43, 0.05);
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.google-trust-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.google-trust-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 24px;
    border-right: 1px solid rgba(28, 61, 106, 0.1);
}

.google-trust-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 0.2px;
}

.google-trust-score-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-trust-big-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1;
    font-family: var(--font-sans);
}

.google-trust-stars-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.google-trust-stars {
    display: flex;
    gap: 3px;
}

.google-trust-total-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-verify-gmaps {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--btn-blue-primary);
    color: #FFFFFF;
    padding: 13px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(28, 61, 106, 0.2);
    white-space: nowrap;
}

.btn-verify-gmaps:hover {
    background: var(--btn-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 61, 106, 0.3);
    color: #FFFFFF;
}

/* Toolbar: Filtros y Navegación del Slider */
.reviews-slider-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.reviews-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.reviews-filter-btn {
    background: #FFFFFF;
    border: 1px solid rgba(28, 61, 106, 0.12);
    border-radius: var(--radius-pill);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
}

.reviews-filter-btn:hover {
    border-color: var(--navy-dark);
    color: var(--navy-dark);
}

.reviews-filter-btn.active {
    background: var(--navy-dark);
    color: #FFFFFF;
    border-color: var(--navy-dark);
    box-shadow: 0 4px 12px rgba(7, 23, 43, 0.15);
}

.reviews-filter-count {
    background: rgba(0, 0, 0, 0.06);
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 700;
}

.reviews-filter-btn.active .reviews-filter-count {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
}

.reviews-slider-nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.reviews-counter-display {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    font-family: var(--font-sans);
    min-width: 55px;
    text-align: right;
}

.reviews-counter-sep {
    color: #94A3B8;
    margin: 0 2px;
    font-weight: 400;
}

.reviews-arrows-wrap {
    display: flex;
    gap: 8px;
}

.reviews-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(28, 61, 106, 0.15);
    background: #FFFFFF;
    color: var(--navy-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(7, 23, 43, 0.05);
}

.reviews-arrow-btn:hover {
    background: var(--navy-dark);
    color: #FFFFFF;
    border-color: var(--navy-dark);
    transform: scale(1.06);
}

.reviews-arrow-btn:active {
    transform: scale(0.96);
}

/* Indicación Móvil */
.mobile-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Viewport y Pista Deslizable */
.reviews-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 6px 2px 24px 2px;
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
}

.reviews-slider-track::-webkit-scrollbar {
    display: none;
}

/* Tarjeta Individual de Reseña */
.review-slide-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: #FFFFFF;
    border: 1px solid rgba(28, 61, 106, 0.08);
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 6px 20px rgba(7, 23, 43, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    user-select: none;
}

.review-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(7, 23, 43, 0.08);
    border-color: rgba(217, 167, 74, 0.35);
}

.review-slide-card.is-hidden {
    display: none !important;
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    position: relative;
}

.review-avatar-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #E2E8F0;
    flex-shrink: 0;
    border: 2px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(7, 23, 43, 0.1);
}

.review-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #07172B 0%, #1C3D6A 100%);
    color: var(--gold-logo);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
}

.review-header-meta {
    flex: 1;
    min-width: 0;
}

.review-author-name {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.25;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-sans);
}

.review-author-sub {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card-g-icon {
    flex-shrink: 0;
    opacity: 0.85;
    margin-left: 4px;
}

.review-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-stars-list {
    display: flex;
    gap: 3px;
    align-items: center;
}

.review-time-tag {
    font-size: 0.78rem;
    color: #94A3B8;
    font-weight: 500;
}

.review-body-wrap {
    flex: 1;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.93rem;
    line-height: 1.62;
    color: #334155;
    margin: 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text-empty {
    font-style: normal;
    color: #64748B;
    font-size: 0.87rem;
    line-height: 1.55;
    background: #F8FAFC;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(28, 61, 106, 0.12);
}

.review-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(28, 61, 106, 0.06);
}

.review-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #166534;
    background: #DCFCE7;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.review-card-index {
    font-size: 0.76rem;
    color: #94A3B8;
    font-weight: 600;
}

/* Barra de Progreso Inferior */
.reviews-progress-container {
    height: 4px;
    background: rgba(28, 61, 106, 0.08);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
    width: 100%;
}

.reviews-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-logo), var(--btn-blue-primary));
    width: 10%;
    border-radius: 2px;
    transition: width 0.15s ease-out;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .review-slide-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .section-opiniones {
        padding: 70px 0 60px 0;
    }

    .google-trust-hero-card {
        padding: 20px 22px;
    }

    .google-trust-logo-box {
        border-right: none;
        padding-right: 0;
        width: 100%;
        margin-bottom: -10px;
    }

    .google-trust-left {
        gap: 16px;
    }

    .google-trust-big-score {
        font-size: 2.5rem;
    }

    .btn-verify-gmaps {
        width: 100%;
        justify-content: center;
    }

    .reviews-slider-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .reviews-filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .reviews-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .reviews-filter-btn {
        flex-shrink: 0;
    }

    .reviews-slider-nav-controls {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
    }

    .mobile-swipe-hint {
        display: flex;
    }

    .review-slide-card {
        flex: 0 0 86%;
        min-height: 270px;
        padding: 20px;
    }

    .review-text {
        -webkit-line-clamp: 5;
    }
}
