.elementor-2389 .elementor-element.elementor-element-615f1e9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2389 .elementor-element.elementor-element-615f1e9{--width:100%;}}/* Start custom CSS for container, class: .elementor-element-615f1e9 *//* ============================================================
   SEMINARIO SAN LORENZO v3 — Diseño optimizado y unificado
   ============================================================ */

/* ── CONFIGURACIÓN GENERAL ───────────────────────────────── */
.sem-wrapper {
    font-family: 'Montserrat', sans-serif;
    max-width: 1440px;
    margin: 0 auto;
}

/* ── HERO ────────────────────────────────────────────────── */
.sem-hero {
    background: #4B6D83;
    color: #ffffff;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sem-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D6A84F;
    margin-bottom: 12px;
    display: block;
}

.sem-hero__titulo {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.sem-hero__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 32px;
    font-family: sans-serif;
}

/* Imagen del Hero */
.sem-hero__image {
    width: 100%;
    border-radius: 20px;
}

.sem-hero-img {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* ── GRID DE CONTACTO (2 Columnas simétricas) ────────────── */
.sem-contact-grid {
    display: grid;
    /* Forzamos 2 columnas de igual tamaño (1fr cada una) */
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
    margin-bottom: 32px;
}

.sem-contact-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none; /* Por si son enlaces */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Animación Hover solicitada para las cajas */
a.sem-contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: #D6A84F;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.sem-contact-item__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D6A84F;
    margin-bottom: 4px;
    display: block;
}

.sem-contact-item__value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
    word-break: break-word;
    font-family: sans-serif;
}

/* ── BOTONES DE ACCIÓN (Forzados a ocupar el mismo espacio) ── */
.sem-acciones {
    display: grid;
    /* Creamos un grid de 2 columnas para que los botones midan lo mismo */
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sem-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px; /* Un poco más de altura para que se vean pro */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%; /* Ocupa todo el espacio de su celda de grid */
    text-align: center;
}

/* Colores de botones (se mantienen) */
.sem-btn--primary { background: #D6A84F; color: #ffffff; }
.sem-btn--primary:hover { background: #C18E2A; }

.sem-btn--wa { background: #25D366; color: #ffffff; }
.sem-btn--wa:hover { background: #1ebe5d; }

.sem-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.45);
}
.sem-btn--outline:hover { background: rgba(255,255,255,0.12); }

/* ── AJUSTES PARA MÓVIL ──────────────────────────────────── */
@media (max-width: 767px) {
    /* En móvil es mejor que ocupen todo el ancho (1 columna) */
    .sem-contact-grid,
    .sem-acciones {
        grid-template-columns: 1fr; 
    }
    
    .sem-btn {
        padding: 16px; /* Más fáciles de tocar en el celular */
    }
}

/* ── SECCIÓN CONTENIDO (video + subsidios) ──────────────── */
.sem-contenido {
    padding: 56px 48px;
    background: #ffffff;
}

.sem-contenido-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── VIDEO ───────────────────────────────────────────────── */
.sem-video-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(75,109,131,0.18);
    aspect-ratio: 9 / 16;
    background: #1a2535;
}

.sem-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sem-video-label {
    font-size: 11px;
    color: #9A9999;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ── SUBSIDIOS (Efecto Aero y Hover) ─────────────────────── */
.sem-subsidios-col {
    min-width: 0;
}

.sem-subsidios-titulo {
    font-size: 20px;
    font-weight: 800;
    color: #4B6D83;
    margin: 0 0 4px;
}

.sem-subsidios-subtitulo {
    font-size: 13px;
    color: #9A9999;
    margin: 0 0 24px;
    font-family: sans-serif;
}

/* Carrusel Aero */
.subsidios-carrusel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.subsidios-carrusel::-webkit-scrollbar { display: none; }

/* Tarjeta interactiva */
.subsidio-card {
    flex: 0 0 240px;
    height: 320px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subsidio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(75,109,131,0.3);
}

.subsidio-card__img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #eef4f9;
}

.subsidio-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.subsidio-card:hover .subsidio-card__img-wrap img {
    transform: scale(1.08);
}

.subsidio-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eef4f9 0%, #d9e8f4 100%);
}

/* Contenido sobre la imagen (aparece en hover) */
.subsidio-card__body {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(30,45,60,0.95) 0%, rgba(30,45,60,0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.subsidio-card:hover .subsidio-card__body {
    opacity: 1;
}

.subsidio-card__cat {
    display: table;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #4B6D83;
    background: #eef4f9;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.subsidio-card__titulo {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 6px;
}

.subsidio-card__desc {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: sans-serif;
}

.subsidio-card__btn {
    display: block;
    margin-top: 14px;
    padding: 10px 14px;
    text-align: center;
    background: #D6A84F;
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.subsidio-card__btn:hover {
    background: #C18E2A;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sem-hero {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }
    
    .sem-hero__image {
        order: -1; /* Pone la imagen arriba del texto en tablets */
    }

    .sem-contenido-grid {
        grid-template-columns: 1fr; /* El video y el carrusel se apilan */
        gap: 40px;
    }
    
    .sem-video-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .sem-wrapper { padding: 0; }
    .sem-hero { padding: 32px 20px; gap: 32px; }
    .sem-hero__titulo { font-size: 26px; }
    .sem-hero-img { min-height: 240px; }
    
    .sem-acciones { flex-direction: column; width: 100%; }
    .sem-btn { width: 100%; margin-bottom: 8px; }

    .sem-contenido { padding: 36px 20px; }

    /* Carrusel pasa a Grid en móvil para mejor lectura */
    .subsidios-carrusel {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
        padding: 0;
        -webkit-mask-image: none;
        mask-image: none;
        overflow: visible;
    }

    .subsidio-card {
        height: 240px;
        flex: auto;
    }

    /* Info siempre visible en móvil (no hay hover) */
    .subsidio-card__body {
        opacity: 1;
        background: linear-gradient(to top, rgba(30,45,60,0.95) 0%, rgba(30,45,60,0.6) 60%, transparent 100%);
    }
    
    .subsidio-card__desc {
        display: none; /* Ocultamos la descripción en móvil para no saturar el espacio pequeño */
    }
    
    /* Animación Hover para Cajas de Contacto */
    a.sem-contact-item {
        text-decoration: none;
        transition: all 0.2s ease;
        display: block;
    }
    
    a.sem-contact-item:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-3px);
        border-color: #D6A84F;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    /* La caja del director no tiene enlace, evitamos que reaccione */
    .sem-contact-item--static {
        cursor: default;
    }   
}/* End custom CSS */