/* --- Estilos Globales y Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* --- Cabeceras de Páginas Secundarias --- */
.page-header {
    background-color: #002d62;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-header h1 { font-size: 36px; margin-bottom: 10px; }
.page-header p { color: #b3d4ff; font-size: 18px; }

/* --- Estilos del Header --- */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.logo { font-size: 24px; font-weight: bold; color: #1a1a1a; text-decoration: none; }
.logo span { color: #0056b3; }
.nav-menu { display: flex; gap: 30px; }
.nav-link { text-decoration: none; color: #555; font-weight: 600; transition: color 0.3s; }
.nav-link:hover { color: #0056b3; }
.btn-phone{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 18px;

    background: #dfe7f2;
    border-radius: 6px;

    text-decoration: none;

    transition: all .3s ease;
}





.btn-phone:hover{
    background: #d3ddeb;
}

.btn-phone i{
    width: 30px;
    height: 30px;

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

    background: #ffffff;
    border-radius: 50%;

    color: #25D366;
    font-size: 20px;

    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.btn-phone span{
    color: #222;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .3px;
}



.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 1000;
}

/* Estilos de las subcategorías con tu color y tipografía */
.dropdown-menu .dropdown-item {
    font-family: inherit; /* Hereda la fuente de tu menú */
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    color: rgb(0, 86, 179); /* Color idéntico al de tu menú */
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
    transition: color 0.3s, background-color 0.3s;
}

/* Efecto hover (igual al de tu menú principal) */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    color: #0056b3; /* Color cuando pasas el mouse o estás en la página */
    background-color: #f0f4f8;
}

/* Muestra el menú al pasar el cursor */
.dropdown:hover .dropdown-menu {
    display: block;
}



/* ==========================
   Página activa - Menú principal
========================== */

.nav-menu .nav-link.active {
    color: #0056b3;
}

/* ==========================
   Página activa - Submenú
========================== */

.dropdown-menu .dropdown-item.active {
    color: #0056b3;
    background-color: #f0f4f8;
}

/* Opcional: mantiene el color del menú principal
   cuando el cursor está sobre el dropdown */
.dropdown:hover > .nav-link,
.dropdown > .nav-link.active {
    color: #0056b3;
}

/*==================================================
HERO
==================================================*/

.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #dce8f7 0%, #ffffff 45%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/*==================================================
COLUMNA IZQUIERDA
==================================================*/

.hero-texto {
    display: flex;
    flex-direction: column;
}


/*==================================================
BRANDING
==================================================*/

.hero-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.hero-logo {
    width: 95px;
    height: auto;
    flex-shrink: 0;
}

.hero-brand-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-nombre {
    font-size: 52px;
    line-height: 1;
    font-weight: 300;
    color: #0056B3;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-brand-texto span {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #D71920;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/*==================================================
H1
==================================================*/

.hero-texto h1 {
    font-size: 46px;
    line-height: 1.18;
    color: #002D62;
    font-weight: 800;
    margin-bottom: 30px;
}


/*==================================================
PÁRRAFOS
==================================================*/

.hero-texto p {
    font-size: 19px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

.hero-texto p a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.hero-texto p a:hover {
  color: #FF0000;
}


/*==================================================
BOTONES
==================================================*/

.hero-botones {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.btn-azul {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 34px;
    background: #0056B3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: .3s;
}

.btn-azul:hover {
    background: #00458E;
}

.btn-blanco {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 34px;
    background: #ffffff;
    color: #23446E;
    text-decoration: none;
    border: 1px solid #d8dfe8;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-blanco:hover {
    background: #f4f6f8;
}


/*==================================================
IMAGEN
==================================================*/

.hero-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-imagen img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}


/*==================================================
TABLET
==================================================*/

@media (max-width: 991px) {

    .hero {
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-imagen {
        order: -1;
    }

    .hero-texto {
        text-align: center;
    }

    .hero-brand {
        justify-content: center;
    }

    .hero-brand-texto {
        align-items: flex-start;
    }

    .hero-logo {
        width: 85px;
    }

    .hero-nombre {
        font-size: 42px;
    }

    .hero-brand-texto span {
        font-size: 16px;
    }

    .hero-texto h1 {
        font-size: 38px;
    }

    .hero-texto p {
        font-size: 18px;
    }

    .hero-botones {
        justify-content: center;
    }

}


/*==================================================
MÓVIL
==================================================*/

@media (max-width: 576px) {

    .hero {
        padding: 60px 0;
    }

    .hero-brand {
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-logo {
        width: 65px;
    }

    .hero-nombre {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-brand-texto span {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero-texto h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-texto p {
        font-size: 17px;
        line-height: 1.7;
    }
    
    

    .hero-botones {
        flex-direction: column;
    }

    .btn-azul,
    .btn-blanco {
        width: 100%;
    }

    .hero-imagen img {
        max-width: 100%;
    }

}




/* ===== CONFIGURACIÓN LISTON CARRUSEL ===== */
/* ===== VARIABLES ===== */
:root {
  /* Tus especificaciones */
  --font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --text-weight: 800;
  --text-color: rgb(0, 45, 98);
  --font-size: 46px;
  --line-height: 54px;
  --bg-color: #f2f2f2; /* Fondo sugerido para que el azul destaque */
  --velocidad-animacion: 30s;
}

.marquesina-seccion {
  background-color: var(--bg-color);
  padding: 20px 0;
  width: 100%;
  overflow: hidden;
}

.marquesina-contenedor {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.marquesina-pista {
  display: flex;
  animation: desplazamiento-horizontal var(--velocidad-animacion) linear infinite;
  will-change: transform;
}

.marquesina-texto {
  display: flex;
  gap: 60px; /* Espaciado entre elementos */
  align-items: center;
  padding-right: 60px;
}

.marquesina-texto span {
  font-family: var(--font-family);
  font-weight: var(--text-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Ajuste del separador para que sea del mismo color */
.marquesina-texto .separador {
  color: var(--text-color);
  opacity: 0.5; /* Un poco más claro para estilo */
}

@keyframes desplazamiento-horizontal {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
  .marquesina-texto span {
    font-size: 28px;
    line-height: 36px;
  }
}
/* ... (aquí irían el resto de tus estilos .marquee-track, .marquee-content, etc.) */

/* ===== CONFIGURACIÓN LISTON CARRUSEL ===== */


/* ===== CONFIGURACIÓN IMAGENES ESTATICAS ZOOM ===== */

.gallery-section {
  padding: 40px 20px;
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.zoomable {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zoomable:hover {
  transform: scale(1.05); /* Pequeño efecto al pasar el mouse */
}

/* Modal para el Zoom */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border: 2px solid white;
}

.close {
  position: absolute;
  top: 20px; right: 30px;
  color: white; font-size: 40px; cursor: pointer;
}

/* ===== CONFIGURACIÓN IMAGENES ESTATICAS ZOOM FIN ===== */







/* ===== CONFIGURACIÓN ABAJO DE LA IMAGEN Y DEL LISTON INICIO ===== */


/* --- Estilos Generales de la Sección --- */
/* ===========================
   SECCIÓN
=========================== */

.contacto-whatsapp{
    padding:40px 20px;
    margin: 60px 0 40px;
    background:#fff;
}

.contacto-contenedor{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:40px;
}

/* ===========================
   QR
=========================== */

.contacto-qr{
    flex-shrink:0;
}

.contacto-qr img{
    width:120px;
    height:auto;
    display:block;
}

/* ===========================
   INFORMACIÓN
=========================== */

.contacto-info{
    flex:1;
}

.contacto-info h2{
    margin:0 0 15px;
    font-size:46px;
    font-weight:300;
    color:#111;
    line-height:1.2;
}

.telefono{
    display:inline-flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    color:#0A4E9B;
    font-size:34px;
    font-weight:700;

    transition:.3s;
}

.telefono:hover{
    color:#083c77;
}

.telefono i{
    font-size:30px;
    color:#111;
}

/* ===========================
   DIRECCIÓN
=========================== */

.contacto-direccion{
    display:flex;
    align-items:flex-start;
    gap:15px;
    max-width:340px;
}

.contacto-direccion i{
    color:#d93025;
    font-size:36px;
    margin-top:5px;
    flex-shrink:0;
}

.direccion-info{
    display:flex;
    flex-direction:column;
}

.direccion-info h4{
    margin:0 0 8px;
    font-size:18px;
    font-weight:700;
    color:#111;
    line-height:1.3;
}

.direccion-info a,
.direccion-info span{
    font-size:16px;
    color:#444;
    line-height:1.6;
    text-decoration:none;
}

.direccion-info a:hover{
    color:#0A4E9B;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:900px){

    .contacto-contenedor{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .contacto-info h2{
        font-size:34px;
    }

    .telefono{
        font-size:28px;
    }

    .telefono i{
        font-size:26px;
    }

    .contacto-direccion{
        justify-content:center;
        align-items:flex-start;
        text-align:left;
        max-width:100%;
    }

}



/* ===== CONFIGURACIÓN ABAJO DE LA IMAGEN Y DEL LISTON FIN ===== */



/* ===== CONFIGURACIÓN ABAJO DE LA SECCIONN QR ===== */
/* =======================================
   SECCIÓN SERVICIOS
======================================= */

.oi-servicios{
    padding:70px 20px;
    background:#f5f5f5;
}

.oi-contenedor{
    max-width:1200px;
    margin:auto;
}

.oi-servicios h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:40px;
}

/* =======================================
   GRID
======================================= */

.oi-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* =======================================
   TARJETA
======================================= */

.oi-card{
    background:#fff;
    border-radius:25px;
    padding:28px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #e9e9e9;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:320px;
}

.oi-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

/* =======================================
   ENCABEZADO
======================================= */

.oi-header{
    display:flex;
    align-items:flex-start;
    gap:25px;
}

/* =======================================
   LOGO
======================================= */

.oi-logo{
    width:95px;
    height:95px;
    object-fit:contain;
    flex-shrink:0;
}

/* =======================================
   TEXTO
======================================= */

.oi-texto{
    flex:1;
}

.oi-texto h3{
    margin:0 0 12px;
    font-size:42px;
    font-weight:300;
    color:#111;
    line-height:1;
    text-transform:uppercase;
}

.oi-texto p{
    margin:0;
    font-size:24px;
    line-height:1.55;
    color:#0b4fa3;
}

/* =======================================
   IMAGEN
======================================= */

.oi-imagen{
    margin-top:25px;
}

.oi-imagen img{
    width:160px;
    max-width:100%;
    display:block;
    object-fit:contain;
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width:991px){

    .oi-grid{
        grid-template-columns:1fr;
    }

    .oi-texto h3{
        font-size:34px;
    }

    .oi-texto p{
        font-size:20px;
    }

}

@media (max-width:767px){

    .oi-servicios{
        padding:50px 20px;
    }

    .oi-servicios h2{
        font-size:32px;
        text-align:center;
    }

    .oi-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .oi-logo{
        width:85px;
        height:85px;
    }

    .oi-texto h3{
        font-size:30px;
    }

    .oi-texto p{
        font-size:18px;
    }

    .oi-imagen{
        display:flex;
        justify-content:center;
        margin-top:30px;
    }

    .oi-imagen img{
        width:180px;
    }

}



/* ===== CONFIGURACIÓN ABAJO DE LA SECCIONN QR final ===== */


/* IMAGEN DE UN LADO TEXTO DEL OTRO LADO INICIO */


/* --- ESTRUCTURA AVANZADA --- */
.seccion-servicio-especial { padding: 80px 0; background: #fff; }



.grid-layout-avanzado {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos columnas iguales */
    gap: 50px;
    align-items: center;
}

.card-imagen-principal img {
    width: 100%;
    border-radius: 20px;
    height: 350px; /* Cambia este valor para ajustar la altura a tu gusto (ej. 300px, 400px) */
    object-fit: cover; /* Evita que la imagen se estire o deforme al cambiar la altura */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-imagen-principal h3 { margin-top: 20px; font-size: 28px; color: #002D62; }

/* Estilo para los 3 items de información */
.info-item { margin-bottom: 30px; padding-left: 20px; border-left: 3px solid #d71920; }
.info-item h3 { font-size: 22px; color: #334155; margin-bottom: 8px; }
.info-item p { color: #64748b; font-size: 16px; }

/* Responsivo: Si la pantalla es pequeña, se pone uno debajo del otro */
@media (max-width: 768px) {
    .grid-layout-avanzado { grid-template-columns: 1fr; }
}




/* Estilos para sección titular */
.seccion-titular { 
    padding: 80px 0; 
    background-color: #f8fafc; /* Fondo gris muy suave para contraste */
}

.box-titular {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    border-left: 8px solid #002D62; /* Línea de acento color corporativo */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); /* Sombra elegante */
}

.seccion-titular h2 {
    font-size: 42px;
    color: #002D62;
    margin-bottom: 20px;
    font-weight: 800;
}

.box-titular p {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    color: #475569;
    font-size: 20px;
    line-height: 1.6;
}




/* --- ESTILO SECCIÓN MITAD --- */
.seccion-mitad { 
    padding: 80px 0; 
    background-color: #ffffff; 
}

.layout-mitad {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos partes iguales */
    gap: 60px; /* Espacio entre el texto y la imagen */
    align-items: center; /* Alinea el texto verticalmente con la imagen */
}

.texto-mitad h2 {
    font-size: 42px;
    color: #002D62;
    margin-bottom: 20px;
    font-weight: 800;
}

.texto-mitad p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.imagen-mitad img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Sombra para profundidad */
    transition: transform 0.3s ease;
}

.imagen-mitad img:hover {
    transform: scale(1.02); /* Efecto sutil al pasar el mouse */
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .layout-mitad { grid-template-columns: 1fr; text-align: center; }
    .texto-mitad h2 { font-size: 32px; }
}



.grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.card-icono {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card-icono i {
    font-size: 40px; /* Tamaño del ícono */
    color: #002D62;  /* Tu color azul */
    margin-bottom: 15px;
    display: block;
}

.card-icono p {
    font-size: 19px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Efecto al pasar el cursor */
.card-icono:hover {
    transform: translateY(-8px);
    border: 1px solid #002D62;
}




.seccion-iconos .parrafo-titulo-tarjeta  a {
    color: #0056B3; /* Tu color base azul oscuro */
    font-weight: bold; /* Destaca de inmediato */
    text-decoration: none; /* Sin raya */
    transition: color 0.3s ease; /* Cambio suave */
}

.seccion-iconos .parrafo-titulo-tarjeta  a:hover {
    color: #D71920; /* Color rojo al pasar el ratón */
    text-decoration: none; /* Sin raya */
}

.seccion-iconos .parrafo-titulo-tarjeta  {
    text-align:center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 20px; /* Separación entre párrafos */
}



.titulo-iconos {
    text-align:center;
    font-size: 42px !important;
    color: #002D62 !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
    margin-top:80px !important;
}

.titulo-tarjetas {
    font-size: 42px !important;
    color: #002D62 !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
}




.destacada { background: #002D62; }
.destacada i, .destacada h3 { color: #ffffff; }

/* Responsivo */
@media (max-width: 768px) {
    .grid-3x3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-3x3 { grid-template-columns: 1fr; }
}




/* IMAGEN DE UN LADO TEXTO DEL OTRO LADO FIN */



/* INICIO DEL BOTON  */

/* Estilos botón */
.seccion-boton {
    padding: 20px 0 60px 0; /* Espaciado para despegarlo de las tarjetas */
}

/* Nota: Asegúrate de tener esto en tu CSS original */
.btn-dyn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #002D62; /* Tu color principal */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-dyn-primary:hover {
    background-color: #004a99; /* Tono más claro al pasar el cursor */
}



/* FIN DEL BOTON  */



/* INICIO DE LA SECCION FINAL  */


/* --- ESTILO SECCIÓN MITAD --- */
.seccion-mitad { 
    padding: 80px 0; 
    background-color: #ffffff; 
}

.layout-mitad {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos partes iguales */
    gap: 60px; /* Espacio entre el texto y la imagen */
    align-items: center; /* Alinea el texto verticalmente con la imagen */
}

.texto-mitad h2 {
    font-size: 42px;
    color: #002D62;
    margin-bottom: 20px;
    font-weight: 800;
}

.texto-mitad p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}

.imagen-mitad img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Sombra para profundidad */
    transition: transform 0.3s ease;
}

.imagen-mitad img:hover {
    transform: scale(1.02); /* Efecto sutil al pasar el mouse */
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .layout-mitad { grid-template-columns: 1fr; text-align: center; }
    .texto-mitad h2 { font-size: 32px; }
}



.grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom:20px;
}

.card-icono {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card-icono i {
    font-size: 40px; /* Tamaño del ícono */
    color: #002D62;  /* Tu color azul */
    margin-bottom: 15px;
    display: block;
}

.card-icono p {
    font-size: 19px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* Efecto al pasar el cursor */
.card-icono:hover {
    transform: translateY(-8px);
    border: 1px solid #002D62;
}




.seccion-iconos .parrafo-titulo-tarjeta p a {
    color: #0056B3; /* Tu color base azul oscuro */
    font-weight: bold; /* Destaca de inmediato */
    text-decoration: none; /* Sin raya */
    transition: color 0.3s ease; /* Cambio suave */
}

.seccion-iconos .parrafo-titulo-tarjeta p a:hover {
    color: #D71920; /* Color rojo al pasar el ratón */
    text-decoration: none; /* Sin raya */
}

.seccion-iconos .parrafo-titulo-tarjeta p {
    font-size: 19px;
    color: #475569;
    line-height: 1.7;
}





.destacada { background: #002D62; }
.destacada i, .destacada h3 { color: #ffffff; }

/* Responsivo */
@media (max-width: 768px) {
    .grid-3x3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .grid-3x3 { grid-template-columns: 1fr; }
}



/* FIN DE LA SECCION FINAL  */


/* INICIO SECCION DE TRES TARJETAS */

/* Estilos generales de la sección (sin cambios) */
/* Estilos generales de la sección */
.solutions-section {
  background-color: #f0f4f8;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solutions-header {
  text-align: center;
  max-width: 800px;
}

.solutions-header h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 800;
  color: rgb(0, 45, 98);
  font-size: 42px;
  line-height: 67px;
  margin: 0 0 20px 0;
}

.section-description {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  color: rgb(71, 85, 105);
  font-size: 19px;
  line-height: 34px;
  margin-bottom: 70px;
}


.solutions-header p a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.solutions-header p a:hover {
  color: #FF0000;
}



.cards-container p a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.cards-container p a:hover {
  color: #FF0000;
}

.cards-container {
  display: flex;
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* Tarjeta individual con posición relativa para ubicar el logo en la esquina */
.card {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative; 
  background: #ffffff;
  border-radius: 12px;
}

/* Logotipo pequeño y sutil ubicado en la esquina superior izquierda de cada tarjeta */
.card-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

/* Contenedor para centrar y dimensionar adecuadamente la imagen ilustrativa */
.card-image-container {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 16px;
}

/* Imagen principal con tamaño controlado pero distinguible */
.card-main-image {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
}

/* H3 con tus especificaciones exactas: Segoe UI, normal 300, tamaño 42px, line-height 42px, color rgb(17, 17, 17) */
.card h3 {
    text-align:center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: rgb(17, 17, 17);
  font-size: 42px;
  line-height: 42px;
  margin: 0 0 16px 0;
}


.card .texto-card-encabezado {
    text-align:center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: rgb(17, 17, 17);
  font-size: 30px;
  line-height: 42px;
  margin: 0 0 16px 0;
}



.card p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(71, 85, 105);
  font-size: 19px;
  line-height: 34px;
  margin: 0;
}




@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }
  .solutions-header h2 {
    font-size: 32px;
    line-height: 48px;
  }
  .card h3 {
    font-size: 32px;
    line-height: 38px;
  }
}


/* FIN SECCION DE TRES TARJETAS  */


/* INCION SECCION DE TRES TARJETAS MAS OTRO DISEÑO */

.process-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 60px;
}

.process-header h2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 800;
  color: rgb(0, 45, 98);
  font-size: 42px;
  line-height: 67px;
  margin: 0 0 20px 0;
}





.section-description-2 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #475569;
  font-size: 19px;
  line-height: 30px;
  margin: 0;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  width: 100%;
}

.process-item {
  background: #FFFFFF;
  padding: 35px 30px;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.process-item:hover {
  border-color: #002D62;
  box-shadow: 0 12px 30px rgba(0, 45, 98, 0.08);
  transform: translateY(-6px);
}

.process-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #002D62;
  background: rgba(0, 45, 98, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.process-item:hover .process-number {
  color: #FFFFFF;
  background: #002D62;
}

.process-item h3 {
    text-align: center;
  margin:0 0 20px;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:34px;
    line-height:42px;
    color:rgb(17,17,17);
}

.process-item p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #475569;
  font-size: 17px;
  line-height: 28px;
  margin: 0;
  transition: color 0.3s ease;
}


.process-item .parrafo-tarjeta-encabezada {
  text-align: center;
  margin:0 0 20px;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:28px;
    line-height:42px;
    color:rgb(17,17,17);
}

@media (max-width: 900px) {
  .process-container {
    grid-template-columns: 1fr;
  }
}


/* FIN SECCION DE TRES TARJETAS MAS OTRO DISEÑO */


/* INCIO DEL TEXTO SOLITARIO BIEN CENTRADO */

/* Estilos texto */
.info-texto {
    padding: 40px 0;
}





/* Estilos texto primero*/
.info-texto p {
    text-align:center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 20px; /* Separación entre párrafos */
}

.info-texto p a {
    color: #0056B3; /* Tu color base azul oscuro */
    font-weight: bold; /* Destaca de inmediato */
    text-decoration: none; /* Sin raya */
    transition: color 0.3s ease; /* Cambio suave */
}

.info-texto p a:hover {
    color: #D71920; /* Color rojo al pasar el ratón */
    text-decoration: none; /* Sin raya */
}

/* FIN DEL TEXTO SOLITARIO BIEN CENTRADDO */


/* INCIO TRES TARJETAS ABAJO DE MI H2 Y SU IMAGEN */

.proceso-etiquetado-1{
    padding: 50px 20px 100px;
    background:#fff;
}

.proceso-container-1{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:45px;
    position:relative;
}

.proceso-container-1::before{
    content:"";
    position:absolute;
    top:45px;
    left:10%;
    width:80%;
    height:2px;
    background:#e5e7eb;
    z-index:0;
}

.proceso-item-1{
    position:relative;
    z-index:2;
    text-align:center;
}

.proceso-circle-1{
    width:90px;
    height:90px;
    margin:0 auto -25px;
    border-radius:50%;
    background:#fff;
    border:4px solid #288934;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.proceso-circle-1 i{
    font-size:36px;
    color:#288934;
}

.proceso-card-1{
    background:#fff;
    border-radius:18px;
    padding:70px 35px 40px;
    box-shadow:0 20px 45px rgba(15,23,42,.08);
    transition:.35s;
    height:100%;
    border:1px solid #eef2f7;
}

.proceso-card-1:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.proceso-card-1 h3{
    margin:0 0 20px;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:42px;
    line-height:42px;
    color:rgb(17,17,17);
}

.proceso-card-1 p{
    margin:0;
    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

@media(max-width:991px){

    .proceso-container-1{
        grid-template-columns:1fr;
        gap:70px;
    }

    .proceso-container-1::before{
        display:none;
    }

    .proceso-card-1 h3{
        font-size:34px;
        line-height:38px;
    }

    .proceso-card-1 p{
        font-size:18px;
        line-height:32px;
    }

}

/* FIN TRES TARJETAS ABAJO DE MI H2 Y SU IMAGEN */


/* INICIO DE MIS SECCION DE HORIZONTAL FUCIONADA CON VERTICAL */

.beneficios-section-2{
    padding:90px 20px;
    background:#f8fafc;
}

.beneficios-container-2{
    max-width:1320px;
    margin:0 auto;
}

.beneficios-header-2{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.beneficios-header-2 h2{
    margin:0 0 20px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:800;
    font-size:42px;
    line-height:67px;
    color:rgb(0,45,98);
}

.beneficios-header-2 p{
    margin:0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

.beneficios-lista-2{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.beneficio-item-2{
    display:flex;
    align-items:center;
    gap:35px;

    padding:35px;
    background:#ffffff;
    border-radius:20px;
    border:1px solid #e5e7eb;

    box-shadow:0 18px 40px rgba(15,23,42,.08);
    transition:.35s;
}

.beneficio-item-2:hover{
    transform:translateX(12px);
    box-shadow:0 25px 50px rgba(15,23,42,.14);
}

.beneficio-icono-2{
    width:90px;
    min-width:90px;
    height:90px;

    border-radius:18px;
    background:#288934;

    display:flex;
    justify-content:center;
    align-items:center;
}

.beneficio-icono-2 i{
    font-size:38px;
    color:#ffffff;
}

.beneficio-texto-2{
    flex:1;
}

.beneficio-texto-2 h3{
    margin:0 0 18px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:42px;
    line-height:42px;
    color:rgb(17,17,17);
}

.beneficio-texto-2 p{
    margin:0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

/* Enlaces dentro de los párrafos */


.beneficio-texto-2 p a{
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.beneficio-texto-2 p a:hover {
  color: #FF0000;
}

@media (max-width:991px){

    .beneficios-section-2{
        padding:70px 20px;
    }

    .beneficios-header-2{
        margin-bottom:50px;
    }

    .beneficio-item-2{
        flex-direction:column;
        align-items:flex-start;
        text-align:left;
    }

    .beneficio-texto-2 h3{
        font-size:34px;
        line-height:40px;
    }

    .beneficio-texto-2 p,
    .beneficios-header-2 p{
        font-size:18px;
        line-height:32px;
    }

}

@media (max-width:576px){

    .beneficios-header-2 h2{
        font-size:34px;
        line-height:48px;
    }

    .beneficio-icono-2{
        width:75px;
        min-width:75px;
        height:75px;
    }

    .beneficio-icono-2 i{
        font-size:32px;
    }

    .beneficio-texto-2 h3{
        font-size:30px;
        line-height:36px;
    }

}

/* FIN DE MI SECCION DE HORIZONTAL FUCIONADA CON VERTICAL */

/* INICIO DE SECCION NUEVA MUY NUEVA 4 TARJETAS */

.valores-4{
    padding:80px 20px;
    background:#ffffff;
}

.valores-container-4{
    max-width:1320px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
}

.valor-item-4{
    position:relative;
    padding:10px 10px 10px 0;
}

.valor-linea-4{
    width:55px;
    height:5px;
    background:#288934;
    border-radius:50px;
    margin-bottom:30px;
    transition:.35s;
}

.valor-item-4:hover .valor-linea-4{
    width:90px;
}

.valor-item-4 h3{
    margin:0 0 22px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:42px;
    line-height:42px;
    color:rgb(17,17,17);
}

.valor-item-4 p{
    margin:0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

.valor-item-4 .titulo-parrafo{
    margin:0 0 22px 0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:38px;
    line-height:42px;
    color:rgb(17,17,17);
}

.valor-item-4 p a{
    color:#288934;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.valor-item-4 p a:hover{
    text-decoration:underline;
}

@media(max-width:1100px){

    .valores-container-4{
        grid-template-columns:repeat(2,1fr);
        gap:50px;
    }

}

@media(max-width:768px){

    .valores-4{
        padding:60px 20px;
    }

    .valores-container-4{
        grid-template-columns:1fr;
        gap:40px;
    }

    .valor-item-4 h3{
        font-size:34px;
        line-height:38px;
    }

    .valor-item-4 p{
        font-size:18px;
        line-height:32px;
    }

}


/* FIN DE SECCION NUEVA MUY NUEVA 4 TARJETAS */


/* INCIO NUEVA SECCION DE TRES ATRJETAS UNA MUY NUEVA MUY NUEVA E INDUSTRIAL */

.informacion-section-7{
    padding:90px 20px;
    background:#ffffff;
}

.informacion-container-7{
    max-width:1250px;
    margin:0 auto;
}


.informacion-header-7{
    max-width:850px;
    margin:0 auto 65px;
    text-align:center;
}


.informacion-header-7 h2{

    margin:0 0 18px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:800;
    font-size:42px;
    line-height:67px;
    color:rgb(0,45,98);

}


.informacion-header-7 p{

    margin:0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);

}



.informacion-grid-7{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;

}


.informacion-item-7{

    padding:0 45px;
    position:relative;

}


.informacion-item-7:not(:last-child){

    border-right:1px solid #e5e7eb;

}



.informacion-item-7 span{

    display:block;

    width:55px;
    height:4px;

    background:#288934;

    border-radius:50px;

    margin-bottom:30px;

    transition:.35s;

}



.informacion-item-7:hover span{

    width:90px;

}



.informacion-item-7 h3{

    margin:0 0 20px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:300;
    font-size:42px;
    line-height:42px;
    color:rgb(17,17,17);

}



.informacion-item-7 p{

    margin:0;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style:normal;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);

}



.informacion-item-7 p a{

    color:#288934;
    font-weight:600;
    text-decoration:none;

}



.informacion-item-7 p a:hover{

    text-decoration:underline;

}



@media(max-width:991px){

    .informacion-section-7{
        padding:70px 20px;
    }


    .informacion-grid-7{

        grid-template-columns:1fr;
        gap:45px;

    }


    .informacion-item-7{

        padding:0;

    }


    .informacion-item-7:not(:last-child){

        border-right:none;
        border-bottom:1px solid #e5e7eb;
        padding-bottom:45px;

    }


    .informacion-header-7 h2{

        font-size:34px;
        line-height:48px;

    }


    .informacion-header-7 p,
    .informacion-item-7 p{

        font-size:18px;
        line-height:32px;

    }


    .informacion-item-7 h3{

        font-size:34px;
        line-height:38px;

    }

}


/* FIN NUEVA SECCION DE TRES TARJETAS UNA MUY NUEVA MUY NUEVA E INDUSTRIAL */






/* INICIO SECCION DONDE SOLO HAY UN H2 Y UN PARRAFO */


.seccion-promo-impacto {
    padding: 70px 20px;
    background-color: #ffffff;
}

.promo-caja-principal {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.promo-bloque-izq {
    background: linear-gradient(135deg, rgb(0, 86, 179) 0%, rgb(0, 50, 110) 100%);
    width: 280px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.icono-decorativo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.subtitulo-etiqueta {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b3d4ff;
}

.promo-bloque-der {
    padding: 50px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-titulo-fuerte {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 18px;
}

.promo-texto-fuerte {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0;
}

/* Estilo para los enlaces que estén dentro de tu párrafo */
.promo-texto-fuerte a {
    color: rgb(0, 86, 179);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.promo-texto-fuerte a:hover {
    color: rgb(0, 45, 98);
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

    .seccion-promo-impacto {
        padding: 40px 15px;
    }

    .promo-caja-principal {
        flex-direction: column;
        border-radius: 14px;
    }

    .promo-bloque-izq {
        width: 100%;
        padding: 35px 25px;
    }

    .icono-decorativo {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .subtitulo-etiqueta {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .promo-bloque-der {
        padding: 35px 25px;
    }

    .promo-titulo-fuerte {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 18px;
    }

    .promo-texto-fuerte {
        font-size: 17px;
        line-height: 30px;
    }

}

@media (max-width: 480px) {

    .seccion-promo-impacto {
        padding: 30px 12px;
    }

    .promo-bloque-izq {
        padding: 28px 20px;
    }

    .promo-bloque-der {
        padding: 28px 20px;
    }

    .promo-titulo-fuerte {
        font-size: 25px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .promo-texto-fuerte {
        font-size: 16px;
        line-height: 28px;
    }

    .icono-decorativo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .subtitulo-etiqueta {
        font-size: 11px;
    }

}

/* FIN SECCION DONDE SOLO HAY UN H2 Y UN PARRAFO */










/* INCIO SECCION IMAGEN ENVOLVIENDOSE EN TEXTO */

/* ==========================================
   1. SECCIÓN DE IMPACTO PRINCIPAL (H2 + P)
   ========================================== */
.seccion-promo-impacto {
    padding: 70px 20px;
    background-color: #ffffff;
}

.promo-caja-principal {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.promo-bloque-izq {
    background: linear-gradient(135deg, rgb(0, 86, 179) 0%, rgb(0, 50, 110) 100%);
    width: 280px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.icono-decorativo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.subtitulo-etiqueta {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b3d4ff;
}

.promo-bloque-der {
    padding: 50px 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-titulo-fuerte {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 18px;
}

.promo-texto-fuerte {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0;
}

.promo-texto-fuerte a {
    color: rgb(0, 86, 179);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.promo-texto-fuerte a:hover {
    color: rgb(0, 45, 98);
}


/* ==========================================
   2. ELEMENTO VALOR 4 (STRONG)
   ========================================== */
.valor-item-4 strong {
    margin: 0 0 40px 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 42px;
    line-height: 42px;
    color: rgb(17, 17, 17);
}


/* ==========================================
   3. SECCIÓN CENTRADA SIMPLE
   ========================================== */
.seccion-centrada-simple {
    padding: 60px 20px 15px 20px; 
    background-color: #ffffff;
}

.contenedor-centrado {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.titulo-centrado {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 15px;
}

.texto-centrado {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0;
}

.texto-centrado a {
    color: rgb(0, 86, 179);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.texto-centrado a:hover {
    color: rgb(0, 45, 98);
}


/* ==========================================
   4. SECCIÓN MÁS SERVICIOS (TARJETAS LINK)
   ========================================== */
.seccion-mas-servicios {
    padding: 60px 20px 40px 20px;
    background-color: #f8fafc;
}

.contenedor-servicios {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.titulo-servicios {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 40px;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.tarjeta-servicio {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tarjeta-servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08);
    border-color: rgb(0, 86, 179);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background-color: #e9f1f8;
    color: rgb(0, 86, 179);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tarjeta-servicio:hover .servicio-icon {
    background-color: rgb(0, 86, 179);
    color: #ffffff;
}

.servicio-texto {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    color: rgb(71, 85, 105);
    margin: 0 0 15px 0;
}

.servicio-link {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(0, 86, 179);
    margin-top: auto;
    transition: color 0.3s ease;
}

.tarjeta-servicio:hover .servicio-link {
    color: rgb(0, 45, 98);
    text-decoration: underline;
}


/* ==========================================
   5. SECCIÓN IMAGEN CENTRAL (CON ADORNOS)
   ========================================== */
.seccion-imagen-central {
    padding: 70px 20px;
    background-color: #f8fafc;
}

.contenedor-central {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.titulo-seccion-central {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 15px;
}

.subtitulo-seccion-central,
.texto-inferior-central {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.texto-inferior-central {
    margin: 40px auto 0 auto;
}

.grid-tres-columnas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top:60px;
}

.columna-textos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.item-texto {
    background: #ffffff;
    padding: 24px 22px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid rgb(0, 86, 179);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.item-texto:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.08);
    border-color: rgb(0, 86, 179);
}

.item-texto p {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0;
}

.columna-imagen {
    flex: 1;
    max-width: 380px;
}

.columna-imagen img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 3px solid #ffffff;
}

@media (max-width: 900px) {
    .grid-tres-columnas {
        flex-direction: column;
    }
    .columna-imagen {
        order: -1;
    }
    .item-texto {
        text-align: center;
        border-left: 1px solid #e2e8f0;
        border-top: 4px solid rgb(0, 86, 179);
    }
}


/* FIN SECCION IMAGEN ENVOLVIENDOSE EN TEXTO */




/* INICIO SEECION NUEVA SOBRE MAS SERVICIOS Y SU LINK */

.seccion-mas-servicios {
    padding: 60px 20px 40px 20px;
    background-color: #f8fafc;
}

.contenedor-servicios {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.titulo-servicios {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 40px;
}


.titulo-servicios a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.titulo-servicios a:hover {
  color: #FF0000;
}

.grid-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.tarjeta-servicio {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tarjeta-servicio:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.08);
    border-color: rgb(0, 86, 179);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background-color: #e9f1f8;
    color: rgb(0, 86, 179);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tarjeta-servicio:hover .servicio-icon {
    background-color: rgb(0, 86, 179);
    color: #ffffff;
}

.servicio-texto {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    color: rgb(71, 85, 105);
    margin: 0 0 15px 0;
}

.servicio-link {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgb(0, 86, 179);
    margin-top: auto;
    transition: color 0.3s ease;
}

.tarjeta-servicio:hover .servicio-link {
    color: rgb(0, 45, 98);
    text-decoration: underline;
}

/* FIN SECCION NUEVA SOBRE MAS SERVICIOS Y SU LINK */



/* INICIO  SECCION DE VIÑETAS NUEVAS */

.papeleria-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.papeleria-container {
    max-width: 1000px;
    width: 100%;
}

.papeleria-section h2 {
    text-align:center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    color: rgb(0, 45, 98);
    font-size: 42px;
    line-height: 67px;
    margin-bottom: 16px;
    margin-top:80px;
}

.papeleria-section p {
    margin-top:20px;
    margin-bottom:45px;
    text-align:center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 34px;
    margin-top:30px;
    margin-bottom:40px;
}

.papeleria-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.papeleria-section li {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 45, 98, 0.15);
    border-top: 4px solid rgb(0, 78, 168);
    padding: 20px 16px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

@media (max-width: 900px) {
    .papeleria-section ul {
        grid-template-columns: 1fr;
    }
}


/* FIN SECCION DE VIÑETAS NUEVAS */




/* INIO SECCION VIÑETAS QUE NO SON VIÑETAS */

.sectores-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.sectores-container {
    max-width: 1100px;
    width: 100%;
}

.sectores-section h2 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    color: rgb(0, 45, 98);
    font-size: 42px;
    line-height: 67px;
    margin-bottom: 45px;
    text-align:center;
    margin-top:100px;
}

.sectores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.sector-card {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 34px;
    background: #ffffff;
    border: 1px solid rgba(0, 45, 98, 0.15);
    border-bottom: 4px solid rgb(0, 78, 168);
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.sector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 45, 98, 0.1);
    background: rgba(0, 45, 98, 0.02);
}

.sectores-section p {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 34px;
    margin-top:40px;
    text-align:center;
    margin-bottom:40px;
}

@media (max-width: 900px) {
    .sectores-grid {
        grid-template-columns: 1fr;
    }
}


/* FIN VIÑETAS QUE NO SON VIEÑTAS */

/* INICIO SECION TERCERA DE VIÑETAS */

.proveedor-section {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.proveedor-container {
    max-width: 1100px;
    width: 100%;
}

.proveedor-section h2 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    color: rgb(0, 45, 98);
    font-size: 42px;
    line-height: 67px;
    margin-bottom: 24px;
    text-align:center;
    margin-top:100px;
}

.proveedor-section p {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 19px;
    line-height: 34px;
    margin-bottom: 35px;
    margin-top:40px;
    text-align:center;
}

.proveedor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.proveedor-card {
    background: #ffffff;
    border: 1px solid rgba(0, 78, 168, 0.15);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 78, 168, 0.04);
    transition: all 0.25 ease;
}

.proveedor-card:hover {
    transform: translateY(-4px);
    border-color: rgb(0, 78, 168);
    box-shadow: 0 8px 20px rgba(0, 78, 168, 0.12);
}

.proveedor-num {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #ffffff;
    background-color: rgb(0, 78, 168);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
    display: inline-block;
}

.proveedor-text {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(71, 85, 105);
    font-size: 17px;
    line-height: 26px;
}

@media (max-width: 992px) {
    .proveedor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .proveedor-grid {
        grid-template-columns: 1fr;
    }
}


/* FIN SECCION TERCERA DE VIÑETAS */




/* INCIO DE SECCION PREGUNTAS FRECUENTES */

.faq-section-3{
    padding:100px 20px;
    background:#f8fafc;
}

.faq-container-3{
    max-width:1100px;
    margin:0 auto;
}

.faq-titulo-3{
    margin:0 0 18px;

    text-align:center;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight:800;
    font-size:42px;
    line-height:67px;
    color:rgb(0,45,98);
}

.faq-descripcion-3{
    margin:0 auto 55px;
    max-width:850px;

    text-align:center;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

.faq-acordeon-3{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item-3{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.faq-item-3 summary{
    list-style:none;
    cursor:pointer;
    padding:24px 30px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size:22px;
    font-weight:700;
    color:#111111;

    transition:.3s;
}

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

.faq-item-3 summary::after{
    content:"+";
    float:right;
    color:#288934;
    font-size:28px;
    font-weight:700;
}

.faq-item-3[open] summary::after{
    content:"−";
}

.faq-item-3 p{
    margin:0;
    padding:0 30px 28px;

    font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight:400;
    font-size:19px;
    line-height:34px;
    color:rgb(71,85,105);
}

@media(max-width:768px){

    .faq-section-3{
        padding:70px 20px;
    }

    .faq-titulo-3{
        font-size:34px;
        line-height:48px;
    }

    .faq-descripcion-3,
    .faq-item-3 p{
        font-size:18px;
        line-height:32px;
    }

    .faq-item-3 summary{
        font-size:20px;
    }

}

/* FIN DE SECCION DE PREGUNTAS FRECUENTES */






/* Ajuste para móviles */
@media (max-width: 768px) {
    .grid-tarjetas { grid-template-columns: 1fr; }
}


/* Estilos botón */
.seccion-boton {
    padding: 20px 0 60px 0; /* Espaciado para despegarlo de las tarjetas */
}

/* Nota: Asegúrate de tener esto en tu CSS original */
.btn-dyn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #002D62; /* Tu color principal */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-dyn-primary:hover {
    background-color: #004a99; /* Tono más claro al pasar el cursor */
}



/* --- ESTRUCTURA AVANZADA --- */
.seccion-servicio-especial { padding: 80px 0; background: #fff; }

.titulo-maestro { 

    text-align:center;
    font-size: 42px;
    color: #002D62;
    margin-bottom: 50px;
    font-weight: 800;
    
}


.titulo-maestro a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.titulo-maestro a:hover {
  color: #FF0000;
}



.intro-maestra { text-align: center; font-size: 18px; margin-bottom: 60px; color: #64748b; }

.grid-layout-avanzado {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide en dos columnas iguales */
    gap: 50px;
    align-items: center;
}

.card-imagen-principal img {
    width: 100%;
    height: 350px; /* Cambia este valor para ajustar la altura a tu gusto (ej. 300px, 400px) */
    object-fit: cover; /* Evita que la imagen se estire o deforme al cambiar la altura */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-imagen-principal h3 { margin-top: 20px; font-size: 28px; color: #002D62; }

/* Estilo para los 3 items de información */
.info-item { margin-bottom: 30px; padding-left: 20px; border-left: 3px solid #d71920; }
.info-item h3 { font-size: 22px; color: #334155; margin-bottom: 8px; }

.info-item-parrafo p {  
    font-size: 19px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 22px; }


.column-info p a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.column-info p a:hover {
  color: #FF0000;
}


/* Responsivo: Si la pantalla es pequeña, se pone uno debajo del otro */
@media (max-width: 768px) {
    .grid-layout-avanzado { grid-template-columns: 1fr; }
}










/* ==========================================================================
   --- NUEVO HERO ULTRA DINÁMICO Y PREMIUM ---
   ========================================================================== */
.hero-dynamic {
    background: radial-gradient(circle at 90% 10%, #f4f8fc 0%, #ffffff 60%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

/* Orbes de brillo de fondo (Efecto moderno de fondo difuminado) */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
}
.orb-1 { width: 300px; height: 300px; background-color: #b3d4ff; top: -50px; right: 10%; }
.orb-2 { width: 200px; height: 200px; background-color: #e6f0fa; bottom: -50px; left: 5%; }

.hero-dyn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2; /* Por encima de los orbes */
}

/* --- TEXTO DINÁMICO --- */
.badge {
    background-color: #e6f0fa;
    color: #0056b3;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-dyn-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

/* Texto con degradado de color elegante */
.text-gradient {
    background: linear-gradient(135deg, #0056b3 0%, #002d62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-dyn-text p {
    font-size: 19px;
    color: #475569;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-dyn-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botones Premium con transiciones suaves y sombras */
.btn-dyn-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: #ffffff;
    padding: 16px 36px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
    transition: all 0.3s transform ease;
}
.btn-dyn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 86, 179, 0.3);
}

.btn-dyn-secondary {
    text-decoration: none;
    border: 2px solid #cbd5e1;
    color: #334155;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}
.btn-dyn-secondary:hover {
    border-color: #0056b3;
    color: #0056b3;
    background-color: rgba(0, 86, 179, 0.02);
    transform: translateY(-3px);
}

/* --- VISUAL E IMAGEN EN MOVIMIENTO --- */
.hero-dyn-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fondo circular con degradado suave */
.dynamic-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 50%;
    z-index: 1;
}

/* Impresora con animación de flotación constante */
.hero-dyn-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 20px 40px rgba(0,0,0,0.12));
    animation: flotarImpresora 6s ease-in-out infinite; /* Llama a la animación */
}

/* Etiquetas interactivas flotantes (Glassmorphism) */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    z-index: 3;
}
.card-1 {
    top: 10%;
    left: -10%;
    animation: flotarImpresora 5s ease-in-out infinite alternate;
}
.card-2 {
    bottom: 15%;
    right: -5%;
    animation: flotarImpresora 7s ease-in-out infinite alternate-reverse;
}

/* --- ANIMACIÓN CSS PARA DAR DINAMISMO --- */
@keyframes flotarImpresora {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* Sube 15 píxeles suavemente */
    100% { transform: translateY(0px); }
}

/* --- Adaptación para Celulares --- */
@media (max-width: 992px) {
    .hero-dynamic { padding: 80px 20px; }
    .hero-dyn-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-dyn-text h1 { font-size: 40px; }
    .hero-dyn-text p { margin: 0 auto 30px auto; }
    .hero-dyn-actions { justify-content: center; }
    .dynamic-circle { width: 320px; height: 320px; }
    .hero-dyn-img { max-width: 360px; }
    .floating-card { display: none; } /* Ocultar tarjetas en móvil para limpiar espacio */
}


/* --- Sección Intro --- */
.intro-section { padding: 60px 0; background-color: #f4f7f6; }
.lead { font-size: 20px; color: #555; max-width: 800px; margin: 20px auto 0 auto; }

/* --- Cuadrícula de Servicios (Servicios) --- */
.services-grid-section { padding: 60px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 30px; border-radius: 8px; border: 1px solid #eee; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { margin-bottom: 15px; color: #002d62; }

/* --- Sección de Contacto --- */
.contact-section { padding: 60px 0; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-box h2, .contact-form-box h2 { margin-bottom: 20px; color: #1a1a1a; }
.info-item { background: #f0f4f8; padding: 15px; border-radius: 6px; margin-bottom: 15px; font-size: 16px; }
.info-item a { color: #0056b3; text-decoration: none; font-weight: bold; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; }
.contact-form button { align-self: flex-start; }

.map-container {
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Estilo base para el botón */
.btn-primary {
    background: #0056b3; /* Tu color principal */
    color: #ffffff;
    padding: 16px 35px;
    border: none;
    border-radius: 8px; /* Bordes redondeados más elegantes */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease; /* Transición suave para todos los efectos */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave para profundidad */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Efecto al pasar el cursor (Hover) */
.btn-primary:hover {
    background: #004494; /* Un tono un poco más oscuro */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* La sombra se agranda */
    transform: translateY(-2px); /* El botón "sube" un poco */
}

/* Efecto al hacer clic (Active) */
.btn-primary:active {
    transform: translateY(0); /* Vuelve a su posición original */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* --- Estilos del Footer --- */
.site-footer { background-color: #111; color: #fff; padding: 60px 20px 20px 20px; margin-top: 60px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #222; }
.footer-info h3 { margin-bottom: 15px; color: #0056b3; }
.footer-links h4, .footer-contact h4 { margin-bottom: 15px; font-size: 18px; color: #f0f0f0; }
.footer-links a { display: block; color: #aaa; text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: #aaa; margin-bottom: 10px; }
.footer-bottom { text-align: center; padding-top: 20px; color: #555; font-size: 14px; }

/* --- Responsivo --- */
@media (max-width: 900px) {
    .header-container { flex-direction: column; gap: 15px; }
    
    /* Adaptación del Hero Minimalista */
    .hero-minimalist { padding: 60px 20px; }
    .hero-min-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-min-text h1 { font-size: 36px; }
    .hero-min-text p { margin: 0 auto 30px auto; }
    .hero-min-actions { flex-direction: column; justify-content: center; gap: 10px; }
    .circle-background { width: 300px; height: 300px; }
    .hero-min-img { max-width: 340px; }

    /* Adaptación de Secciones Secundarias */
    .contact-container { grid-template-columns: 1fr; text-align: center; }
    .contact-form button { align-self: center; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
}



.seccion-centrada-simple {
    /* El primer número (60px) es arriba, el segundo (20px) es a los lados, y el último (15px) es abajo */
    padding: 60px 20px 0px 20px; 
    background-color: #ffffff;
}

.contenedor-centrado {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.titulo-centrado {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 42px;
    line-height: 67px;
    color: rgb(0, 45, 98);
    margin-bottom: 15px; /* Reducido también para que no empuje tanto hacia abajo */
}


.titulo-centrado a {
  color: #0071BC;
  font-weight: 800;
  text-decoration: none;
}

.titulo-centrado a:hover {
  color: #FF0000;
}

.texto-centrado {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 34px;
    color: rgb(71, 85, 105);
    margin: 0;
}

.texto-centrado a {
    color: rgb(0, 86, 179);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.texto-centrado a:hover {
    color: rgb(0, 45, 98);
}


