/********** Hoja de Estilos Principal **********/
:root {
    --primary: #000000; /* Negro primario */
    --light: #EFF5FF;   /* Azul muy claro/Grisáceo */
    --dark: #303030;    /* Gris oscuro */
    --danger: #cc0000;  /* Rojo principal */
}

/* --- Utilidades de Fuente --- */
.fw-medium { font-weight: 500 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-black { font-weight: 900 !important; }

/* --- CLASE PARA TÍTULOS DE SECCIÓN (NEGRO) --- */
.section-title {
    color: #1a1a1a !important; /* Color negro fuerte */
    font-weight: 700;          /* Negrita */
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Tamaño responsivo */
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* --- Spinner de Carga --- */
#spinner {
    opacity: 0; visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible; opacity: 1;
}

/* --- Botones Generales --- */
.btn { font-weight: 500; transition: .5s; }
.btn.btn-primary, .btn.btn-secondary { color: #FFFFFF; }
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal;
}

/* --- Botón Flotante para Subir (Back-to-top) --- */
.back-to-top {
    position: fixed; bottom: 40px; right: 40px; display: none; z-index: 99;
    width: 50px; height: 50px; background: var(--primary); color: #fff;
    font-size: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
/* .back-to-top.show { display: flex; } /* Bootstrap JS maneja esto, pero se puede forzar así */


/* --- Barra de Navegación --- */
.navbar .dropdown-toggle::after { /* Flecha del dropdown */
    border: none; content: "\f107"; font-family: "Font Awesome 5 Free";
    font-weight: 900; vertical-align: middle; margin-left: 8px;
}
.navbar .navbar-brand, .navbar a.btn { height: 75px; } /* Altura del logo/botones */
.navbar.sticky-top { top: -100px; transition: .5s; } /* Animación al hacer scroll */

/* Estilo Llamativo Navbar (Rojo y Negro) */
.navbar-nav .nav-link {
    position: relative; color: #000000 !important; font-weight: 600; text-transform: uppercase;
    padding: 25px 1rem; margin-right: 15px; font-size: 15px;
    transition: all 0.3s ease; transform: scale(1.0); outline: none;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--danger) !important; transform: scale(1.1);
}
.navbar-nav .nav-link::after { /* Barrita inferior */
    content: ''; position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background-color: var(--danger); transition: width 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: 70%; }

/* Dropdowns */
.dropdown-menu {
    border: 2px solid var(--danger); background-color: #f9f9f9; min-width: 200px;
    right: 0; left: auto;
}
.dropdown-item { white-space: normal; }
.dropdown-item:hover { background-color: var(--danger); color: #ffffff !important; }
@media (min-width: 992px) { /* Animación dropdown escritorio */
    .navbar .nav-item .dropdown-menu {
        display: block; border: none; margin-top: 0; top: 150%;
        opacity: 0; visibility: hidden; transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu { top: 100%; visibility: visible; opacity: 1; }
}
@media (max-width: 991.98px) { /* Navbar móvil */
    .navbar .navbar-nav .nav-link { margin-right: 0; padding: 10px 0; }
    .navbar .navbar-nav { border-top: 1px solid #EEEEEE; }
}


/* --- Carrusel Principal (Header) --- */
.header-carousel .owl-carousel-text { /* Texto sobre imágenes */
    position: absolute; width: 100%; height: 100%; padding: 3rem; top: 0; left: 0;
    display: flex; align-items: center; justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}
.header-carousel .owl-dots { /* Puntos indicadores */
    position: absolute; height: 45px; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center;
}
.header-carousel .owl-dot { /* Cada punto */
    position: relative; display: inline-block; margin: 0 5px; width: 15px; height: 15px;
    background: transparent; border: 1px solid #FFFFFF; border-radius: 15px; transition: .5s;
}
.header-carousel .owl-dot::after { /* Centro del punto */
    position: absolute; content: ""; width: 5px; height: 5px; top: 4px; left: 4px;
    background: #FFFFFF; border-radius: 5px;
}
.header-carousel .owl-dot.active { background: var(--primary); border-color: var(--primary); }

/* --- Sección "Feature" (Datos - imagen a la derecha) --- */
@media (min-width: 992px) {
    .container.feature { max-width: 100% !important; }
    .feature-text { padding-left: calc(((100% - 960px) / 2) + .75rem); }
}
@media (min-width: 1200px) { .feature-text { padding-left: calc(((100% - 1140px) / 2) + .75rem); } }
@media (min-width: 1400px) { .feature-text { padding-left: calc(((100% - 1320px) / 2) + .75rem); } }

/* --- Carrusel Tipos de Productos --- */
#tipos-productos .team-item {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden;
    background-color: #fff; margin-bottom: 1.5rem; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Asegura altura consistente si están en fila */
}
#tipos-productos .team-item:hover {
    transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
#tipos-productos .team-item img {
    height: 280px; /* ALTURA CORREGIDA */
    object-fit: cover; width: 100%;
}
#tipos-productos .team-text { background-color: #f8f9fa !important; padding: 1.5rem; }
#tipos-productos .team-text h5 { color: #333 !important; font-weight: 700; }
#tipos-productos .team-text p {
    color: #ff0000 !important; line-height: 1.5; margin-bottom: 1rem; font-size: 0.9rem;
    white-space: normal !important; word-wrap: break-word; /* Para texto placeholder */
}
#tipos-productos .team-text .btn { font-weight: 600; }

/* --- Sección Marcas --- */
#marcas-logos .service-item { transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eee; border-radius: .25rem; }
#marcas-logos .service-item:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
#marcas-logos .service-item img { max-width: 200px; height: auto; margin-bottom: 1.5rem; }
#marcas-logos a { text-decoration: none; color: inherit; }


/* --- Carrusel Reconocimientos (Testimonios) --- */
/* Efectos de desvanecido */
.testimonial-carousel::before, .testimonial-carousel::after {
    position: absolute; content: ""; top: 0; height: 100%; width: 0; z-index: 3;
}
.testimonial-carousel::before { left: 0; background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); }
.testimonial-carousel::after { right: 0; background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); }
@media (min-width: 768px) { .testimonial-carousel::before, .testimonial-carousel::after { width: 200px; } }
@media (min-width: 992px) { .testimonial-carousel::before, .testimonial-carousel::after { width: 300px; } }

/* Estilos de los items */
.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light); /* Fondo claro por defecto */
    transform: scale(.8); transition: .5s;
    position: relative; /* CONTEXTO DE CAPAS */
    overflow: hidden; border: 1px solid #eee;
    padding: 1.5rem; border-radius: .25rem;
}
/* Ícono de comillas (capa 1) */
.testimonial-carousel .owl-item .testimonial-text::before {
    content: '\f10e'; font-family: 'Font Awesome 5 Free'; font-weight: 900;
    position: absolute; font-size: 80px; color: rgba(0, 0, 0, 0.05);
    top: 10px; right: 15px; z-index: 1; line-height: 1;
}
/* Texto (capa 2): MÁS GRANDE y NEGRO */
.testimonial-carousel .owl-item .testimonial-text p,
.testimonial-carousel .owl-item .testimonial-text h5,
.testimonial-carousel .owl-item .testimonial-text span {
    position: relative; z-index: 2;
    color: var(--primary) !important; /* Texto negro */
    font-size: 1.15rem; /* Más grande */
    line-height: 1.6; /* Mejor espaciado */
}

/* Item Central (sin fondo negro) */
.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
    box-shadow: 0 .5rem 1.5rem rgba(255, 255, 255, 0.1); /* Sombra añadida al central */
}
/* Imagen del testimonio */
.testimonial-item img {
    border: 5px solid #fff; box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    transition: .5s; /* Añadido para suavizar cambio de borde */
}

/* --- ESTILOS PARA FLECHAS DE NAVEGACIÓN (Restauradas y Estilizadas) --- */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex; /* Asegura que estén en los extremos */
    justify-content: space-between;
    padding: 0 15px; /* Pequeño padding para que no toquen los bordes */
    pointer-events: none; /* Permite clickear el contenido detrás */
    z-index: 5; /* Asegura que las flechas estén encima de todo */
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente oscuro */
    color: #fff; /* Color de las flechas blanco */
    border: none;
    font-size: 2rem; /* Tamaño de la flecha */
    width: 45px; /* Ancho del botón */
    height: 45px; /* Alto del botón */
    border-radius: 50%; /* Forma circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    pointer-events: auto; /* Permite clickear las flechas */
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--danger); /* Fondo rojo al pasar el mouse */
    color: #ffffff;
}

/* Ajustes para flechas en móvil */
@media (max-width: 768px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px; /* Más pequeñas */
        height: 35px;
        font-size: 1.5rem;
    }
}


/* --- Pie de Página --- */
.footer { background-color: var(--dark) !important; color: #adb5bd; }
.footer h5 { color: var(--light) !important; font-weight: bold; margin-bottom: 1.5rem; } /* Títulos del footer */
.footer .btn.btn-social { /* Botones redes sociales */
    margin-right: 5px; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center;
    color: #adb5bd; border: 1px solid #adb5bd; border-radius: 35px; transition: .3s;
}
.footer .btn.btn-social:hover { color: var(--light); border-color: var(--light); }
.footer .btn.btn-link { /* Enlaces rápidos */
    display: block; margin-bottom: 5px; padding: 0; text-align: left;
    color: #adb5bd; font-size: 15px; font-weight: normal; text-transform: capitalize; transition: .3s;
}
.footer .btn.btn-link::before { /* Flechita */
    position: relative; content: "\f105"; font-family: "Font Awesome 5 Free";
    font-weight: 900; margin-right: 10px;
}
.footer .btn.btn-link:hover { color: var(--light); letter-spacing: 1px; box-shadow: none; }
.footer .copyright { padding: 25px 0; font-size: 15px; border-top: 1px solid rgba(256, 256, 256, .1); }
.footer .copyright a { color: var(--light); }
.footer .copyright a:hover { color: var(--danger); } /* Rojo al hover */

/* --- Contenedor del Video Inicial --- */
.video-container {
    position: relative; width: 100%; height: 100vh; background: #000000; overflow: hidden;
}
.video-container video {
    width: 100%; height: 100%; object-fit: cover; opacity: 0;
    animation: fadeInVideo 2.5s ease forwards;
}
@keyframes fadeInVideo { from { opacity: 0; filter: brightness(30%); } to { opacity: 1; filter: brightness(100%); } }

/* --- Ajustes Generales y Responsivos --- */
html, body { width: 100%; margin: 0; padding: 0; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

/* Línea debajo del título GIEM */
.linea { display: block; margin: 10px 0; border-bottom: 3px solid rgb(255, 255, 255); }
@media (max-width: 768px) { .linea { width: 80%; border-bottom-width: 2px; } }
@media (min-width: 769px) { .linea { width: 70%; } }

/* Formulario de atención en celular */
@media (max-width: 768px) { #atencion .bg-light { padding: 20px !important; } }
#atencion .bg-light h5 { word-break: break-word; }
#atencion .bg-light { overflow-x: hidden; } /* Evita scroll horizontal */

/* Títulos y textos en celular */
@media (max-width: 768px) {
    .titulo-giem { font-size: 80px !important; }
    h2.display-3 { font-size: 18px !important; }
    .texto-head { font-size: 350% !important; }
    h2[data-toggle="counter-up"] { font-size: 25px; }
    .border-start p { font-size: 19px; }
    /* Ajuste tamaño títulos de sección en móvil */
    .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
}

/* --- ESTILOS DECORATIVOS (Opcionales, si se usan) --- */
/* Barrita centrada */
.divisor-barrita { position: relative; display: inline-block; padding-bottom: 15px; }
.divisor-barrita::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 5px; background-color: var(--danger); border-radius: 5px;
}
/* Barra gruesa con degradado */
.divisor-grueso-degradado {
    width: 80%; height: 10px; background: linear-gradient(90deg, #333333, var(--danger), #333333);
    border: none; margin: 50px auto; border-radius: 5px;
}

/* --- Estilos para Botones Decorativos (si se usan) --- */
/* Botón Volver con pulso */
.btn-volver { transition: all 0.2s ease-in-out; }
.btn-volver:hover {
    background-color: #cc0000 !important; border-color: #cc0000 !important;
    animation: pulse 0.5s infinite alternate;
}
@keyframes pulse { from { transform: scale(1); } to { transform: scale(1.03); } }

/* Botón Regresar a Index (estilo píldora) */
.link-regresar-index {
    display: inline-block; padding: 0.6rem 1.2rem; background-color: #d9534f; color: #00ff2a !important;
    text-decoration: none !important; border-radius: 50px; font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); transition: all 0.3s ease; margin-bottom: 1.5rem;
}
.link-regresar-index:hover {
    background-color: #c9302c; color: #ffffff !important; transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.link-regresar-index i { margin-right: 8px; }

/* --- NUEVA CLASE PARA FONDO UNIFICADO DE TARJETAS --- */
.info-card-background {
    background-color: #ffffff !important; /* Blanco por defecto - CAMBIA ESTE COLOR A TU GUSTO */
    /* Puedes añadir otros estilos aquí si quieres que todas las tarjetas los compartan */
}

/* --- ESTILO PARA BOTÓN LLAMATIVO (NEGRO Y ROJO) --- */
.btn-llamativo {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important; /* Letras blancas */
    background-color: #000000; /* Fondo negro */
    border: 2px solid #000000;
    border-radius: 50px; /* Bordes redondeados */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0, 0.2);
    line-height: 1.5; /* Asegura alineación vertical */
}

.btn-llamativo:hover {
    background-color: #ff0000; /* Fondo rojo al pasar */
    border-color: #ff0000;
    color: #ffffff !important; /* Letras blancas */
    transform: translateY(-3px) scale(1.05); /* Se levanta y crece */
    box-shadow: 0 8px 15px rgba(255, 0, 0, 0.3); /* Sombra roja */
}

.btn-llamativo .bi {
    margin-right: 8px;
    vertical-align: middle; /* Alinea el ícono con el texto */
    transform: translateY(-1px);
}

        .catalogo-pill {
            background-color: #000000 !important; /* Fondo negro */
            color: #ffffff !important;           /* Texto blanco */
            border: none !important;             /* Quita el borde por defecto */
            font-weight: 600;
            padding: 0.5rem 1rem !important; /* Ajusta el padding para que se vea bien */
        }

/* --- Importación de Fuentes (Opcional pero recomendado) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Lato:wght@400;700&display=swap');

/* --- Estilos para el bloque GIEM --- */

.giem-hero-block {
    /* FONDO NEGRO */
    background: #ff0000; 
    
    /* Fuentes profesionales */
    font-family: 'Lato', sans-serif;
    
    /* Añadimos perspectiva para un efecto 3D sutil al pasar el ratón */
    perspective: 1000px;
    
    /* Importante para que los efectos no se salgan */
    overflow: hidden; 
    
    /* Transición suave para todo el bloque */
    transition: all 0.3s ease;
}

/* --- Título Principal: GIEM --- */
.giem-hero-block .titulo-giem {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; /* Extra-bold */
    letter-spacing: 2px; /* Espaciado de letras profesional */
    
    /* Sombra blanca sutil para darle profundidad */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    
    /* Transición para el efecto de hover */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Subtítulo (El eslabón...) --- */
.giem-hero-block h3 {
    font-weight: 500;
    transition: transform 0.4s ease;
}

/* --- Línea Divisoria (El acento ROJO) --- */
.giem-hero-block .linea {
    width: 60%;         /* Ancho inicial (como lo tenías) */
    height: 4px;        /* Grosor de la línea */
    
    /* COLOR ROJO */
    background-color: #ffffff; /* Un rojo profesional y vibrante */
    
    border: none;       /* Quitamos cualquier borde */
    border-radius: 2px; /* Puntas redondeadas */
    margin: 25px auto;  /* Espaciado (como lo tenías) */
    
    /* Transición para el efecto de "crecimiento" */
    transition: width 0.4s ease-in-out;
}

/* --- Texto secundario (Solución en la...) --- */
.giem-hero-block h2 {
    font-weight: 400; /* Más ligero */
    transition: transform 0.4s ease;
}


/* =========================================
   INTERACTIVIDAD (Efectos :hover) 
=========================================
*/

/* Al pasar el ratón sobre CUALQUIER PARTE del bloque... */

    /* El fondo se oscurece un poco más (si no es negro puro) */
    /* background: #050505; */ 
    
    /* Opcional: El bloque se "levanta" ligeramente */
    /* box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2); */


/* ...el TÍTULO "GIEM" reacciona */
.giem-hero-block:hover .titulo-giem {
    /* CAMBIA A ROJO */
    color: #e74c3c;
    
    /* Efecto de "brillo" rojo */
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    
    /* Se "acerca" ligeramente */
    transform: scale(1.05);
}

/* ...la LÍNEA ROJA reacciona */
.giem-hero-block:hover .linea {
    /* La línea se hace más ancha */
    width: 80%; 
}

/* ...los SUBTÍTULOS reaccionan */
.giem-hero-block:hover h3,
.giem-hero-block:hover h2 {
    /* Se "acercan" muy sutilmente */
    transform: scale(1.02);
}

/* Aseguramos que el 'a' (enlace) no ponga 
  subrayados azules o cambie el color del texto.
*/
.row .col-lg-4 a,
.row .col-md-4 a {
    text-decoration: none; /* Sin subrayado */
    color: inherit; /* Hereda el color de texto (usualmente negro) */
}


/* Estilo del botón (ROJO y BLANCO)
  Usamos un <span> para que sea HTML válido dentro del <a>
*/
.btn-giem-rojo {
    display: inline-block; /* Para que acepte padding/margin */
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    background-color: #e74c3c; /* Color ROJO */
    color: #ffffff; /* Color BLANCO */
    
    border-radius: 4px; /* Bordes redondeados */
    margin-top: 10px; /* Separación del párrafo */
    
    /* Transición suave para el hover */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Preparamos la tarjeta 'service-item' para el hover
*/
.service-item {
    /* Transición suave para el borde */
    transition: border-color 0.3s ease;
    /* Añadimos un borde transparente para evitar que la tarjeta "brinque" 
      al añadir el borde de color en el hover.
    */
    border: 2px solid transparent; 
}


/* --- EFECTO HOVER (Interactividad) ---
  Al pasar el ratón sobre el *enlace*...
*/

.col-lg-4 a:hover .service-item,
.col-md-4 a:hover .service-item {
    /* ...el borde de la tarjeta se vuelve ROJO */
    border-color: #e74c3c;
}

.col-lg-4 a:hover .btn-giem-rojo,
.col-md-4 a:hover .btn-giem-rojo {
    /* ...el botón se vuelve NEGRO */
    background-color: #000000;
    
    /* Efecto sutil de "crecimiento" */
    transform: scale(1.03); 
}

/* --- ESTILOS PARA LA TARJETA 3D FLIP --- */

.flip-card-container {
    background-color: transparent;
    width: 100%;
    
    /* LA MAGIA ESTÁ AQUÍ:
      Forzamos la tarjeta a ser cuadrada (1:1).
      Eliminamos 'min-height: 260px'.
    */
    aspect-ratio: 1 / 1; 
    
    perspective: 1000px;
    color: #333;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%; /* Ahora 100% se refiere al aspect-ratio */
    /* Eliminamos 'min-height: 260px' */
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.flip-card-front {
    background-color: #ffffff;
    display: flex;
    flex-direction: column; /* Para centrar verticalmente */
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
}

.flip-card-back {
    background-color: #000000;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Esta regla (cover) RECORTARÁ los lados del video 16:9
  para rellenar el nuevo contenedor cuadrado 1:1.
*/
.flip-card-back .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    opacity: 0.6;
}

/* Overlay para el botón de Play */
.flip-card-back .play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.flip-card-back .play-icon-overlay i {
    font-size: 5rem;
    color: #e74c3c; /* ROJO */
    text-shadow: 0 0 20px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
}

/* Interactividad */
.flip-card-container:hover .flip-card-back .play-icon-overlay i {
    color: #ffffff; /* BLANCO */
    transform: scale(1.1);
}

/* CSS para la transición suave de Imagen a Video
*/

/* 1. El contenedor (el div que tiene 'position-relative')
*/
.media-hover-wrapper {
    cursor: pointer; /* Cambia el cursor para indicar interactividad */
    overflow: hidden; /* Asegura que nada se salga */
    border-radius: 8px; /* Opcional: suaviza los bordes */
}

/* 2. La imagen (visible por defecto)
*/
.media-hover-wrapper img {
    opacity: 1; /* Visible */
    transition: opacity 0.5s ease-in-out;
    z-index: 5;
    position: relative; /* Para que z-index funcione bien */
}

/* 3. El video (oculto por defecto)
*/
.media-hover-wrapper .media-hover-video {
    opacity: 0; /* Oculto */
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

/* 4. LA MAGIA (Al pasar el ratón)
*/

/* Oculta la imagen */
.media-hover-wrapper:hover img {
    opacity: 0;
}

/* Muestra el video */
.media-hover-wrapper:hover .media-hover-video {
    opacity: 1;
    z-index: 6; /* Se pone encima de la imagen que se desvanece */
}

/* 5. (Opcional) La 'pista' o ícono
*/
.media-hover-hint {
    position: absolute;
    z-index: 7; /* Encima de todo */
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo NEGRO traslúcido */
    color: #ffffff; /* Texto BLANCO */
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    /* Transición para que también se desvanezca */
    transition: opacity 0.4s ease;
}
.media-hover-hint i {
    margin-right: 5px;
}

/* Oculta la 'pista' cuando ya estás sobre el elemento */
.media-hover-wrapper:hover .media-hover-hint {
    opacity: 0;
}

/* --- Estilos para las Pestañas de Video --- */

/* 1. Estilos para los "botones" (service-item)
*/
.video-tab-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent; /* Borde transparente para evitar "brincos" */
}

/* 2. Estilo al pasar el ratón (Hover)
*/
.video-tab-trigger:not(.active):hover {
    transform: translateY(-5px); /* Se levanta un poco */
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* 3. Estilo ACTIVO (el recuadro seleccionado)
   ¡Usamos el ROJO!
*/
.video-tab-trigger.active {
    border-color: #e74c3c; /* Borde ROJO */
    box-shadow: 0 5px 25px rgba(231, 76, 60, 0.2); /* Sombra ROJA */
    transform: translateY(-2px);
}

/* 4. Contenedor del reproductor de video
*/
.video-player-container {
    position: relative;
    width: 100%;
    /* Define una proporción 16:9 para el video */
    aspect-ratio: 16 / 9; 
    margin-top: 2rem; /* Espacio entre los botones y el video */
    background-color: #000000; /* Fondo NEGRO */
    border-radius: 8px;
    overflow: hidden; /* Muy importante */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 5. Estilo de CADA video
*/
.video-tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Transición de fundido */
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
}

/* 6. Estilo del video ACTIVO (el que se está mostrando)
*/
.video-tab-pane.active {
    opacity: 1;
    z-index: 10;
}

/* --- Estilo para Tarjeta de Servicio con Video --- */

/* 1. La tarjeta contenedora (el .service-item)
*/
.service-item-video-card {
    /* Forzamos el contenido a apilarse verticalmente */
    display: flex;
    flex-direction: column;
    
    /* Importante: para que el video respete los bordes redondeados */
    overflow: hidden; 
    
    /* Sombra sutil para un efecto "lift" */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    
    /* Quitamos el padding de la tarjeta principal */
    padding: 0; 
}

/* Efecto hover para toda la tarjeta */
.service-item-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* 2. El contenedor del video (la parte de arriba)
*/
.video-card-media {
    width: 100%;
    /* Define una proporción para el video. 
      Prueba con 4/3 o 1/1 (cuadrado) si prefieres.
    */
    aspect-ratio: 4 / 3;
    background-color: #000; /* Fondo negro por si el video tarda en cargar */
}

.video-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Rellena el espacio sin deformarse */
}

/* 3. El contenido del texto (la parte de abajo)
*/
.video-card-content {
    /* Esto asegura que el texto ocupe el espacio restante */
    flex-grow: 1; 
    
    /* Centra el contenido (icono + texto) verticalmente.
      Esto es útil si una tarjeta es más alta que otra 
      debido a la clase 'h-100'.
    */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* --- Estilos para la Sección de Noticias y Eventos --- */

/* 1. Badge de Fecha para Eventos (¡Usamos el ROJO!)
*/
.event-date-badge {
    display: inline-block;
    background-color: #e74c3c; /* ROJO */
    color: #ffffff; /* BLANCO */
    padding: 8px 18px;
    border-radius: 50px; /* Forma de píldora */
    font-weight: 700;
    font-size: 0.9rem;
    
    /* Sombra roja sutil para que "brille" */
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.event-date-badge i {
    margin-right: 8px;
}

/* 2. Estilo y Hover de las tarjetas
*/
.testimonial-item .testimonial-text {
    border: 2px solid transparent; /* Borde inicial */
    transition: all 0.3s ease;
}

/* Al pasar el ratón, el borde se vuelve ROJO */
.testimonial-item:hover .testimonial-text {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-color: #e74c3c; /* Borde ROJO */
}

.testimonial-item:hover img {
     transform: scale(1.05);
     box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.testimonial-item img {
    transition: all 0.3s ease;
}


/* 3. Estilo de los puntos del carrusel (Owl Carousel)
   Haremos que el punto activo sea ROJO
*/
.testimonial-carousel .owl-dots {
    margin-top: 25px; /* Espacio para los puntos */
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #e0e0e0; /* Gris claro */
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.testimonial-carousel .owl-dot.active {
    background: #e74c3c; /* ROJO */
}

/* --- 1. La Caja de Propuesta de Valor --- */

.giem-highlight-box {
    background: #111111; /* Fondo NEGRO (o un gris muy oscuro) */
    color: #ffffff; /* Texto BLANCO */
    padding: 3rem 2rem; /* Espaciado interno generoso */
    border-radius: 12px;
    /* Sombra sutil para darle profundidad */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* 2. Los Iconos (fa-chart-line, fa-shield-alt)
*/
.highlight-icon {
    font-size: 3.5rem;
    color: #e74c3c; /* Color ROJO */
    margin-bottom: 1rem;
    line-height: 1;
}

.giem-highlight-box h3 {
    color: #ffffff; /* Asegura que el H3 sea blanco */
    font-weight: 700;
}

.giem-highlight-box p {
    color: #cccccc; /* Un gris claro para el texto secundario */
}

/* 3. El Divisor Vertical 
*/
.highlight-divider {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    height: 100px;
    margin: auto; /* Centra el divisor */
}

/* --- 4. El Botón CTA (Llamativo) --- */

.btn-giem-cta {
    background-color: #e74c3c; /* Fondo ROJO */
    color: #ffffff; /* Texto BLANCO */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Sombra roja para efecto "brillante" */
    box-shadow: 0 5px 25px rgba(231, 76, 60, 0.5);
    
    transition: all 0.3s ease;
    
    /* ¡LA ANIMACIÓN! */
    animation: pulse-red 2s infinite;
}

.btn-giem-cta:hover {
    background-color: #000000; /* Fondo NEGRO al pasar el ratón */
    color: #ffffff;
    /* Detiene la animación y levanta el botón */
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 5. Keyframes para la animación de pulso
*/
@keyframes pulse-red {
    0% {
        box-shadow: 0 5px 25px rgba(231, 76, 60, 0.5);
    }
    50% {
        box-shadow: 0 5px 35px rgba(231, 76, 60, 0.8);
    }
    100% {
        box-shadow: 0 5px 25px rgba(231, 76, 60, 0.5);
    }
}

/* 6. En móvil, oculta el divisor 
*/
@media (max-width: 768px) {
    .highlight-divider {
        display: none;
    }
    
    /* Rota las columnas en móvil para añadir espacio */
    .giem-highlight-box .col-md-5:first-child {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* --- ESTILOS PARA BOTÓN DE DESCARGA (NUEVO) --- */
.btn-descargar {
    background-color: #ff0000; /* Color rojo primario */
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px; /* Estilo de píldora */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem; /* Espacio extra */
}
.btn-descargar:hover {
    background-color: #cc0000; /* Rojo más oscuro */
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}
.btn-descargar i {
    margin-right: 8px;
}

/* Estilos para las nuevas tarjetas de producto
*/

.product-card {
    /* 1. Añade una transición suave para todos los cambios */
    transition: all 0.3s ease;
}

.product-card:hover {
    /* 2. Levanta la tarjeta ligeramente al pasar el mouse */
    transform: translateY(-8px);
    
    /* 3. Aumenta la sombra para dar un efecto "pop" (efecto de "shadow-lg" de Bootstrap) */
    box-shadow: 0 0.5rem 1rem rgba(255, 225, 1, 0.15) !important;
}

/* Opcional: Asegura que el texto del enlace no cambie de color
   si envuelves la tarjeta en otro enlace */
.product-card a {
    text-decoration: none;
}

/* Variables para la paleta de color (Gris, Blanco y Rojo) */
:root {
    --color-fondo-principal: #262626; /* Gris oscuro elegante (Menos negro) */
    --color-texto-principal: #ffffff; /* Blanco puro para máxima legibilidad */
    --color-acento-rojo: #cc0000; /* Rojo vibrante, usado con moderación para énfasis */
    --color-fondo-secundario: #3d3d3d; /* Un gris aún más oscuro para el video/detalles */
}

/* 1. Estilos del Contenedor Principal (Bordes redondeados de nuevo) */
.header-saneamiento {
    background: var(--color-fondo-principal);
    color: var(--color-texto-principal);
    padding: 80px 20px !important;
    border-radius: 15px; /* <-- Bordes redondeados de vuelta */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, var(--color-fondo-principal) 0%, var(--color-fondo-secundario) 100%);
}

/* 2. Animación de "Pulso Rojo" en el fondo (Visibles) */
.header-saneamiento::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px; 
    height: 150px;
    background: var(--color-acento-rojo); 
    border-radius: 50%; 
    opacity: 0.15; 
    animation: flotar 20s infinite ease-in-out;
    z-index: 0;
    filter: blur(20px); 
}

@keyframes flotar {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(calc(100vw - 150px), calc(100% + 50px)) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* 3. Estilos de Títulos */
.subtitulo-odapas {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 500;
    color: var(--color-texto-principal); /* Blanco */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px !important;
    text-shadow: 1px 1px 3px rgba(231, 231, 231, 0.5);
}

.titulo-principal {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-texto-principal);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.888);
    margin-bottom: 30px !important;
    animation: aparecer 2s forwards;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 4. Estilos de la Línea Separadora (Roja) */
.linea {
    width: 80px;
    height: 3px;
    background-color: var(--color-acento-rojo); 
    margin-bottom: 25px;
    border-radius: 1px;
    transform: scaleX(0);
    animation: expandirLinea 1.5s forwards 0.5s;
}

@keyframes expandirLinea {
    to { transform: scaleX(1); }
}

/* 5. Estilos del Contenedor de Video */
.contenedor-video {
    margin-top: 40px;
    padding: 0; /* CAMBIO CLAVE: Quitamos el relleno interno */
    width: fit-content; /* CAMBIO CLAVE: El contenedor se ajusta al ancho del video */
    background: var(--color-fondo-secundario);
    border-radius: 12px; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: all 0.4s ease-in-out;
    overflow: hidden; /* Asegura que el video respete los bordes redondeados del contenedor */
    margin-left: auto; /* Opcional: Para centrarlo si es necesario */
    margin-right: auto; /* Opcional: Para centrarlo si es necesario */
}

/* Efecto hover: Pulso de acento rojo fuerte en el video */
.contenedor-video:hover {
    transform: scale(1.0);
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.7); 
}

/* Estilo para el elemento <video> */
.contenedor-video video {
    border: none;
    border-radius: 12px; /* Ajustado para coincidir con el contenedor padre ahora que están pegados */
    outline: 2px solid transparent;
    transition: outline 0.4s ease-in-out;
    display: block; /* Vital: Elimina la línea blanca pequeña que suele aparecer debajo de los videos */
    max-width: 100%; /* Asegura que no se salga */
}

.contenedor-video:hover video {
    outline: 2px solid var(--color-acento-rojo);
}

/* Media Query para responsividad en móviles */
@media (max-width: 768px) {
    .header-saneamiento {
        padding: 50px 15px !important;
    }
    .titulo-principal {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
}

/* --- Flip Card Container (Aumentado de altura) --- */
.flip-card-container {
    background-color: transparent;
    height: 460px; /* CAMBIO: De 320px a 420px para más espacio vertical */
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgb(0, 0, 0); /* Sombra elegante */
    border-radius: 12px; /* Bordes un poco más redondeados */
}

.flip-card-container:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* --- Frente y Reverso --- */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

/* --- Estilo del Frente --- */
.flip-card-front {
    background-color: var(--color-blanco);
    color: var(--color-negro);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrado vertical */
    align-items: center;
    padding: 2rem 1.5rem; /* Ajuste de márgenes internos */
    border-top: 6px solid var(--color-rojo); /* Línea roja superior más marcada */
}

.feature-item .icon {
    font-size: 4rem; /* Ícono ligeramente más grande */
    color: var(--color-rojo);
    margin-bottom: 2rem; /* Más separación entre ícono y título */
    transition: transform 0.3s ease;
}

.flip-card-container:hover .feature-item .icon {
    transform: scale(1.1);
}

.feature-item h5 {
    font-weight: 800; /* Letra más gruesa para títulos */
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    color: var(--color-negro);
    text-transform: uppercase; /* Opcional: Títulos en mayúscula para más autoridad */
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Estilo del Reverso (Video) --- */
.flip-card-back {
    background-color: var(--color-negro);
    transform: rotateY(180deg);
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Un poco más oscuro para que resalte el icono de play */
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    color: var(--color-blanco);
    opacity: 0.9;
}

/* ------------------------------------------------ */
/* Estilos de la Tarjeta (Flip Card) - CORRECCIÓN DE POSICIÓN DEL ICONO */
/* ------------------------------------------------ */

/* ... (Otros estilos de la tarjeta que se mantienen igual) ... */

.flip-card-front {
    /* Mantenemos flexbox para centrar el contenido, pero ajustamos cómo distribuye el espacio */
    background-color: #FFFFFF; 
    color: #212529; 
    border: 3px solid #C00000; 
    box-sizing: border-box;
    flex-direction: column;
    /* Cambio clave: justify-content: flex-start; Mueve el contenido hacia arriba */
    justify-content: flex-start; /* Alinea los elementos (icono, título, párrafo) en la parte superior */
    padding-top: 50px; /* Incrementamos el padding superior para dar espacio desde el borde */
}

.feature-item h5 {
    color: #C00000; 
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Icono en Rojo y con Estilo */
.feature-item .icon {
    font-size: 3.5rem;
    color: #C00000; 
    border: 3px solid #C00000;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    /* Importante para centrar el icono dentro de su propio círculo */
    display: flex;
    align-items: center; /* Centrado vertical del icono */
    justify-content: center; /* Centrado horizontal del icono */
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* El resto del CSS sigue igual... */

/* --- CAJA DESTACADA GIEM (Dark Premium Style) --- */

.giem-highlight-box {
    /* Fondo Negro degradado sutil para dar volumen */
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    
    /* Sombra profunda para que "flote" */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    
    /* Borde sutil gris oscuro + Borde inferior ROJO marca */
    border: 1px solid #333;
    border-bottom: 4px solid #C00000;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.giem-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(192, 0, 0, 0.15); /* Resplandor rojo muy sutil al flotar */
}

/* --- ÍCONOS --- */
.highlight-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Fondo rojo semitransparente */
    background: rgba(192, 0, 0, 0.1);
    border: 1px solid rgba(192, 0, 0, 0.3);
    
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-icon-wrapper i {
    font-size: 2.5rem;
    color: #C00000; /* Ícono Rojo Puro */
    transition: color 0.3s ease;
}

/* Efecto Hover en los items individuales */
.highlight-item:hover .highlight-icon-wrapper {
    background: #C00000; /* El fondo se vuelve rojo sólido */
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(192, 0, 0, 0.6);
}

.highlight-item:hover .highlight-icon-wrapper i {
    color: #FFFFFF; /* El ícono se vuelve blanco */
}

/* --- TIPOGRAFÍA --- */
.giem-highlight-box h3 {
    font-size: 2rem;
    letter-spacing: -0.5px;
}

.ls-1 {
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- DIVISOR CENTRAL --- */
.highlight-divider {
    width: 1px;
    height: 100px;
    /* Degradado para que se desvanezca en las puntas */
    background: linear-gradient(to bottom, transparent, #444, transparent);
    position: relative;
}

/* Punto rojo decorativo en el centro del divisor */
.highlight-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #C00000;
    border-radius: 50%;
    box-shadow: 0 0 10px #C00000;
}

/* --- DECORACIÓN DE FONDO (Círculo abstracto) --- */
.bg-decoration-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192,0,0,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.z-index-1 {
    z-index: 1; /* Asegura que el texto esté sobre la decoración */
}

/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 767.98px) {
    .highlight-divider {
        width: 80%; /* Cambia a horizontal */
        height: 1px;
        background: linear-gradient(to right, transparent, #444, transparent);
        margin: 2rem 0;
    }
    
    .giem-highlight-box {
        padding: 2rem 1rem;
    }
    
    .giem-highlight-box h3 {
        font-size: 1.75rem;
    }
}

/* --- SECCIÓN NOSOTROS: ESTILO KLAVE PRO --- */

/* Espaciado general */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Tipografía de alto impacto */
.fw-black {
    font-weight: 900 !important; /* Letra muy gruesa para títulos */
}

.ls-2 {
    letter-spacing: 2px; /* Espaciado elegante en subtítulos */
}

/* --- COMPOSICIÓN DE IMÁGENES --- */
.about-img-wrapper {
    position: relative;
    padding-right: 20px; /* Espacio para el efecto de capa */
    padding-bottom: 20px;
}

/* Elemento decorativo rojo detrás */
.about-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background-color: rgba(204, 0, 0, 0.05); /* Rojo muy sutil */
    border-radius: 20px;
    z-index: 0;
}

.about-img-1 {
    width: 85%; /* Ajuste de tamaño */
    position: relative;
    z-index: 1;
    border-bottom: 5px solid #cc0000; /* Detalle rojo */
}

/* Imagen flotante superpuesta */
.about-img-2-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 2;
    /* Animación de entrada suave */
    transition: transform 0.5s ease;
}

/* Efecto hover sutil en las imágenes */
.about-img-wrapper:hover .about-img-2-container {
    transform: translateY(-10px);
}

/* Badge flotante (4M+ Medidores) */
.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background-color: #cc0000; /* Rojo Corporativo */
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
    text-align: center;
    z-index: 3;
}

/* --- BOTÓN PERSONALIZADO KLAVE --- */
.btn-klave-dark {
    background-color: #111111; /* Negro puro */
    color: #ffffff;
    font-weight: 700;
    border: 2px solid #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-klave-dark:hover {
    background-color: #cc0000; /* Cambia a rojo al pasar el mouse */
    border-color: #cc0000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(204, 0, 0, 0.3);
}

/* --- CHECKLIST (Íconos de lista) --- */
.btn-sm-square {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajustes Responsivos */
@media (max-width: 991.98px) {
    .about-img-wrapper {
        margin-bottom: 3rem;
    }
    .experience-badge {
        left: 10px; /* Ajuste para móviles */
        bottom: 10px;
        padding: 10px 15px;
    }
    .experience-badge h2 {
        font-size: 1.5rem;
    }
}

/* --- ESTILO DARK PREMIUM & BIG DATA --- */

/* Fondo Principal */
.bg-black-premium {
    background-color: #050505; /* Negro casi puro */
    position: relative;
}

/* Decoración de fondo (Líneas tecnológicas) */
.tech-lines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; /* Cuadrícula sutil */
    z-index: 0;
    pointer-events: none;
}

.z-index-1 { z-index: 1; }

/* Línea decorativa roja */
.line-red {
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #cc0000;
}

.text-gray-300 { color: #d1d1d1; }
.ls-2 { letter-spacing: 2px; }

/* --- TARJETAS DE DATOS (Glassmorphism) --- */
.stat-card {
    background: rgba(255, 255, 255, 0.05); /* Fondo semitransparente */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #cc0000; /* Borde rojo al pasar el mouse */
}

.border-start-red {
    border-left: 4px solid #cc0000 !important;
}

.bg-glass {
    backdrop-filter: blur(5px);
}

/* Animación de pulso para la telemetría */
.pulse-animation {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { text-shadow: 0 0 0 rgba(204, 0, 0, 0.7); }
    70% { text-shadow: 0 0 10px rgba(204, 0, 0, 0); }
    100% { text-shadow: 0 0 0 rgba(204, 0, 0, 0); }
}

/* --- TARJETA DE CASO DE ÉXITO (Highlight) --- */
.bg-danger-gradient {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    border: 1px solid #ff3333;
}

.shadow-red {
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.3);
}

.success-case-card {
    transition: transform 0.3s ease;
}

.success-case-card:hover {
    transform: scale(1.02);
}

/* --- COLUMNA DERECHA (VIDEO) --- */
.overlay-gradient-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%; /* Degradado solo en el borde izquierdo para fundirse con el texto */
    height: 100%;
    background: linear-gradient(to right, #050505 0%, transparent 100%);
    z-index: 1;
}

/* Botón Play Estilizado */
.play-btn-circle {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.media-hover-hint:hover .play-btn-circle {
    transform: scale(1.1);
}

/* --- SECCIÓN PRODUCTOS: TARJETAS TECH --- */

.product-tech-card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sombra suave inicial */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

/* Efecto Hover: La tarjeta sube y la sombra crece */
.product-tech-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.15); /* Sombra roja suave al flotar */
}

/* Imagen del producto */
.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 250px; /* Altura fija para uniformidad */
    background-color: #f8f9fa;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen llene el espacio */
    transition: transform 0.5s ease;
}

.product-tech-card:hover .product-img-wrap img {
    transform: scale(1.1); /* Zoom suave en la imagen */
}

/* Cuerpo de la tarjeta */
.product-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

/* Ícono flotante entre imagen y texto */
.icon-badge {
    width: 50px;
    height: 50px;
    background-color: #cc0000; /* Rojo Corporativo */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
    border: 3px solid #ffffff;
}

/* Separador Rojo */
.separator-red {
    width: 40px;
    height: 3px;
    background-color: #cc0000;
    margin: 15px auto;
    border-radius: 2px;
}

/* Botón "Ver Especificaciones" */
.btn-outline-danger {
    color: #cc0000;
    border-color: #cc0000;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #cc0000;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

/* Ajuste de controles del carrusel */
.custom-carousel-btn {
    width: 5%; /* Reducir el ancho de la zona de clic */
}

@media (min-width: 992px) {
    /* En escritorio, mover las flechas hacia afuera para que no tapen los productos */
    .custom-carousel-btn.carousel-control-prev { left: -5%; }
    .custom-carousel-btn.carousel-control-next { right: -5%; }
}

/* --- ESTILO CARDS DE MARCAS --- */

.brand-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    
    /* Sombra suave inicial */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    
    /* Borde transparente para preparar la transición */
    border: 1px solid #f0f0f0;
    border-bottom: 4px solid transparent;
    
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Efecto Hover: Elevación + Borde Rojo Inferior */
.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: #cc0000; /* Rojo Corporativo */
}

.brand-logo-wrapper {
    height: 120px; /* Altura fija para logotipos */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 10px;
    background-color: #ffffff; /* Fondo blanco por si el jpg tiene fondo */
}

.brand-logo-wrapper img {
    max-height: 100%;
    max-width: 180px;
    transition: transform 0.3s ease;
    filter: grayscale(100%); /* Opcional: Logos en gris inicialmente */
    opacity: 0.7;
}

/* Al pasar el mouse, el logo recupera color y crece */
.brand-card:hover .brand-logo-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Botón dentro de la tarjeta */
.brand-card .btn-outline-danger {
    border-width: 2px;
    transition: all 0.3s ease;
}

.brand-card:hover .btn-outline-danger {
    background-color: #cc0000;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
}

/* Indicadores del carrusel (Puntitos) */
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    margin: 0 5px !important;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

/* --- TARJETAS CINEMÁTICAS DE SERVICIOS --- */

/* --- TARJETAS CINEMÁTICAS DE SERVICIOS (CORREGIDO) --- */

.service-cinematic-card {
    position: relative;
    height: 450px !important; /* Forzamos la altura */
    background-color: #000; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden; /* Importante para que el video no se salga */
    z-index: 1;
}

/* El Video de Fondo */
.card-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0; /* Al fondo */
}

/* Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.95) 100%);
    z-index: 1; /* Encima del video */
    pointer-events: none; /* Permite clicks a través */
}

/* Contenido */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2; /* Encima de todo */
    transform: translateY(0);
    transition: transform 0.4s ease;
}

/* Icono */
.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(204, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.card-desc {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    color: rgba(255, 255, 255, 0.8); /* Asegura color visible */
}

.hover-line {
    width: 0;
    height: 3px;
    margin-top: 15px;
    background-color: #cc0000; /* Asegura que sea rojo */
    transition: width 0.4s ease;
}

/* EFECTOS HOVER */
.service-cinematic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: rgba(204, 0, 0, 0.3);
}

.service-cinematic-card:hover .card-bg-video {
    transform: scale(1.1);
    opacity: 0.8;
}

.service-cinematic-card:hover .icon-wrapper {
    background-color: #cc0000;
    transform: scale(1.1);
}

.service-cinematic-card:hover .hover-line {
    width: 50px;
}

.service-cinematic-card:hover .card-desc {
    opacity: 1;
}

/* --- SECCIÓN CONTACTO "ARQUITECTÓNICA" --- */
.contact-premium-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* El Bloque Rojo (La Base) */
.red-architectural-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%; /* Ocupa casi la mitad izquierda */
    height: 100%;
    background: #cc0000; /* ROJO PURO */
    z-index: 0;
}

/* Decoración sutil en el rojo (Patrón de puntos) */
.red-architectural-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* Contenedor que eleva el contenido sobre el fondo */
.content-layer {
    position: relative;
    z-index: 2;
}

/* Panel de Texto Izquierdo (Sobre el rojo) */
.info-panel-left {
    color: #ffffff;
    padding-right: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vertical-line {
    width: 3px;
    height: 60px;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.info-panel-left h1 {
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.info-data-item {
    margin-top: 30px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 20px;
    transition: all 0.3s ease;
}

.info-data-item:hover {
    border-left: 3px solid #ffffff; /* Efecto interactivo */
    padding-left: 18px;
}

.info-data-item h6 {
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-data-item p {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* Tarjeta del Formulario (Blanca Flotante) */
.form-card-floating {
    background: #ffffff;
    padding: 60px;
    box-shadow: -30px 30px 60px rgba(0,0,0,0.2); /* Sombra dramática hacia la izquierda */
    position: relative;
}

/* Inputs Minimalistas (Solo líneas) */
.minimal-input-group {
    position: relative;
    margin-bottom: 40px; /* Espacio amplio */
}

.minimal-input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    border: none;
    border-bottom: 2px solid #e0e0e0; /* Línea gris */
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

/* Label flotante */
.minimal-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
    font-size: 16px;
}

/* Animación al escribir */
.minimal-input:focus ~ .minimal-label,
.minimal-input:valid ~ .minimal-label {
    top: -20px;
    font-size: 12px;
    color: #cc0000; /* El texto sube y se pone rojo */
    font-weight: 700;
}

.minimal-input:focus {
    border-bottom: 2px solid #cc0000; /* La línea se pone roja */
}

/* Botón Sobrio (Negro) */
.btn-black-solid {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-black-solid:hover {
    background-color: #cc0000; /* Cambio a Rojo */
    color: #ffffff;
    padding-left: 30px; /* Pequeño desplazamiento */
}

.btn-black-solid::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-black-solid:hover::after {
    opacity: 1;
    right: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .red-architectural-block { width: 100%; height: 400px; }
    .info-panel-left { padding: 50px 20px; padding-bottom: 0; }
    .form-card-floating { padding: 40px 25px; margin-top: -50px; margin-left: 15px; margin-right: 15px; }
}
/* --- SECCIÓN CONTACTO "MONOLITH" --- */
.contact-monolith-section {
    background-color: #0f0f0f; /* Fondo NEGRO casi puro */
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

/* Decoración de fondo (Líneas tecnológicas sutiles) */
.contact-monolith-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 11px
    );
    z-index: -1;
}

/* --- TEXTO IZQUIERDO (BLANCO SOBRE NEGRO) --- */
.monolith-info {
    padding-right: 40px;
}

.monolith-label {
    color: #cc0000; /* ROJO */
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.monolith-title {
    color: #ffffff; /* BLANCO */
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.monolith-desc {
    color: #a0a0a0; /* GRIS CLARO */
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 50px;
    border-left: 3px solid #cc0000; /* Línea roja decorativa */
    padding-left: 20px;
}

/* Iconos de contacto */
.monolith-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 15px;
    transition: 0.3s ease;
}

.monolith-contact-item:hover .icon-circle {
    background: #cc0000; /* Se enciende en ROJO al pasar mouse */
    transform: scale(1.1);
}

.contact-text h6 { margin: 0; color: #fff; font-weight: 600; }
.contact-text p { margin: 0; color: #999; font-size: 0.9rem; }


/* --- FORMULARIO (TARJETA BLANCA FLOTANTE) --- */
.form-card-white {
    background-color: #ffffff; /* BLANCO PURO */
    padding: 50px;
    border-radius: 4px; /* Bordes sutiles, look industrial */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Sombra fuerte */
    position: relative;
}

/* Inputs Estilizados */
.input-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.styled-input {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #000;
    border: none;
    border-bottom: 2px solid #e0e0e0; /* Línea gris */
    background: transparent;
    outline: none;
    transition: all 0.4s ease;
}

/* Efecto Focus: La línea cambia a ROJO */
.styled-input:focus {
    border-bottom: 2px solid #cc0000;
}

.styled-input::placeholder {
    color: #bbb;
    font-weight: 400;
    transition: 0.3s;
}

.styled-input:focus::placeholder {
    color: #cc0000; /* Placeholder se pone rojo sutilmente */
    opacity: 0.5;
}

/* Botón Rojo Sólido */
.btn-klave-red {
    background-color: #cc0000;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-klave-red:hover {
    background-color: #aa0000; /* Rojo más oscuro */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .monolith-info { padding-right: 0; margin-bottom: 50px; }
    .monolith-title { font-size: 2.5rem; }
    .form-card-white { padding: 30px 20px; }
}

/* --- SECCIÓN CONTACTO "MONOLITH" --- */
.contact-monolith-section {
    background-color: #0f0f0f; /* Fondo NEGRO casi puro */
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

/* Decoración de fondo (Líneas tecnológicas sutiles) */
.contact-monolith-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 11px
    );
    z-index: -1;
}

/* --- TEXTO IZQUIERDO (BLANCO SOBRE NEGRO) --- */
.monolith-info {
    padding-right: 40px;
}

.monolith-label {
    color: #cc0000; /* ROJO */
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.monolith-title {
    color: #ffffff; /* BLANCO */
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.monolith-desc {
    color: #a0a0a0; /* GRIS CLARO */
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 50px;
    border-left: 3px solid #cc0000; /* Línea roja decorativa */
    padding-left: 20px;
}

/* Iconos de contacto */
.monolith-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 15px;
    transition: 0.3s ease;
}

.monolith-contact-item:hover .icon-circle {
    background: #cc0000; /* Se enciende en ROJO al pasar mouse */
    transform: scale(1.1);
}

.contact-text h6 { margin: 0; color: #fff; font-weight: 600; }
.contact-text p { margin: 0; color: #999; font-size: 0.9rem; }


/* --- FORMULARIO (TARJETA BLANCA FLOTANTE) --- */
.form-card-white {
    background-color: #ffffff; /* BLANCO PURO */
    padding: 50px;
    border-radius: 4px; /* Bordes sutiles, look industrial */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); /* Sombra fuerte */
    position: relative;
}

/* Inputs Estilizados */
.input-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.styled-input {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #000;
    border: none;
    border-bottom: 2px solid #e0e0e0; /* Línea gris */
    background: transparent;
    outline: none;
    transition: all 0.4s ease;
}

/* Efecto Focus: La línea cambia a ROJO */
.styled-input:focus {
    border-bottom: 2px solid #cc0000;
}

.styled-input::placeholder {
    color: #bbb;
    font-weight: 400;
    transition: 0.3s;
}

.styled-input:focus::placeholder {
    color: #cc0000; /* Placeholder se pone rojo sutilmente */
    opacity: 0.5;
}

/* Botón Rojo Sólido */
.btn-klave-red {
    background-color: #cc0000;
    color: #ffffff;
    width: 100%;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

.btn-klave-red:hover {
    background-color: #aa0000; /* Rojo más oscuro */
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(204, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .monolith-info { padding-right: 0; margin-bottom: 50px; }
    .monolith-title { font-size: 2.5rem; }
    .form-card-white { padding: 30px 20px; }
}

/* --- SECCIÓN NOTICIAS Y EVENTOS (Estilo Editorial) --- */
.news-section {
    background-color: #ffffff;
    padding: 100px 0;
}

/* Estilo de la Tarjeta */
.news-card {
    background: #ffffff;
    border: 1px solid #f0f0f0; /* Borde muy sutil */
    border-radius: 8px;
    overflow: hidden; /* Para que la imagen no se salga al hacer zoom */
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%; /* Altura completa */
}

/* Efecto Hover en la tarjeta */
.news-card:hover {
    transform: translateY(-10px); /* Sube */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

/* Línea Roja Inferior (Aparece al hover) */
.news-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #cc0000; /* ROJO */
    transition: width 0.4s ease;
}

.news-card:hover::after {
    width: 100%; /* La línea roja se llena */
}

/* Contenedor de Imagen */
.news-img-box {
    position: relative;
    overflow: hidden;
    height: 240px; /* Altura fija para uniformidad */
}

.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la foto llene el cuadro */
    transition: transform 0.6s ease;
}

/* Zoom en la imagen al hover */
.news-card:hover .news-img-box img {
    transform: scale(1.1);
}

/* Badge de Fecha Flotante (ROJO) */
.date-badge-floating {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #cc0000; /* Fondo Rojo */
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.4);
    z-index: 2;
}

/* Contenido de texto */
.news-content {
    padding: 30px;
    background: #fff;
}

.news-category {
    color: #999;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: #cc0000; /* Título se pone rojo al hover */
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Enlace "Leer más" */
.news-link {
    color: #111;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.news-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #cc0000;
}

.news-link:hover {
    color: #cc0000;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* Ajustes del Owl Carousel para que las tarjetas no se corten */
.testimonial-carousel .owl-stage-outer {
    padding-top: 20px;
    padding-bottom: 50px; /* Espacio para la sombra hover */
}

/* --- FOOTER PREMIUM "MONOLITH" --- */
.footer-premium {
    background-color: #050505; /* Negro Profundo */
    color: #a0a0a0; /* Gris suave para texto secundario */
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #cc0000; /* Línea maestra ROJA */
}

/* Decoración de fondo (Textura sutil) */
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 70%);
    opacity: 0.8;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 2; /* Para estar encima del fondo */
}

/* Títulos de Sección */
.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Adorno rojo bajo el título */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #cc0000;
}

/* Enlaces con Efecto Deslizante */
.footer-link {
    color: #a0a0a0;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 10px; /* Se mueve a la derecha */
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: #cc0000;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

/* Datos de contacto */
.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-info i {
    color: #cc0000; /* Iconos rojos */
    background: rgba(255,255,255,0.05);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    transition: 0.3s ease;
}
.contact-info p:hover i {
    background: #cc0000;
    color: #fff;
}

/* Redes Sociales "Glass" */
.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
}

.social-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-3px);
    color: #fff;
}

/* Newsletter Input */
.newsletter-box {
    position: relative;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    padding: 10px 15px;
    outline: none;
}

.newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #cc0000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #fff;
    color: #cc0000;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    margin-top: 50px;
    font-size: 0.85rem;
}

.copyright-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* --- CATÁLOGO "TECH MINIMAL" --- */
.catalog-section {
    background-color: #fcfcfc; /* Casi blanco */
    padding: 100px 0;
}

/* Encabezado Simple */
.catalog-header-tag {
    color: #cc0000;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.catalog-title {
    color: #000;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* --- LA TARJETA TÉCNICA --- */
.tech-card {
    background: #fff;
    padding: 0; /* Sin padding interno para que la imagen toque bordes si quieres */
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 1px solid #eee; /* Solo una línea sutil abajo */
    height: 100%;
    overflow: hidden;
}

/* Efecto Hover: Elevación y línea roja */
.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Línea roja progresiva */
.tech-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #cc0000; /* ROJO KLAVE */
    transition: width 0.4s ease;
}

.tech-card:hover::after {
    width: 100%;
}

/* Contenedor de Imagen */
.tech-img-wrapper {
    background-color: #f4f4f4; /* Fondo gris para resaltar el producto */
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.tech-img-wrapper img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply; /* Hace que el fondo blanco de la imagen se fusione (si es jpg) */
}

.tech-card:hover .tech-img-wrapper img {
    transform: scale(1.08);
}

/* Información del Producto */
.tech-info {
    padding: 30px;
}

/* Número de Serie (Estilo Ingeniería) */
.tech-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f0f0f0; /* Gris muy claro casi invisible */
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    transition: color 0.3s ease;
}

.tech-card:hover .tech-number {
    color: #cc0000; /* Se vuelve ROJO al hover */
    opacity: 0.1; /* Transparente */
}

.tech-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.tech-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Enlace Simple */
.tech-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.tech-link i {
    margin-left: 8px;
    color: #cc0000;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-link {
    color: #cc0000;
}

.tech-card:hover .tech-link i {
    transform: translateX(5px);
}

/* --- ESTILOS PÁGINA DE ARTÍCULO (LEER MAS) --- */

/* Barra de Progreso de Lectura */
.progress-container {
    width: 100%;
    height: 4px;
    background: #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.progress-bar {
    height: 4px;
    background: #cc0000; /* ROJO KLAVE */
    width: 0%;
}

/* Hero del Artículo */
.article-header {
    background-color: #050505; /* Negro Profundo */
    color: #fff;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo abstracta */
.article-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 20px solid rgba(204, 0, 0, 0.1); /* Rojo transparente */
    border-radius: 50%;
}

.article-meta {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #cc0000; /* Rojo para la categoría */
    margin-bottom: 15px;
    font-weight: 700;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* Cuerpo del Artículo */
.article-body {
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Open Sans', sans-serif; /* Fuente muy legible */
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Letra Capital (Drop Cap) */
.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    font-weight: 900;
    margin-right: 15px;
    color: #cc0000; /* La primera letra en ROJO */
}

/* Citas Destacadas */
.pull-quote {
    border-left: 4px solid #cc0000;
    padding-left: 30px;
    margin: 40px 0;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: #000;
}

/* Imagen dentro del post */
.article-img-full {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sidebar (Barra lateral) */
.sidebar-card {
    background: #f8f9fa;
    padding: 30px;
    border-top: 3px solid #cc0000; /* Detalle rojo superior */
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.related-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    group: hover;
}

.related-post-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.related-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s;
}

.related-post-item:hover .related-post-title {
    color: #cc0000;
}

/* Navegación entre artículos */
.article-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.nav-btn-art {
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-btn-art strong { display: block; color: #000; font-size: 1.1rem; margin-top: 5px; }
.nav-btn-art:hover strong { color: #cc0000; }

@media (max-width: 768px) {
    .article-title { font-size: 2.2rem; }
    .article-body { padding: 30px 0; font-size: 1rem; }
}

/* Botón externo estilo GIEM */
.btn-giem-card {
    display: inline-block;
    background-color: #D90429;    /* Rojo GIEM */
    color: #ffffff;               /* Texto Blanco */
    border: 1px solid #D90429;
    padding: 10px 35px;           /* Un poco más ancho para presencia */
    border-radius: 50px;          /* Redondeado */
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.2); /* Sombra roja elegante */
}

/* Efecto Hover */
.btn-giem-card:hover {
    background-color: #ffffff;    /* Fondo blanco */
    color: #D90429;               /* Texto rojo */
    transform: translateY(-3px);  /* Pequeña elevación */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Enlace invisible sobre el video (para mantener la funcionalidad de clic atrás) */
.video-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    cursor: pointer;
}