/* --- HERO SECTION MONITOREO --- */
.monitoreo-hero {
    background-color: #15233A; /* Azul Oscuro Corporativo */
    height: 50vh; 
    min-height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Ancho contenido al 80% */
.monitoreo-hero .contenedor {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Grid de 2 Columnas */
.monitoreo-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Estilos de Texto */
.monitoreo-text-col h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.monitoreo-text-col p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    padding-right: 2rem;
}

/* Botón CTA */
.btn-monitoreo-cta {
    display: inline-block;
    background-color: #187495; /* Azul Cian */
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 116, 149, 0.4);
}

.btn-monitoreo-cta:hover {
    background-color: #135d78;
    transform: translateY(-3px);
}

/* Columna Imagen */
.monitoreo-img-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.img-wrapper {
    width: 100%;
    max-width: 100%;
    height: 350px;
    background-color: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Placeholder temporal */
.generic-placeholder-hero {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background-color: #cbd5e1;
    font-weight: 700;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .monitoreo-hero {
        height: auto;
        padding: 4rem 0;
    }
    .monitoreo-hero .contenedor {
        width: 90%;
    }
    .monitoreo-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .monitoreo-text-col p {
        padding-right: 0;
    }
    .monitoreo-img-col {
        justify-content: center;
    }
}

/* --- SECCIÓN INFRAESTRUCTURA (Estilo Idéntico a Análisis) --- */
.infrastructure-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* Ancho 80% del contenedor */
.infrastructure-section .contenedor {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Columna Imagen */
.infrastructure-img-col {
    position: relative;
}

.img-frame {
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

/* Placeholder Gris */
.generic-placeholder-infra {
    width: 100%;
    height: 400px;
    background-color: #cbd5e1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Columna Texto */
.infrastructure-text-col h2 {
    font-size: 2.2rem;
    color: #15233A;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Lista de Puntos */
.infra-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.infra-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #5B5A63;
    line-height: 1.5;
}

/* Checkmark Azul */
.infra-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: #187495; /* Azul Cian */
    color: #ffffff;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
}

.infra-list li strong {
    color: #15233A;
    font-weight: 700;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .infrastructure-section .contenedor {
        width: 90%;
    }
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .generic-placeholder-infra {
        height: 300px;
    }
}

/* --- SECCIÓN TABS INTERACTIVOS --- */
.services-tabs-section {
    padding: 6rem 0;
    background-color: #F8FAFC; /* Fondo muy claro para resaltar las tarjetas */
}

/* Encabezado */
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header-center h2 {
    font-size: 2.5rem;
    color: #15233A;
    margin-bottom: 0.5rem;
}
.section-header-center p {
    color: #5B5A63;
    font-size: 1.1rem;
}

/* --- TABS ESPECIFICOS PARA MONITOREO (Sin conflictos con Legales) --- */

.mon-tabs-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    
    /* 1. Ancho máximo y centrado */
    max-width: 1000px; 
    margin: 0 auto;    /* 'auto' a los lados lo centra automáticamente */
    width: 95%;        /* Para que en pantallas menores a 1000px no pegue a los bordes */
    
    /* 2. Menos espacio entre columnas */
    gap: 1.5rem;       /* Antes era 2rem, lo juntamos un poco más */
    margin-top: 1.5rem;
} /* <--- ¡ESTA LLAVE ERA LA QUE FALTABA! */

/* Columna Izquierda: Botones (Ajuste ligero) */
.mon-tabs-nav {
    display: flex;
    flex-direction: column;
    width: 300px;       /* Le damos un ancho fijo para que se vea ordenado */
    flex-shrink: 0;     /* Evita que se aplaste */
    gap: 0.8rem;        /* Menos espacio entre botones */
}

/* Columna Derecha: Contenido (Más compacto) */
.mon-content-area {
    flex-grow: 1;       /* Ocupa el resto del espacio (aprox 700px) */
    background-color: #ffffff;
    
    /* 3. Menos "aire" interno */
    padding: 2rem;      /* Antes 2.5rem. Reduce el espacio interno */
    
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Botones (Clase única) */
.mon-tab-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.mon-tab-btn:hover {
    transform: translateX(5px);
    border-color: #187495;
}

/* Estado Activo */
.mon-tab-btn.active {
    background-color: #15233A;
    color: #ffffff;
    border-color: #15233A;
    box-shadow: 0 5px 15px rgba(21, 35, 58, 0.2);
}

/* Texto e Iconos */
.mon-tab-btn .tab-icon svg {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.mon-tab-btn.active h3, 
.mon-tab-btn.active span,
.mon-tab-btn.active .tab-icon svg {
    color: #ffffff !important;
}

/* Paneles de Contenido */
.mon-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.mon-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .mon-tabs-container {
        flex-direction: column;
    }
    .mon-tabs-nav, .mon-content-area {
        width: 100%;
    }
}

/* Encabezado del Panel con Icono */
.pane-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.header-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #187495;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(24, 116, 149, 0.3);
}

.header-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.header-text h2 {
    font-size: 1.8rem;
    color: #15233A;
    margin: 0;
    line-height: 1.1;
    font-weight: 700;
}

.subtitle-blue {
    color: #187495;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-top: 0.2rem;
}

/* Descripción Principal */
.main-desc {
    font-size: 1.05rem;
    color: #5B5A63;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Sección Técnica */
.technical-section {
    margin-bottom: 2rem;
}
.technical-section h4 {
    font-size: 1rem;
    color: #15233A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.technical-section p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Caja "Beneficio Operativo" (Estilo Expected Result) */
.benefit-box {
    background-color: #F0F4F8; /* Fondo gris/azul muy suave */
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.benefit-box h4 {
    color: #187495; /* Titulo Azul */
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-box p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Botón Azul Redondeado */
.btn-blue-rounded {
    display: inline-block;
    background-color: #187495;
    color: #ffffff;
    padding: 0.7rem 2.5rem; /* Delgado vertical, ancho horizontal */
    border-radius: 30px; /* Redondeado 30px */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(24, 116, 149, 0.25);
}

.btn-blue-rounded:hover {
    background-color: #135d78;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 116, 149, 0.4);
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 900px) {
    /* Hero */
    .monitoreo-hero {
        height: auto;
        padding: 4rem 0;
    }
    .monitoreo-hero .contenedor,
    .infrastructure-section .contenedor,
    .tabs-container {
        width: 90%;
    }
    .monitoreo-hero-grid,
    .infrastructure-grid,
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .monitoreo-text-col p { padding-right: 0; }
    .monitoreo-img-col { justify-content: center; }

    /* Tabs Móvil */
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    .tab-btn {
        min-width: 250px;
    }
    .pane-header {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}

/* --- SECCIÓN FAQ (Preguntas Frecuentes) --- */
.faq-section {
    padding: 6rem 0;
    background-color: #ffffff; /* Fondo blanco limpio */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

/* Botón de Pregunta */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #15233A;
}

.faq-icon {
    font-size: 1.5rem;
    color: #187495; /* Azul Cian */
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* Respuesta (Oculta por defecto) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #F8FAFC;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: #5B5A63;
    line-height: 1.6;
}

/* --- ESTADO ACTIVO (Abierto) --- */
.faq-item.active {
    border-color: #187495;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Gira a 'X' */
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Altura suficiente */
}

/* --- CTA STRIP (Estilo Blanco Limpio) --- */
.cta-section {
    background-color: #ffffff; /* Fondo Blanco Puro */
    padding: 5rem 0; /* Buen espaciado vertical */
    text-align: center;
}

.cta-content h2 {
    color: #15233A; /* Azul Oscuro Corporativo */
    font-size: 2.2rem;
    margin-bottom: 2rem; /* Espacio entre título y botón */
    font-weight: 800; /* Letra un poco más gruesa */
}

/* Botón Delineado (Outline) */
.btn-cta-outline {
    background-color: transparent; /* Fondo transparente */
    color: #15233A; /* Texto oscuro */
    border: 2px solid #15233A; /* Borde oscuro */
    padding: 0.8rem 3rem;
    border-radius: 50px; /* Bordes completamente redondos */
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #15233A; /* Al pasar el mouse se llena de azul */
    color: #ffffff; /* Texto se vuelve blanco */
    transform: translateY(-2px);
}

/* --- SECCIÓN PILARES --- */
.nosotros-pilares {
    padding: 6rem 0;
    background-color: #ffffff;
}

.nosotros-pilares .contenedor {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.pilares-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Texto | 50% Imagen */
    gap: 5rem;
    align-items: center;
}

/* Etiqueta / Badge Superior */
.badge-pill {
    display: inline-block;
    background-color: #E0F2FE; /* Fondo azul muy claro */
    color: #187495; /* Texto Azul Corporativo */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Títulos y Descripción */
.pilares-text-col h2 {
    font-size: 2.5rem;
    color: #15233A;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.main-desc {
    font-size: 1.1rem;
    color: #5B5A63;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.pilares-list-wrapper h3 {
    font-size: 1.2rem;
    color: #15233A;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* LISTA DE PUNTITOS (Simple Dots) */
.simple-dots-list {
    list-style: none; /* Quitamos estilo default para controlarlo mejor */
    padding: 0;
    margin: 0;
}

.simple-dots-list li {
    position: relative;
    padding-left: 1.5rem; /* Espacio para el punto */
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* El Puntito Azul */
.simple-dots-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px; /* Ajuste vertical */
    width: 8px;
    height: 8px;
    background-color: #187495; /* Azul Corporativo */
    border-radius: 50%; /* Círculo perfecto */
}

.simple-dots-list li strong {
    color: #15233A;
    font-weight: 700;
}

/* Columna Imagen */
.pilares-img-col img {
    width: 100%;
    height: auto;
    border-radius: 24px; /* Bordes redondeados (estilo moderno) */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    min-height: 400px;
}

/* Responsive */
@media (max-width: 900px) {
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* --- SECCIÓN ENFOQUE HUMANO (MONITOREO) --- */

.mon-human-section {
    background-color: #ffffff;
    padding: 3rem 0 6rem 0; /* Un poco de aire arriba y abajo */
    width: 100%;
}

.mon-human-content {
    width: 100%;
    /* Aseguramos que el contenedor base esté centrado */
    display: flex;
    justify-content: center;
}

/* NUEVA CLASE: Desvinculada de analisis.css */
.mon-typewriter-text {
    /* 1. Estilos de Texto */
    font-size: 2.2rem;
    color: #15233A;
    font-weight: 700;
    line-height: 1.4;
    min-height: 3.5em; /* Reserva espacio para que no salte */
    
    /* 2. CENTRADO Y ANCHO (La solución) */
    text-align: center;      /* Centra las letras dentro de la caja */
    width: 100%;             /* Ocupa el ancho disponible... */
    max-width: 80%;          /* ...pero solo hasta el 80% como pediste */
    margin: 0 auto;          /* Centra la caja horizontalmente */
    display: block;
}

/* Cursor y Resaltado (Se mantienen igual) */
.mon-human-section .cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #187495;
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

.mon-human-section .texto-resaltado {
    color: #187495;
    font-weight: 800;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Ajuste Móvil */
@media (max-width: 768px) {
    .mon-typewriter-text {
        font-size: 1.4rem;
        max-width: 95%; /* En celular usamos más espacio */
    }
}

/* =========================================
   CORRECCIÓN HERO MONITOREO 
   (Idéntico a Análisis: Izquierda + Fuentes Ajustadas)
   ========================================= */

/* AJUSTES TABLET (< 1024px) */
@media (max-width: 1024px) {

    /* 1. LAYOUT: Usar todo el ancho disponible */
    /* Quitamos la división de 2 columnas para que el texto respire */
    .monitoreo-hero-grid {
        display: block !important; 
        width: 100% !important;
    }

    .monitoreo-hero {
        height: auto !important;
        min-height: 400px !important;
        padding: 6rem 0 !important;
    }

    /* 2. ANCHOS Y ALINEACIÓN (Izquierda Estricta) */
    .monitoreo-hero .contenedor {
        width: 80% !important; /* Tablet: Usamos el 80% de la pantalla */
        margin-left: auto !important; 
        margin-right: auto !important;
    }

    .monitoreo-text-col {
        text-align: left !important; /* SIEMPRE IZQUIERDA */
        max-width: 100% !important;
        margin: 0 !important; /* Quitamos auto margins que centran */
    }

    /* 3. FUENTES (Reducción de tamaño) */
    .monitoreo-text-col h1 {
        font-size: 2.2rem !important; /* Título mediano */
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .monitoreo-text-col p {
        font-size: 1rem !important; /* Subtítulo fino y legible */
        line-height: 1.5 !important;
        font-weight: 300 !important;
        color: #cbd5e1 !important;
        padding-right: 0 !important;
    }
}

/* AJUSTES MÓVIL (< 600px) */
@media (max-width: 600px) {
    /* En celular aprovechamos más espacio lateral (90%) */
    .monitoreo-hero .contenedor {
        width: 90% !important; 
    }

    /* Título compacto */
    .monitoreo-text-col h1 {
        font-size: 1.8rem !important;
    }
}



/* =========================================
   CORRECCIÓN TABS: BARRA DE ICONOS (Móvil/Tablet)
   ========================================= */

/* 1. ARREGLO DE FUENTE (Global) */
/* Aseguramos que todo el contenido use la fuente correcta */
.mon-tabs-section, .mon-content-area, .mon-tab-btn {
    font-family: 'Outfit', sans-serif !important;
}

/* 2. TRANSFORMACIÓN VISUAL (< 1024px) */
@media (max-width: 1024px) {

    /* CONTENEDOR: Apilar verticalmente (Menú arriba, Contenido abajo) */
    .mon-tabs-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important; /* Pegamos un poco el menú al contenido */
        margin-top: 1rem !important;
    }

    /* NAVEGACIÓN: Fila horizontal de botones */
    .mon-tabs-nav {
        flex-direction: row !important; /* Fila */
        width: 100% !important;
        justify-content: space-between !important; /* Distribuidos a lo ancho */
        gap: 0.5rem !important; /* Espacio pequeño entre botones */
    }

    /* BOTONES: Convertir en "Cuadros de Icono" */
    .mon-tab-btn {
        flex: 1 !important; /* Que todos tengan el mismo ancho */
        height: 60px !important; /* Altura fija cómoda para el dedo */
        padding: 0 !important;   /* Sin relleno interno */
        justify-content: center !important; /* Centrar icono totalmente */
        border-radius: 12px !important;
        text-align: center !important;
    }

    /* ELIMINAR TEXTOS (Título y Subtítulo del botón) */
    /* Esto es lo clave para ahorrar espacio */
    .mon-tab-btn .tab-info {
        display: none !important; 
    }

    /* AJUSTE DEL ICONO */
    .mon-tab-btn .tab-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .mon-tab-btn .tab-icon svg {
        margin-right: 0 !important; /* Quitamos el margen que empujaba */
        width: 28px !important; /* Tamaño legible */
        height: 28px !important;
    }

    /* CONTENIDO: Ajuste de la tarjeta inferior */
    .mon-content-area {
        width: 100% !important;
        padding: 1.5rem !important; /* Relleno cómodo */
    }
}

/* =========================================
   HERO MONITOREO (Estilo Unificado)
   ========================================= */

.monitoreo-hero {
    position: relative;
    height: 50vh;        /* Altura compacta igual que Análisis */
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center; 
    overflow: hidden;
    background-color: #15233A;
}

/* Video de Fondo */
.monitoreo-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;   
    z-index: 0;
}

/* Capa Oscura */
.monitoreo-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* Gradiente lateral izquierdo */
    background: linear-gradient(90deg, rgba(21,35,58,0.9) 0%, rgba(21,35,58,0.7) 60%, rgba(21,35,58,0.4) 100%);
    z-index: 1;
}

/* Wrapper del contenido */
.monitoreo-content-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;          
    max-width: 1400px;   
    margin: 0 auto;      
}

/* Columna de Texto */
.monitoreo-text-col {
    max-width: 700px;    
    text-align: left;    
    color: #ffffff;
}

.monitoreo-text-col h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem; 
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.monitoreo-text-col p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

/* Botón */
.btn-monitoreo-cta {
    display: inline-block;
    background-color: #187495;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-monitoreo-cta:hover {
    background-color: #ffffff;
    color: #15233A;
    transform: translateY(-3px);
}


/* =========================================
   VIDEO INFRAESTRUCTURA (Formato 16:9)
   ========================================= */

.infrastructure-img-col .img-frame {
    position: relative;
    width: 100%;
    
    /* FORZAR RECTÁNGULO HORIZONTAL (Evita que se vea cuadrado en móvil) */
    aspect-ratio: 16 / 9; 
    height: auto;
    min-height: auto;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.infrastructure-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}


/* =========================================
   RESPONSIVE (TABLET Y MÓVIL)
   ========================================= */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
    .monitoreo-hero {
        height: 40vh;      
        min-height: 350px; 
    }

    .monitoreo-text-col h1 {
        font-size: 2.5rem; 
    }
}

/* Móvil (< 600px) */
@media (max-width: 600px) {
    .monitoreo-hero {
        height: auto;       
        min-height: 300px;
        padding: 3rem 0;
    }

    .monitoreo-content-wrapper {
        width: 90%;
    }

    .monitoreo-text-col {
        width: 100%;       
    }

    .monitoreo-text-col h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .monitoreo-text-col p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-monitoreo-cta {
        width: 100%;       
        text-align: center;
    }
}