/* Header con transiciones suaves */
.header {

    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* transition: background-image 1.5s ease-in-out; */

    animation: smoothZoom 20s ease-in-out infinite; 

     /* animation: parallaxZoom 20s ease-in-out infinite; */
       /* animation: subtleZoom 5s ease-in-out infinite; */
     transition: opacity 0.2s ease-in-out; /* Transition on opacity */

}

/* Efecto de zoom muy sutil y continuo */

@keyframes smoothZoom {
    0% { 
        transform: scale(1);
        background-position: center center;
    }
    50% { 
        transform: scale(1);
        background-position: center 45%;
    }
    100% { 
        transform: scale(1);
        background-position: 55% center;
    }
}


/* Overlay para mejor legibilidad del texto */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  transition: opacity 0.5s ease-in-out;
}

.jumbotron {
    position: relative;
    z-index: 2;
    background-color: transparent;
}

 /* Servicios Sección */ 
 .card-servicios {
    background-color: #fff;
    border-radius: 12px;
    /* box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1); */

    }
  .circle-icon {
            width: 55px;         
            height: 55px;     
            background-color: #F9F7F7; /* Color de fondo del círculo (azul de Bootstrap) */
            /* background-color: #ffffff; */
           background-color: #0042FF; /* Color de fondo del círculo (azul de Bootstrap) */
            border-radius: 50%;  /* Esto es lo que lo convierte en un círculo */
            display: flex;       /* Usa flexbox para centrar el contenido */
            justify-content: center; /* Centra horizontalmente */
            align-items: center; /* Centra verticalmente */
            color: #0042FF;        /* Color del icono */
           color: #ffffff;       /* Color del icono */            
            font-size: 30px;     /* Tamaño del icono */
            margin: 10px auto 14px auto;   /* Margen exterior y centrado horizontal */
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */ /* Sombra sutil para profundidad */
        }
 /* ¿Por qué elegirnos? */
 .card-pqe {
    background-color: #F9F7F7;
    border-radius: 12px;
    /* box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1); */
    padding: 2rem;
    margin: 10px 10px;
    max-width: 800px;
    min-height: 270px;
    font-size: 1.1em;
    color: #424242;
    font-weight: 400;
    line-height: 1.3;
    }
   .card-pqe h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #424242;
    }

     /* red de socios */ 
 .card-rds {
    background-color: #fff;
    border-radius: 12px;
    /* box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1); */
    padding: 3rem 2rem 2rem 2rem;
    margin: 10px 10px;
    max-width: 800px;
    min-height: 220px;
    font-size: 1em;
    color: #424242;
    font-weight: 400;
    line-height: 1.3;
    }
   .card-rds h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: #0042FF;
    }

      /* footer */
  .footer {
    background-color: #00248B;
    width: 100%;
    }
    .footer-info {
      max-width: 1180px; margin: -140px auto 3rem auto; background-color: #fff; padding: 3rem; border-radius: 12px;
    }