@import url('https://fonts.googleapis.com/css2?family=Enriqueta:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────────── */
:root {
    --accent:      #e0685f;        /* sunset orange-coral */
    --accent-warm: #f2947d;        /* lighter warm glow */
    --bordo:       #7B1D3A;        /* deep burgundy */
    --bordo-light: #A63256;        /* mid burgundy/rose */
    --blue-deep:   #0C2340;        /* deep night sky blue */
    --blue-mid:    #1A4A6E;        /* horizon blue */
    --blue-teal:   #1E7A8A;        /* teal from the water */
    --cream:       #F0EAE0;
    --text-light:  #E8E2D8;
    --dark:        #080F18;        /* near-black with blue tint */
    --dark-2:      #0E1A28;        /* section alt dark blue */
    --font-title:  "Enriqueta", serif;
    --font-body:   "Source Sans 3", sans-serif;
    --nav-h:       72px;
    --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    background: transparent;
    transition: background var(--transition), backdrop-filter var(--transition);
}

@media (min-width: 768px) {
    .navbar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
        padding: 0 3rem;
    }
}

.navbar.scrolled {
    background: rgba(8, 15, 24, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(224, 122, 95, 0.18);
}

/* ─── NAV CENTER ─────────────────────────────────────────────────── */
.nav-center {
    display: none;
}

.nav-center ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-center {
        display: flex;
        justify-content: center;
    }
}

/* ─── NAV SOCIAL ─────────────────────────────────────────────────── */
.nav-social {
    display: none;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .nav-social {
        display: flex;
    }
}

.social-link {
    color: var(--cream);
    opacity: 0.7;
    display: flex;
    align-items: center;
    transition: opacity 0.25s, color 0.25s, transform 0.25s;
}

.social-link:hover {
    opacity: 1;
    color: var(--accent-warm);
    transform: translateY(-2px);
}

.navbar.scrolled {
    background: rgba(8, 15, 24, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(224, 122, 95, 0.18);
}

/* Desktop nav lists — hidden on mobile */
.nav-left,
.nav-right {
    display: none;
}

.nav-left ul,
.nav-right ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--cream);
    opacity: 0.85;
    transition: opacity 0.25s, color 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--accent-warm);
}

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

/* ─── LOGO ───────────────────────────────────────────────────────── */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 48px;
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    filter: brightness(1.15) drop-shadow(0 0 10px rgba(224, 122, 95, 0.5));
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo-img {
        height: 56px;
    }
}

/* ─── HAMBURGER (celular) ─────────────────────────────────────────── */
.menu-toggle-input {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

/* Animación de apertura menu hamburger */
.menu-toggle-input:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle-input:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}
.menu-toggle-input:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 24, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 90;
}

.menu-toggle-input:checked ~ .mobile-nav {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-nav-link {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.9;
    transition: color 0.25s, opacity 0.25s;
}

.mobile-nav-link:hover {
    color: var(--accent-warm);
    opacity: 1;
}


/* ─── HEADER ─────────────────────────────────────────────────────── */
.header {
    position: relative;
    width: 100%;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

/* Imagen fondo de portada */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('jta.portada1.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

/* Transparencia y efecto de imagen*/
.header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* bottom vignette — dark blue fade */
        linear-gradient(to top, rgba(8, 15, 24, 0.88) 0%, transparent 45%),
        /* top vignette */
        linear-gradient(to bottom, rgba(8, 15, 24, 0.55) 0%, transparent 35%),
        /* center burgundy glow behind text */
        radial-gradient(ellipse at 50% 55%, rgba(123, 29, 58, 0.28) 0%, transparent 60%),
        /* overall blue-tinted wash to keep it cohesive */
        linear-gradient(160deg, rgba(12, 35, 64, 0.45) 0%, rgba(14, 40, 55, 0.3) 50%, rgba(8,15,24,0.5) 100%);
}

/* ─── HEADER CONTENT ─────────────────────────────────────────────── */
.header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.header-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--accent-warm);
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.header-title {
    font-family: var(--font-title);
    font-size: clamp(5rem, 22vw, 10rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--cream);
    line-height: 1;
    text-shadow:
        0 2px 40px rgba(0,0,0,0.7);
}

/* Accent divider — sunset coral */
.header-content::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--bordo-light), transparent);
    margin: 0.4rem 0;
}

.header-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--text-light);
    opacity: 0.85;
    min-height: 2em;
    display: flex;
    align-items: center;
    gap: 0;
}

.cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 300;
    animation: blink 0.75s step-end infinite;
    margin-left: 1px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ─── SCROLL INDICATOR ───────────────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── REVEAL ANIMATIONS (hero) ───────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.9s var(--transition) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.8s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── SCROLL REVEAL (sections) ───────────────────────────────────── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.delay-1 { transition-delay: 0.15s; }
.scroll-reveal.delay-2 { transition-delay: 0.3s; }

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SECTIONS ───────────────────────────────────────────────────── */
.section {
    padding: 6rem 1.5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--dark);
}

.section-alt {
    background: var(--dark-2);
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--bordo-light));
    transition: width 0.6s ease;
}

.section-title.is-visible::after {
    width: 80px;
}

.section-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(232, 226, 216, 0.68);
    max-width: 620px;
    letter-spacing: 0.01em;
}

body {
    margin: 0;
    padding: 0;
}

/* ─── SCROLLER AREAS ───────────────────────────────────── */
.gallery-scroller{
    min-height: 400vh;
}

/* ─── AREAS SECTION ───────────────────────────────────── */
.areas{
    display: flex;
    height: 100vh;
    justify-content: space-evenly;
    align-items: center;
}

.areas_cards{
    position:relative;
    overflow: hidden;
    width: 450px;
    height: 80vh;
}

.cards_card{
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card_title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.card_title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin-top: 12px;
    background: linear-gradient( 90deg, var(--accent), var(--bordo-light));
}
.card_description {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(232, 226, 216, 0.75);
}

.areas_images {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    height: 500px;
    box-shadow: 15px -15px 0px 0px rgba(255, 255, 255, 0.55);
}

.images_img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

#image1 {
    background-image: url(melquisedec1.jpg);
    z-index: 3; 
}

#image2 {
    background-image: url(hora.shema.3.jpg);
    z-index: 2;
}

#image3 {                             
    background-image: url(hora.shema.1.jpg);
    z-index: 1; 
}

/* ─── SLIDER ───────────────────────────────────── */
body {
    margin: 0;
    padding: 0;
    background-color: #050d14; 
}

#novedades {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    

    padding: 40px 50px !important; 
    box-sizing: border-box;
    background-color: #050d14;
    
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#novedades .container,
#novedades .swiper {
    width: 100% !important;
    max-width: 1200px !important; 
    height: auto !important;       
    margin: 0 auto !important;
    padding: 0 !important;
    background-color: #0b1c2c; 
    border-radius: 16px;
    overflow: hidden;
}

/*  ADAPTACIÓN DE IMÁGENES  SLIDER */
#novedades .swiper-slide picture {
    display: block;
    width: 100%;
    height: auto;
}

#novedades .swiper-slide img {
    width: 100% !important;
    height: auto !important; 
    display: block;
    object-fit: contain;     
}

/*  CONTROLES VISUALES (CONTROLES Y FLECHAS) SLIDER */
/* Flechas de navegación (Izquierda y Derecha) */
#novedades .swiper-button-next,
#novedades .swiper-button-prev {
    color: #ffffff; 
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10;
}

#novedades .swiper-button-next:hover,
#novedades .swiper-button-prev:hover {
    transform: scale(1.2); 
    color: #cbd5e1; 
}

/* Puntos de paginación inferiores */
#novedades .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.4;
    transition: all 0.3s ease;
}

#novedades .swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 24px !important; 
    border-radius: 4px !important;
    opacity: 1 !important;
}

/* Container del enlace para que ocupe todo el slide y permita posicionamiento */
#novedades .youtube-slide {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; 
    text-decoration: none;
}

/* Diseño de la etiqueta flotante "Nuevo video" */
#novedades .video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff0000; 
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 5; /* Asegura que quede por encima de la imagen */
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* Efecto visual cuando el usuario pasa el mouse por encima del slide */
#novedades .youtube-slide:hover .video-badge {
    transform: scale(1.05);
    background-color: #cc0000; /* Un rojo un poco más oscuro al hacer hover */
}

/* Efecto de oscurecimiento leve en la imagen al pasar el mouse */
#novedades .youtube-slide:hover img {
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}
#novedades .youtube-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
}
/*.swiper {
  width: 100%;
  height: 300px;
}*/

/* ─── CONFERENCIA ───────────────────────────────────────── */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 100vh;
    padding: 60px 80px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,5,30,0.88) 0%, rgba(10,5,30,0.55) 50%, rgba(10,5,30,0.72) 100%);
    z-index: 0;
}

.hero_left, .hero_right { position: relative; z-index: 1; }

.hero_left { flex: 1; max-width: 480px; }

.badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

.hero_title { 
    font-family: var(--font-title);   /* ← Enriqueta */
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
 }
.highlight { color: #5081bd; }

.hero_subtitle {   font-family: var(--font-body);    /* ← Source Sans 3 */
    font-size: 1.05em;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 36px;
}

.dates { display: flex; gap: 14px; margin-bottom: 36px; }

.date_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.05);
}

.date_day_name { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.date_number { font-size: 2.2em; font-weight: 700; color: #fff; }

.features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.features li { font-size: 14px; color: rgba(255,255,255,0.65); }

.hero_right { flex: 1; max-width: 520px; }

.form_card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(12px);
}

.form_title { font-family: var(--font-title);   /* ← Enriqueta */
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.form_subtitle,
.form_footer,
.features li,
.badge,
.date_day_name,
.form_group label,
.form_group input,
.form_group select,
.checkbox_label,
.btn_submit,
.mapa-card-title,
.mapa-card p,
.mapa-link {
    font-family: var(--font-body);    /* ← Source Sans 3 */
}

.form_row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.form_group { display: flex; flex-direction: column; gap: 6px; }
.form_group.full { margin-bottom: 14px; }

.form_group label { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.5); font-weight: 500; }

.form_group input,
.form_group select {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 14px;
    color: #1a1a2e;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.form_group input::placeholder { color: #999; }
.form_group select option { background: #fff; color: #1a1a2e; }
.form_group input:focus, .form_group select:focus { border-color: #a855f7; }

.checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }

.checkbox_label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    transition: border 0.2s;
}

.checkbox_label:hover { border-color: rgba(168,85,247,0.5); }
.checkbox_label.full_check { grid-column: 1 / -1; }
.checkbox_label input[type="checkbox"] { width: 16px; height: 16px; accent-color: #a855f7; }

.btn_submit {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    background: linear-gradient( 90deg,#0C2340, #1A4A6E, #1E7A8A );
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn_submit:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.btn_submit:active {
    transform: scale(0.98);
}

.form_footer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 12px; }

.mensaje { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; text-align: center; }
.mensaje.exito { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.mensaje.error  { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.oculto { display: none; }

#label-asesoramiento {
    grid-column: 1 / -1;
    border: 1px solid rgba(168, 85, 247, 0.3);   
    background: rgba(168, 85, 247, 0.06);         
    transition: background 0.2s, border 0.2s;
}

#label-asesoramiento:hover {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.6);
}

#check-asesoramiento:checked + span,
#label-asesoramiento:has(input:checked) {
    background: rgba(168, 85, 247, 0.18);
    border-color: #a855f7;
    color: #fff;
}

/* ─── MAPA ──────────────────────────────────────────────── */
.seccion-mapa { padding: 60px 80px; background: #0d0d1a; }

.mapa-title{
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--cream);
    text-align: center;
    margin-bottom: .5rem;
}

.mapa-subtitle{
    font-family: var(--font-body);
    text-align: center;
    color: rgba(232,226,216,.7);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mapa-wrap {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

#map { width: 100%; height: 100%; }

.mapa-cards-container {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mapa-card {
    position: relative;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);

    border-radius: 12px;
    padding: 16px 20px;
    min-width: 240px;

    border: 1px solid rgba(12,35,64,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.mapa-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mapa-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.mapa-card-title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 400; color: #0C2340;} 
.mapa-card p {font-family: var(--font-body); font-size: 0.95rem; color: #666; margin: 0 0 3px; }
.mapa-link {     font-family: var(--font-body); display: inline-block; margin-top: 10px; font-size: 0.95rem; color: #1A4A6E; text-decoration: none; font-weight: 600; transition: all .2s ease; }

/* ─── RESPONSIVE CONFERENCIA + MAPA ─────────────────────── */
@media (max-width: 900px) {
    .hero { flex-direction: column; padding: 40px 24px; }
    .hero_left, .hero_right { max-width: 100%; }
    .form_row { grid-template-columns: 1fr; }
    .checkboxes { grid-template-columns: 1fr; }
    .checkbox_label.full_check { grid-column: 1; }
    .seccion-mapa { padding: 40px 20px; }
}

.footer {
    background: #081626;
    padding: 35px 20px;
    text-align: center;
}

.footer-divider {
    width: 80px;
    height: 2px;
    margin: 0 auto 20px;
    background: linear-gradient(
        90deg,
        #0C2340,
        #1A4A6E
    );
}

.footer-text {
    font-family: var(--font-body);
    color: rgba(232,226,216,.7);
    font-size: 0.9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
 
/* ─── DESKTOP (≥ 768px) ──────────────────────────────────────────── */
@media (min-width: 768px) {
    /* Show desktop nav, hide hamburger */
    .nav-left,
    .nav-right {
        display: flex;
    }

    .hamburger,
    .mobile-nav {
        display: none !important;
    }

    .header-eyebrow {
        font-size: 0.7rem;
    }

    .section {
        padding: 8rem 3rem;
    }
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .nav-left ul,
    .nav-right ul {
        gap: 2.8rem;
    }
}
/* ─── MOBILE (hasta 768px) ─────────────────────────── */
@media (max-width: 768px) {

    .cards_card{
        position: relative;
        opacity: 1;
        transform: none;
        margin-bottom: 30px;
    }

    .areas_cards{
        min-height: auto;
    }


    .cards_card {
        padding: 16px;
    }

    .card_title {
        font-size: 2em;                  
    }

    .card_description {
        font-size: 1em;
    }

    .areas_images {
        width: 100%;
        max-width: 100%;              
        height: 250px;                  
        box-shadow: none;                
    }
}

/* ─── TABLET (768px - 1024px) ──────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {

    .areas {
        gap: 20px;
        padding: 20px;
    }

    .areas_cards {
        width: 350px;
    }

    .card_title {
        font-size: 2.2em;
    }

    .areas_images {
        max-width: 350px;
        height: 400px;
    }
}

/* ─── MELQUISEDEC AREAS ─────────────────────────── */

.areas-v2 {
    position: relative;
    height: 700vh;
    background: #0C2340;
}

.areas-v2-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

.areas-v2-content {
    position: relative;
    width: 50%;
    height: 100%;
    padding: 80px 8vw;
    display: flex;
    align-items: center;
    background: #E1E2E6;
}

.area-v2 {
    position: absolute;
    width: calc(100% - 16vw);
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.area-v2.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.area-v2 h2 {
    margin: 0 0 28px 0;
    font-family: var(--font-title);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    color: #323337;
    text-transform: uppercase;
}

.area-v2 h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin-top: 14px;
    background: linear-gradient(
        90deg,
        var(--accent),
        var(--bordo-light)
    );
}

.area-v2 p {
    max-width: 600px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: #414247;
}

.area-v2-number {
    display: none !important;
}

.areas-v2-images {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.area-v2-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 0.9s ease,
        transform 1.2s ease;
}

.area-v2-image.active {
    opacity: 1;
    transform: scale(1);
}

.area-v2-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(12, 35, 64, 0.12),
        rgba(12, 35, 64, 0.03)
    );
}

/* ─── MELQUISEDEC — MARCA DE AGUA ─────────────────────────── */
/* Vertical, pegada al borde izquierdo, para no tapar el texto */
.areas-v2-watermark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5.5vw;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    line-height: 1;
    white-space: nowrap;
    color: rgba(12, 35, 64, 0.10);
    font-size: clamp(1rem, 1.35vw, 1.6rem);
    pointer-events: none;
    user-select: none;
}

/* ─── RESPONSIVE MELQUISEDEC ─────────────────────────── */

@media (max-width: 991px) and (min-width: 769px) {

    .areas-v2-content {
        padding: 60px 5vw;
    }

    .area-v2 {
        width: calc(100% - 10vw);
    }

    .area-v2 h2 {
        font-size: clamp(38px, 5vw, 55px);
    }

    .area-v2 p {
        font-size: 15px;
        line-height: 1.7;
    }

    .areas-v2-watermark {
        width: 3.6vw;
        font-size: clamp(0.85rem, 1.5vw, 1.2rem);
        letter-spacing: 0.14em;
    }
}

@media (max-width: 768px) {

    .areas-v2 {
        height: 700vh;
    }

    .areas-v2-sticky {
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    /* Imagen arriba */
    .areas-v2-images {
        order: 1;
        width: 100%;
        height: 50vh;
    }

    .area-v2-image {
        background-position: center;
        background-size: cover;
    }

    /* Texto abajo */
    .areas-v2-content {
        order: 2;
        width: 100%;
        height: 50vh;
        padding: 40px 30px;
        display: flex;
        align-items: center;
    }

    .area-v2 {
        width: calc(100% - 60px);
    }

    .area-v2 h2 {
        font-size: clamp(30px, 9vw, 45px);
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .area-v2 h2::after {
        width: 60px;
        height: 2px;
        margin-top: 12px;
    }

    .area-v2 p {
        font-size: 14px;
        line-height: 1.65;
    }

    .areas-v2-watermark {
        width: 22px;
        font-size: clamp(0.72rem, 3vw, 0.95rem);
        letter-spacing: 0.1em;
    }
}

@media (max-width: 480px) {

    .areas-v2-images {
        height: 45vh;
    }

    .areas-v2-watermark {
        width: 16px;
        font-size: clamp(0.6rem, 3.2vw, 0.8rem);
        letter-spacing: 0.08em;
    }

    .areas-v2-content {
        height: 55vh;
        padding: 30px 22px;
    }

    .area-v2 {
        width: calc(100% - 44px);
    }

    .area-v2 h2 {
        font-size: 30px;
        margin-bottom: 17px;
    }

    .area-v2 h2::after {
        width: 55px;
        margin-top: 10px;
    }

    .area-v2 p {
        font-size: 13px;
        line-height: 1.6;
    }
}

.areas-v2-sticky::after {
    display: none !important;
}

/* ─── HORARIOS ─────────────────────────── */
.horarios-section {
    width: 100%;
    background: #F1F2F0;
    color: #0C2340;
    padding: 100px 7vw;
    overflow: hidden;
}

.horarios-inner {
    width: 100%;
    max-width: 1250px;
    min-height: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.horarios-content {
    padding: 20px 0;
}

.horarios-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #1A4A6E;
}

.horarios-title {
    max-width: 540px;
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0.01em;
    color: #111A25;
}

.horarios-line {
    width: 72px;
    height: 2px;
    margin: 30px 0 34px;
    background: linear-gradient(90deg, #0C2340, #1E7A8A);
}

.horarios-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 470px;
}

.horario-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(12, 35, 64, 0.16);
}

.horario-item:first-child {
    border-top: 1px solid rgba(12, 35, 64, 0.16);
}

.horario-dia {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #314355;
}

.horario-hora {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    font-weight: 600;
    color: #0C2340;
    white-space: nowrap;
}

.horarios-images {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 10px 20px 0;
}

.horario-image {
    position: relative;
    width: calc(50% - 12px);
    height: 470px;
    overflow: hidden;
    background: #D9DDE0;
    box-shadow: 0 18px 45px rgba(12, 35, 64, 0.16);
}

.horario-image-1 {
    transform: translateY(-28px);
}

.horario-image-2 {
    transform: translateY(28px);
}

.horario-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.55);
    z-index: 2;
    pointer-events: none;
}

.horario-image {
    background-color: #D9DDE0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.35s ease;
}

.horario-image-1,
.horario-image-2 {
    background-color: #D9DDE0;
    background-image:
        linear-gradient(180deg, #C9EAF8 0%, #EAF6FA 58%, #B9D875 58%, #88A800 100%);
}

.horario-image:hover {
    transform: translateY(-28px) scale(1.01);
}

.horario-image-2:hover {
    transform: translateY(28px) scale(1.01);
}

/* ─── HORARIOS — SCROLL REVEAL ───────────────────────────────────── */
/* (antes estas clases las agregaba el JS pero no existía el CSS,
   por eso el efecto no se veía) */

.horarios-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.horarios-reveal-image {
    opacity: 0;
    transition: opacity 1s ease;
}

.horarios-reveal-1 { transition-delay: 0.05s; }
.horarios-reveal-2 { transition-delay: 0.15s; }
.horarios-reveal-3 { transition-delay: 0.25s; }
.horarios-reveal-4 { transition-delay: 0.35s; }
.horarios-reveal-5 { transition-delay: 0.45s; }
.horarios-reveal-6 { transition-delay: 0.55s; }

.horarios-image-reveal-1 { transition-delay: 0.15s; }
.horarios-image-reveal-2 { transition-delay: 0.35s; }

.horarios-section.is-visible .horarios-reveal {
    opacity: 1;
    transform: translateY(0);
}

.horarios-section.is-visible .horarios-reveal-image {
    opacity: 1;
}

@media (max-width: 900px) {
    .horarios-section {
        padding: 80px 30px;
    }

    .horarios-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .horarios-content {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }

    .horarios-images {
        min-height: 430px;
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .horario-image {
        height: 390px;
    }
}

@media (max-width: 600px) {
    .horarios-section {
        padding: 65px 22px;
    }

    .horarios-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .horarios-line {
        margin: 24px 0 25px;
    }

    .horario-item {
        padding: 15px 0;
    }

    .horario-dia {
        font-size: 0.85rem;
        letter-spacing: 0.09em;
    }

    .horario-hora {
        font-size: 1.5rem;
    }

    .horarios-images {
        min-height: 300px;
        gap: 12px;
        padding: 0;
    }

    .horario-image {
        width: calc(50% - 6px);
        height: 310px;
    }

    .horario-image-1 {
        transform: translateY(-16px);
    }

    .horario-image-2 {
        transform: translateY(16px);
    }
}

@media (max-width: 420px) {
    .horarios-images {
        min-height: 240px;
    }

    .horario-image {
        height: 245px;
    }

    .horario-image-1 {
        transform: translateY(-10px);
    }

    .horario-image-2 {
        transform: translateY(10px);
    }
}

/* ─── MENSAJE CONFIRMACION CONFERENCIA ─────────────────────────── */

.modal-confirmacion {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-confirmacion.oculto {
    display: none !important;
}

.modal-confirmacion-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 32, 0.78);
    backdrop-filter: blur(5px);
}

.modal-confirmacion-card {
    position: relative;
    z-index: 2;
    width: min(600px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px;
    border-radius: 18px;
    background: #fff;
    color: #323337;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
    text-align: center;
    animation: modalEntrada .3s ease;
}

.modal-cerrar {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #555;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.modal-badge {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 30px;
    background: #0C2340;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.modal-confirmacion-card h2 {
    margin: 14px 0 24px;
    font-family: var(--font-title);
    font-size: clamp(25px, 4vw, 34px);
    color: #0C2340;
}

.modal-resumen {
    margin-bottom: 26px;
    padding: 20px;
    border-left: 4px solid #1A4A6E;
    border-radius: 10px;
    background: #f4f6f8;
    text-align: left;
}

.modal-resumen p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.modal-resumen strong {
    color: #0C2340;
}

.modal-acciones {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-volver,
.btn-confirmar-final {
    border: 0;
    border-radius: 9px;
    padding: 13px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease;
}

.btn-volver {
    background: #e8edf1;
    color: #0C2340;
}

.btn-confirmar-final {
    background: linear-gradient(90deg, #0C2340, #1A4A6E, #1E7A8A);
    color: #fff;
}

.btn-volver:hover,
.btn-confirmar-final:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

@keyframes modalEntrada {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .modal-confirmacion-card {
        padding: 30px 20px;
    }

    .modal-acciones {
        flex-direction: column;
    }

    .btn-volver,
    .btn-confirmar-final {
        width: 100%;
    }
}

/* ─── JIREH MEDIOS ─────────────────────────── */
.jireh-medios-section {
    position: relative;
    overflow: hidden;
    background: #E1E2E6;
    color: #323337;
    padding: 95px 3.2vw 110px;
}

.jireh-medios-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -235px;
    top: 35px;
    border: 1px solid rgba(12,35,64,.08);
    border-radius: 50%;
    pointer-events: none;
}

.jireh-medios-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 150px;
    background: linear-gradient(var(--accent), transparent);
}

.jireh-medios-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
}

/* Cabecera */
.jireh-editorial-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: end;
    padding: 0 2.6vw 50px;
    border-bottom: 1px solid rgba(50,51,55,.16);
}

.jireh-head-left h2 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(4.5rem, 8.5vw, 8rem);
    font-weight: 700;
    line-height: .78;
    letter-spacing: .015em;
    color: #25272b;
}

.jireh-head-left h2 em {
    color: transparent;
    -webkit-text-stroke: 1px rgba(50,51,55,.48);
    font-style: normal;
}

.jireh-head-right {
    display: flex;
    align-items: flex-end;
    padding-bottom: 5px;
}

.jireh-head-right p {
    max-width: 410px;
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.65;
    color: #414247;
}

/* Radio + TV */
.jireh-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 38px 2.6vw 44px;
    border-bottom: 1px solid rgba(50,51,55,.16);
}

.jireh-media-card {
    min-width: 0;
}

.jireh-media-card-head h3,
.jireh-youtube-title h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.1vw, 3.25rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .025em;
    color: #243b5a;
}

.jireh-media-card-head p,
.jireh-youtube-title p {
    margin: 14px 0 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #55575d;
}

/* Radio */
.jireh-radio-card {
    padding-right: 22px;
    border-right: 1px solid rgba(50,51,55,.12);
}

.jireh-radio-player {
    margin-top: 34px;
    padding: 24px 26px 22px;
    background: rgba(255,255,255,.46);
    border: 1px solid rgba(12,35,64,.09);
    border-radius: 18px;
}

.jireh-live-line {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    color: #414247;
}

.jireh-live-line span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #a52b32;
    box-shadow: 0 0 0 5px rgba(165,43,50,.10);
    animation: jirehPulse 1.8s infinite;
}

.jireh-radio-player audio {
    display: block;
    width: 100%;
    height: 52px;
    filter: none;
}

.jireh-radio-player small,
.jireh-tv-status {
    display: block;
    margin-top: 10px;
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 300;
    color: #696b70;
}

/* TV */
.jireh-tv-card {
    padding-left: 22px;
}

.jireh-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.7;
    min-height: 245px;
    margin-top: 22px;
    overflow: hidden;
    background: #0b0d10;
    border: 1px solid rgba(12,35,64,.14);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(12,35,64,.08);
}

.jireh-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #090b0e;
}

.jireh-video-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080b0f;
    pointer-events: none;
}

.jireh-big-play {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    padding-left: 3px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
}

.jireh-tv-live {
    margin: 15px 0 0;
}

.jireh-tv-status {
    margin-top: 6px;
}

/* YouTube */
.jireh-youtube-area {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 60px;
    align-items: start;
    padding: 42px 2.6vw 0;
}

.jireh-youtube-title h3 {
    font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.jireh-youtube-title p {
    max-width: 380px;
}

.jireh-youtube-list {
    border-top: 1px solid rgba(12,35,64,.15);
}

.jireh-youtube-item {
    min-height: 82px;
    display: grid;
    grid-template-columns: 44px 1fr auto 24px;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    color: #323337;
    border-bottom: 1px solid rgba(12,35,64,.13);
    transition: background .25s ease, padding .25s ease, transform .25s ease;
}

.jireh-youtube-item:hover {
    padding-left: 10px;
    padding-right: 8px;
    background: rgba(255,255,255,.38);
    transform: translateX(3px);
}

.jireh-channel-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e5e7eb;
    color: #0C2340;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
}

.jireh-youtube-icon svg {
    width: 23px;
    height: 23px;
    display: block;
}

.jireh-youtube-icon svg path:first-child {
    fill: #c92525;
}

.jireh-youtube-icon .jireh-youtube-play {
    fill: #fff;
}

.jireh-channel-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.jireh-channel-name {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: #243b5a;
}

.jireh-channel-desc {
    font-family: var(--font-body);
    font-size: .86rem;
    font-weight: 300;
    line-height: 1.4;
    color: #66686d;
}

.jireh-channel-action {
    white-space: nowrap;
    padding: 10px 18px;
    border: 1px solid #0C2340;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    color: #0C2340;
    transition: all .25s ease;
}

.jireh-youtube-item:first-child .jireh-channel-action {
    background: #a52b32;
    border-color: #a52b32;
    color: #fff;
}

.jireh-channel-arrow {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #7B1D3A;
}

@keyframes jirehPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.85); }
}

/* Responsive */
@media (max-width: 900px) {
    .jireh-editorial-head,
    .jireh-media-grid,
    .jireh-youtube-area {
        grid-template-columns: 1fr;
    }

    .jireh-editorial-head {
        gap: 28px;
    }

    .jireh-media-grid {
        gap: 32px;
    }

    .jireh-radio-card {
        padding-right: 0;
        padding-bottom: 34px;
        border-right: 0;
        border-bottom: 1px solid rgba(50,51,55,.12);
    }

    .jireh-tv-card {
        padding-left: 0;
    }

    .jireh-youtube-area {
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .jireh-medios-section {
        padding: 72px 18px 80px;
    }

    .jireh-editorial-head,
    .jireh-media-grid,
    .jireh-youtube-area {
        padding-left: 0;
        padding-right: 0;
    }

    .jireh-head-left h2 {
        font-size: clamp(4rem, 20vw, 6rem);
    }

    .jireh-media-grid {
        padding-top: 32px;
        padding-bottom: 35px;
    }

    .jireh-radio-player {
        margin-top: 25px;
        padding: 20px 16px;
    }

    .jireh-video-frame {
        min-height: 205px;
    }

    .jireh-youtube-area {
        padding-top: 38px;
    }

    .jireh-youtube-item {
        grid-template-columns: 40px 1fr;
        gap: 11px;
        padding: 13px 0;
    }

    .jireh-channel-icon {
        width: 40px;
        height: 40px;
    }

    .jireh-channel-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 2px;
    }

    .jireh-channel-arrow {
        display: none;
    }
}

/* ─── CONFERENCIA INFO ─────────────────────────── */

.jireh-conferencia {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 100px 0 110px;

    background: #E1E2E6;

    color: #323337;

    overflow: hidden;
}

.conferencia-header {
    width: 84%;
    max-width: 1200px;

    margin: 0 auto 75px;

    text-align: center;
}


.conferencia-label {
    display: block;

    margin-bottom: 22px;

    font-family: var(--font-title);

    font-size: 24px;
    font-weight: 700;

    letter-spacing: .12em;

    color: #323337;
}


.conferencia-header h2 {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    font-family: var(--font-title);

    font-size: clamp(48px, 6.5vw, 88px);

    font-weight: 700;

    line-height: .96;

    letter-spacing: -.02em;

    text-transform: uppercase;

    color: #323337;
}


.conferencia-orador {
    margin: 28px auto 0;

    font-family: var(--font-body);

    font-size: 21px;

    font-weight: 400;

    line-height: 1.5;

    color: #414247;
}


.conferencia-orador span {
    display: block;

    margin-top: 3px;

    font-size: 17px;

    font-weight: 300;

    color: #55565b;
}

/*FAQ*/
.conferencia-grid {
    width: 84%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(50,51,55,.20);
}

.conferencia-info {
    min-width: 0;

    padding: 55px 65px 20px 0;
}


.conferencia-info h3 {
    margin: 0 0 35px;

    font-family: var(--font-title);

    font-size: 44px;

    font-weight: 700;

    line-height: 1;

    color: #323337;
}


.info-bloque {
    padding: 25px 0;

    border-top: 1px solid rgba(50,51,55,.17);
}


.info-titulo {
    display: block;

    margin-bottom: 18px;

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .15em;

    color: #55565b;
}

.fecha {
    display: flex;

    align-items: baseline;

    justify-content: space-between;

    gap: 20px;

    padding: 11px 0;
}


.fecha strong {
    font-family: var(--font-body);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: .03em;

    color: #323337;
}


.fecha span {
    flex-shrink: 0;

    font-family: var(--font-title);

    font-size: 21px;

    font-weight: 600;

    color: #414247;
}

.sede {
    display: flex;

    flex-direction: column;

    padding: 11px 0;
}


.sede strong {
    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .05em;

    color: #323337;
}


.sede span {
    margin-top: 5px;

    font-family: var(--font-title);

    font-size: 21px;

    font-weight: 500;

    color: #414247;
}

.info-bloque p {
    max-width: 520px;

    margin: 0 0 22px;

    font-family: var(--font-body);

    font-size: 17px;

    font-weight: 300;

    line-height: 1.8;

    color: #414247;
}


.medios {
    display: flex;

    width: 100%;
    max-width: 450px;

    border-top: 1px solid rgba(50,51,55,.18);

    border-bottom: 1px solid rgba(50,51,55,.18);
}


.medios span {
    flex: 1;

    padding: 16px 8px;

    text-align: center;

    border-right: 1px solid rgba(50,51,55,.18);

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .12em;

    color: #323337;
}


.medios span:last-child {
    border-right: none;
}

.registro-conferencia {
    margin-top: 25px;

    padding: 25px;

    background: rgba(255,255,255,.28);

    border: 1px solid rgba(50,51,55,.10);
}


.registro-conferencia strong {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .07em;

    color: #323337;
}


.registro-conferencia p {
    margin: 0 0 15px;

    font-family: var(--font-body);

    font-size: 16px;

    font-weight: 300;

    line-height: 1.6;

    color: #414247;
}


.registro-conferencia b {
    font-family: var(--font-title);

    font-size: 21px;

    font-weight: 700;

    color: #323337;
}

.conferencia-faq {
    min-width: 0;

    padding: 55px 0 20px 65px;

    border-left: 1px solid rgba(50,51,55,.20);
}


.faq-label {
    display: block;

    margin-bottom: 15px;

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .15em;

    color: #55565b;
}


.conferencia-faq h3 {
    margin: 0 0 35px;

    font-family: var(--font-title);

    font-size: 46px;

    font-weight: 700;

    line-height: .96;

    color: #323337;
}

.faq-list {
    border-top: 1px solid rgba(50,51,55,.18);
}


.faq-list details {
    border-bottom: 1px solid rgba(50,51,55,.18);
}


.faq-list summary {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    cursor: pointer;

    list-style: none;

    font-family: var(--font-title);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.3;

    color: #323337;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary span {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(50,51,55,.35);

    border-radius: 50%;

    font-family: var(--font-body);

    font-size: 18px;

    font-weight: 300;
}


.faq-list details[open] summary span {
    transform: rotate(45deg);
}


.faq-list p {
    margin: 0;

    padding: 0 40px 23px 0;

    font-family: var(--font-body);

    font-size: 15px;

    font-weight: 300;

    line-height: 1.8;

    color: #414247;
}

@media (max-width: 900px) {

    .jireh-conferencia {
        padding: 75px 0 85px;
    }

    .conferencia-header {
        width: 88%;
    }

    .conferencia-grid {
        width: 88%;

        grid-template-columns: 1fr;
    }

    .conferencia-info {
        padding-right: 0;
        padding-bottom: 55px;
    }

    .conferencia-faq {
        padding-left: 0;
        padding-top: 55px;

        border-left: none;

        border-top: 1px solid rgba(50,51,55,.20);
    }
}

@media (max-width: 600px) {

    .jireh-conferencia {
        width: 100%;
        max-width: 100vw;

        padding: 55px 0 65px;

        overflow-x: hidden;
    }

    .conferencia-header {
        width: calc(100% - 40px);

        max-width: none;

        margin: 0 20px 45px;

        text-align: center;
    }


    .conferencia-label {
        margin-bottom: 18px;

        font-size: 17px;

        letter-spacing: .10em;
    }

    .conferencia-header h2 {
        width: 100%;

        max-width: 100%;

        padding: 0;

        font-size: clamp(34px, 10.2vw, 58px);

        line-height: .98;

        letter-spacing: -.01em;

        overflow-wrap: normal;

        word-break: normal;
    }


    .conferencia-orador {
        margin-top: 23px;

        font-size: 17px;
    }


    .conferencia-orador span {
        font-size: 14px;
    }

    .conferencia-grid {
        width: calc(100% - 40px);

        margin: 0 20px;

        display: block;
    }


    .conferencia-info {
        padding-top: 40px;
    }


    .conferencia-info h3 {
        font-size: 36px;

        margin-bottom: 25px;
    }

    .fecha {
        display: block;

        padding: 10px 0;
    }


    .fecha strong {
        display: block;

        font-size: 12px;

        line-height: 1.4;
    }


    .fecha span {
        display: block;

        margin-top: 5px;

        font-size: 20px;
    }

    .sede strong {
        font-size: 12px;
    }


    .sede span {
        font-size: 19px;
    }

    .info-bloque p {
        font-size: 15px;

        line-height: 1.7;
    }


    .medios span {
        padding: 14px 5px;

        font-size: 10px;

        letter-spacing: .08em;
    }

    .registro-conferencia {
        padding: 20px;
    }


    .registro-conferencia p {
        font-size: 15px;
    }


    .registro-conferencia b {
        font-size: 18px;
    }

    .conferencia-faq {
        padding-top: 45px;
    }


    .faq-label {
        font-size: 10px;
    }


    .conferencia-faq h3 {
        font-size: 38px;

        margin-bottom: 28px;
    }


    .faq-list summary {
        min-height: 65px;

        font-size: 15px;
    }


    .faq-list p {
        padding-right: 15px;

        font-size: 14px;

        line-height: 1.7;
    }

}

