
/* GLOBALES */
/* =============== RESET ================ */
body {
  font-family: 'Montserrat', sans-serif;
  padding-top: 80px;
  /* evita que el navbar tape */
  margin: 0;
  padding: 0;
  font-size: 16px;
  /*1rem=10px*/
  
}

@media (min-width: 1400px ) {
    .container{
      max-width: 2600px;
    }
}

h1 {
  color: var(--color-blanco);
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
}

h3{
  font-size: 1.7rem;
  font-weight: bold;
}

h4{
  font-size: 1.5rem;
  font-weight: bold;
}


p{
    font-size: 1.5rem;
    font-weight: 600;

}

a{
  text-decoration: none;
  font-weight: bold;
}

button{
  border: none;
}

li{
  margin-bottom: 1rem;
  font-weight: 600;
}

ul{
  list-style-type: none;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}


/* utilities */

/* INDEPENDIENTES */

.cursor{
    transition: .3s ease;
   
     transition: .3s ease;
}
.cursor:hover{
    cursor: pointer;
   transform: scale(1.1);

}

/* LINEASw */
.titulo-custom::after {
    content: "";
    display: block;
    width: 7rem;
    height: 4px;
    background-color: var(--color-secundario);
    /* amarillo */
    margin: 8px auto 0;
    /* centra la línea */
    border-radius: 2px;
}

.titulo-custom-left::after {
    margin: 8px auto 0;
}

/* LIENAS */
.linea-top {
    border-top-width: 3.5px;
    border-top-style: solid;
    
    padding-top: 10px;
}


.linea-right {
    border-right-width: 3.5px;
    border-right-style: solid;
  
    padding-right: 10px;
    
}

@media (max-width: 768px ) {
    
.right-responsive {
    border-bottom-width: 3.5px;
    border-bottom-style: solid;
    border-right:none ;
    padding: 10px 0;
    
}
}

@media (max-width: 767px ) {
    
.contacto-responsive {
    border-bottom-width: 3.5px;
    border-bottom-style: solid;
    border-right:none ;
    padding: 10px 0;
    
}

}
  
.linea-left {
    border-left-width: 3.5px;
    border-left-style: solid;
    padding-left: 10px;
}

@media (max-width: 768px ) {
    
.linea-left {
    border-top-width: 3.5px;
    border-top-style: solid;
    border-left:none ;
    padding: 5px 0;
    
}
}


.linea-bottom {
    border-bottom-width: 3.5px;
    border-bottom-style: solid;
    
    padding-bottom: 10px;
}

/* border */
.border-custom{
    border: solid 3px;
}
.border-white {
    border-color: var(--color-blanco);
}

.border-yellow {
    border-color: var(--color-secundario);
}

.border-blue {
    border-color:var(--color-primario);
}
.border-gris{
    border-color: var(--color-texto-secundario);
}



@media (min-width: 950px) {
    .linea {
        border-right: 3px solid var(--color-secundario);
    }

    .linea-top {
        padding-bottom: 20px;
    }

    
}

  
@media (max-width: 950px) {
    .linea-documento {
    padding-bottom: 10px;
    border-bottom-width: 3.5px;
    border-bottom-style: solid;
    border-right: none;
}
    
}



/* TEXTO */
.text-title {
    font-weight: bold;
    text-transform: uppercase;
}

.texto-cb {
    color: var(--color-primario);
}
.texto-ca{
    color: var(--color-textct)
}

.texto-cw {
    color: var(--color-blanco);
}

.texto-cy {
    color: var(--color-secundario);
}
.texto-cg {
    color: var(--color-texto-secundario);
}
.texto-cgris{
  color:var(--color-gris);
}
.texto-cn {
    color: var(--color-negro);
}


/* background */

.fondo-azul {
    background-color: var(--color-primario);
}
.fondo-2azul{
    background-color: var(--fondo-secundario);
}
.fondo-amarillo{
    background-color: var(--color-secundario);
}

.fondo-gris {
    background-color: var(--color-gris);
}
.fondo-2gris {
    background-color: var(--color-texto-secundario);
}

.fondo-blanco {
    background-color: var(--color-blanco);
}

/* border radius */

.border-s {
    border-radius: 10px;
}

/* transicion */

.transition-custom{
    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease;
    cursor: pointer;
}


/* MAPA  */

.map-wrapper {
    width: 95%;
}

.google-map {
    position: relative;
    padding-bottom: 56.25%; /* relación 16:9 */
    height: 0;
    overflow: hidden;
}

.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
}

/* video */

.sombra-video {
  /* x=0, y=0, desenfoque=30px, expansión=5px */
  box-shadow: 0 1rem 30px 5px rgba(0, 0, 0, 0.0); 
  border-radius: 15px; 
  overflow: hidden;    /* Para que el video respete los bordes redondeados */
}

/* variables */

:root {
  --color-primario: #2271b1;
  --fondo-secundario:#2f7cbc;
  --color-btext:#0D6EFD;
  --color-secundario: #FFD03E;
  --color-blanco: #FFF9F9;
  --color-negro: #000000;
  --color-gris: #d9d9d9;
  --color-texto-secundario:#6c7d77;

  

  --radius-md: 1rem;
  --radius-lg: 2.5rem;
  
  --text-s: 1rem;
  --text-md: 1.5rem;
  --text-lg: 2rem;

  --transition-base: .3s ease;
}

/* ================================= BOTÓN PROPIO ================================= */
.btn-custom {
 background-color: var(--color-secundario);
    color: var(--color-negro);
    display: inline-flex;        /* cambia a flex */
    align-items: center;         /* centra verticalmente */
    justify-content: center;     /* centra horizontalmente */
    gap: 0.5rem;                 /* espacio entre texto e ícono */
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: bold;
    transition: .3s ease;

}


.btn-carrusel {
  background-color: var(--color-secundario);
  color: var(--color-primario);

  display: inline-block;
  padding: 1rem 1.5rem;

  text-decoration: none;
  border-radius: 1rem;

  font-weight: bold;

  transition:
    background-color .3s ease,
    transform .3s ease;
  transition: .3s ease;
}

.btn-custom:hover {
  background-color: #e2b73b;
  transform: translateY(5px);
}
.btn-carrusel:hover {
  background-color: #e2b73b;
  transform: translateY(5px);
}

/* button */

/* imagen de Whatsapp footer */
.imagen-sp {
  margin-left: 10px;
}

.boton-whatsapp {
    /* Define un tamaño fijo para que no colapse */
    width: 25px; 
    height: 25px;
    
    /* Evita que el flexbox lo encoja si el texto es largo */
    flex-shrink: 0; 
    
    /* Alineación si el botón tiene texto al lado */
    vertical-align: middle;
    margin-left: 8px; /* Espacio entre el texto y el logo */
}

/* cards */

/* ==============================
   CARD BASE
================================= */

.card-custom {
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease;
    cursor: pointer;
    border: 3px solid;
    border-color: var(--color-primario);
}
.card-custom a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--color-btext);
}



/* ==============================
   VARIANTES
================================= */

.card-light {
    background-color: var(--color-gris);
}

.card-white {
    background-color: var(--color-blanco);
}

.card-title {
    font-weight: bold;
    text-transform: uppercase;
}

.card-title-primary {
    color: var(--color-primario);
}

.card-parrafo{
    color: var(--color-texto-secundario);
}

.card-title-white {
    color: var(--color-blanco);
}

.card-border {
    border: 5px solid transparent;
    padding: 3rem 2rem;
}


/* ==============================
   EFECTOS
================================= */
.hover-up:hover {
    transform: translateY(-5px);
}
.hover-down:hover{
    transform: translateY(5px);
}
.hover-upparcase:hover{
     transform: scale(1.03);
}
.card-hover:hover {
    background-color: #045494;
    color: var(--color-blanco);  
    border-color: var(--color-secundario);

}
.card-hover:hover .card-titulo{
    color: var(--color-secundario)
}

.card-hover:hover .linea-bottom{
    border-color: var(--color-secundario);

}


.card-hover:hover .card-title {
    color: var(--color-blanco);
}

.card-border:hover {
    cursor: pointer;
    border-color: var(--color-primario);
}

/* imagenes */


.imagen-custom{
    height: 350px;
    width: auto;
    max-width: 100%;
    border-radius: 2rem;
}


.hero-img {
  width: 100%;       /* Asegura que ocupe todo el ancho del contenedor */
  height: 300px;     /* Mantiene la altura fija que definiste */
  object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
  object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
  border-radius: 10px;
}


.salud-img {
    height: 100px;
    max-width: 100%;
    
}

.img-movilidad{
    max-width: 100%;
    height: 130px;
   
}

.imagenes-rs {
    max-width: 100%;
    height: 26rem;
    border-radius: 10px;
     object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
    object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
}

.vida-img{
    height: 400px;
    max-width: 100%;
      object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
    object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
    
}



.mascotas-info{
    height: 430px;
    max-width: 100%;
    object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
    object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
}

/* listas */

.lista_custom {
    padding: 2rem;
    border-radius: 1rem;
    transition: .3s ease,
        background-color .3s ease,
        color .3s ease;
    cursor: pointer;
    border: 4px solid;
    border-color: var(--color-primario);
}



@media (max-width: 950px) {
    .lista_custom {
        padding: 2rem;
        border-radius: 1rem;
        transition: .3s ease,
            background-color .3s ease,
            color .3s ease;
        cursor: pointer;
        border: 4px solid;
        border-color: var(--color-secundario);
        background-color: var(--color-primario);
    }

    .lista_titulos {
        color: var(--color-secundario);
    }

    .lista_parrafos {
        color: var(--color-blanco);
    }

    .lista_img {
        outline: 9px solid var(--color-blanco);
    }
}

.lista_custom:hover .lista_titulos {
    color: var(--color-secundario);
}

.lista_custom:hover .lista_parrafos {
    color: var(--color-blanco);
}

.lista_custom:hover {
    background-color: var(--color-primario);
    transform: scale(1.02);
    border-color: var(--color-secundario);
}

.lista_custom:hover .lista_img {
    outline: 9px solid var(--color-blanco);
}

/* logos */

.imagen_logo{
    width: auto;
    height: 70px;
}
/* ================================= REDES SOCIALES ================================= */

.social-icon{
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

.social-link {
    padding: 1rem;
    border-radius: 1rem;
    transition:
        background-color .3s ease,
        transform .3s ease;
}

.social-link:hover {
    background-color: var(--color-blanco);
    color: var(--color-primario);
    transform: translateY(5px);
}
/* ==============================
   ICONOS DE SGV
================================= */

.icono-svg {
  width: 15rem;
  margin: 20px 0;
}
.icono-redes {
    color: var(--color-blanco);
    transition: .3s ease;
}

.icono-svg:hover .icono-redes{
  color: var(--color-blanco);
}

@media (max-width:950px) {

.icono-redes{
  color: var(--color-blanco);
}
    
}

/* modal */


/* ==============================
   MODAL
================================= */


.modal {
  backdrop-filter: blur(8px);
}

.modal-custom {
    width: 100%;
    padding: 3rem;
    border: none;
    border-radius: var(--radius-lg);
   
}

/* ==============================
   MODAL CONTENT
================================= */

.modal-espacio{
    padding: 3rem 2.5rem;

}
.modal-title {
    font-size: var(--text-lg);
    font-weight: bold;
}

.modal-subtitle {
    color: var(--color-primario);
    font-weight: 400;
}

.modal-image {
    width: 7rem;
    margin-bottom: 1.5rem;
}

/* ================================= CARRUSEL ================================= */

.carrusel {
  /* background-color: var(--color-gris); */
  border-radius: 10px;
  font-weight: bold;
  min-height: 400px
}
.carrusel h1{
  font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
}

.carrusel .container {
  min-height: 400px;
  /* mismo valor */
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.carrusel .carrusel-slide {
background: rgba(16, 97, 163, 1);
background: linear-gradient(265deg,rgba(16, 97, 163, 1) 0%, rgba(50, 132, 199, 1) 100%);
}





.borde-carrucel {
  border: solid 4px var(--color-primario);
}

.carrusel-fondo {
  padding: 4rem 3rem;
  border-radius: 10px;
}

.carrusel-img {
 width: 100%;       /* Asegura que ocupe todo el ancho del contenedor */
  height: 340px;     /* Mantiene la altura fija que definiste */
  object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
  object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
  
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.carrusel h1 {
  text-transform: inherit;
  font-weight: 800;

}

.carrusel p {
  text-transform: initial;
}

/* botones */

/* Ocultar botones por defecto */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  /* Bootstrap pone 15% por defecto, reduce este valor */
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

/* Mostrar cuando hay mouse */
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1 !important;
}

/* Cambiar color de las flechas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
  /* azul */
  /* cambia hue-rotate para otro color:
       0deg   = rojo
       90deg  = verde
       180deg = azul
       270deg = morado */
}


 .carrusel .hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom:10px;

}

.carrusel  .carrusel-fondo1{
  background: rgba(214, 177, 63, 7.28);
  background: linear-gradient(180deg, rgba(214, 177, 63, 0.22) 100%, rgba(214, 177, 63, 0.32) 0%);
}

.carrusel .border-yellow{
  border-color: var(--color-secundario);
}

.carrusel .border-blue{
  border-color: var(--color-primario);
}



.carrusel .beneficios{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.carrusel .beneficios span{
    color: var(--color-blanco);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carrusel .beneficios i{
    color: #f8c537;
}
/* carrusel */
/* ================================= CARRUSEL ================================= */

.carrusel {
  /* background-color: var(--color-gris); */
  border-radius: 10px;
  font-weight: bold;
  min-height: 400px
}
.carrusel h1{
  font-size: 3.5rem;
font-weight: 700;
line-height: 1.1;
}

.carrusel .container {
  min-height: 400px;
  /* mismo valor */
  display: flex;
  align-items: center;
}

.carrusel .carrusel-slide {
background: rgba(16, 97, 163, 1);
background: linear-gradient(265deg,rgba(16, 97, 163, 1) 0%, rgba(50, 132, 199, 1) 100%);
}





.borde-carrucel {
  border: solid 4px var(--color-primario);
}

.carrusel-fondo {
  padding: 4rem 3rem;
  border-radius: 10px;
}

.carrusel-img {
 width: 100%;       /* Asegura que ocupe todo el ancho del contenedor */
  height: 340px;     /* Mantiene la altura fija que definiste */
  object-fit: cover; /* Recorta la imagen para llenar el área sin deformarse */
  object-position: center; /* Centra el recorte (puedes usar top, bottom, etc.) */
  
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.carrusel h1 {
  text-transform: inherit;
  font-weight: 800;

}

.carrusel p {
  text-transform: initial;
}

/* botones */

/* Ocultar botones por defecto */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  /* Bootstrap pone 15% por defecto, reduce este valor */
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

/* Mostrar cuando hay mouse */
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1 !important;
}

/* Cambiar color de las flechas */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
  /* azul */
  /* cambia hue-rotate para otro color:
       0deg   = rojo
       90deg  = verde
       180deg = azul
       270deg = morado */
}


 .carrusel .hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom:10px;

}

.carrusel  .carrusel-fondo1{
  background: rgba(214, 177, 63, 7.28);
  background: linear-gradient(180deg, rgba(214, 177, 63, 0.22) 100%, rgba(214, 177, 63, 0.32) 0%);
}

.carrusel .border-yellow{
  border-color: var(--color-secundario);
}

.carrusel .border-blue{
  border-color: var(--color-primario);
}



.carrusel .beneficios{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.carrusel .beneficios span{
    color: var(--color-blanco);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.carrusel .beneficios i{
    color: #f8c537;
}

/* footer */


.footer-custom {
    padding: 3rem;
    color: var(--color-blanco);
    background-color: var(--color-primario);
    border-radius: 10px;

}


.footer-separacion {
    padding: 20px;
}

.footer-upparcase{
    text-transform: uppercase;
}
.footer-title {
    font-size: 2.5rem;
}

.footer-text {
    font-size: 1.5rem;
}


/* 
@media (max-width: 911px) {

    .footer .col-lg-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
} */



.footer-link {
    padding: 1rem;
}



@media (max-width: 911px) {

    .lista-footer {
        margin-bottom: 30px;
    }

}

.google-map {
    width: 100%;
    height: 300px;

}

.google-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


/* ================================= DATOS ================================= */

.datos {
  padding: 2rem 0;
  text-transform: uppercase;

}

.aliadas {
  background-color: var(--color-gris);
}

/* === RESPONSIVE=== */

@media (max-width: 991px) {
    .footer-margen {
        margin-left: 0px;
        margin-bottom: 0px;

    }
}


@media (max-width: 991px) {
    .linea-asesoria {
        border-right: 2px solid var(--color-blanco);
        border-bottom: none;
    }

}

/* hero */


.hero {
  padding-top: 1rem;
  /* IMPORTANTE por navbar fixed */
  padding-bottom: 30px;
  justify-content: space-evenly;
}


.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}

/* .titulo-custom{
  position: relative;

} */
.titulo-custom::after {
  content: "";
  display: block;
  width: 7rem;
  height: 4px;
  background-color: var(--color-secundario);
  /* amarillo */
  margin: 8px auto 0;
  /* centra la línea */
  border-radius: 2px;
}

.titulo-custom-left::after {
  margin: 8px auto 0;
}

/* navbar */

.top-bar {
    background-color: var(--color-primario);
    height: 3rem;
    width: 100%;
}

/* ================================= NAV ================================= */
.nav-custom {
    background-color: var(--color-blanco);
    padding: 9px 0;
    font-weight: bold;

}

.navbar-nav {
    gap: 1rem;
}


/* =================================  LOGO  =================================*/
.logo {
    color: var(--color-primario);
    font-size: 2.5rem;
    font-weight: bold;
    padding: 0 1rem;
}

.navbar-lista {
    margin-right: 1rem;
    font-weight: bold;
}

@media (min-width:1440px ) {
  .navbar-gap{
  gap:9rem
}   
}


.imagen_logo {
    height:10rem;
    width: auto;
}
.imagen_logo2 {
    height: 7rem;
    width: auto;
}
.modal-image{
  width: 7rem;
  margin-bottom: 1.5rem;
}

/* ================================= LINKS =================================*/
.nav-custom .nav-link {
  color: var(--color-negro);
  margin-left: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: bold;
  transition: background-color color .3s ease;

}
.nav-custom .nav-link:hover {
  background-color: var(--color-primario);
  color: var(--color-blanco);
}

/* quita el hover */


.navbar-brand:hover {
    color: var(--color-primario);
    /* evita que cambie a negro */
}


.nav-item-footer {
    color: var(--color-blanco);
    transition: background-color color .3s ease;
    padding: 1rem 2rem;
    border-radius: 1rem;
}

.nav-item-footer:hover {
    background-color: var(--color-blanco);
    color: var(--color-primario);
    
    transform: translateY(5px);
    
}

/* arl */

/* .aliados-carrusel {
    padding: 2rem;
    border-radius: 1rem;
    height: 100%;
    transition:
        transform .3s ease,
        background-color .3s ease,
        color .3s ease;
    cursor: pointer;
} */

/* home*/




/* ================================= EMPRESAS ALIADAS ================================= */

/* contenedor principal */
.logos-slider {
  overflow: hidden;
  padding: 40px 0;
  background: var(--color-blanco);
  position: relative;
  width: 100%;
  border-radius: 10px;
}

/* riel(track) */
.logos-track {
  display: flex;
  width: max-content;
  animation:
    scroll-infinito
    /* nombre de la animacion */
    40s
    /* duracion */
    linear infinite;
  /* repetir para siempre */
}

.logos-track img {
  width: 140px;
  height: 70px;
  /* Alto fijo para que se vean alineadas */
  margin: 0 40px;
  /* Espacio entre logos */
  object-fit: contain;
  /* Mantiene la proporción del logo sin estirarlo */
  flex-shrink: 0;
  /* IMPORTANTE: evita que los logos se aplasten */
  transition: transform 0.3s ease;
}

/* animacion */
@keyframes scroll-infinito {

  /* defina como se movera la animacion */
  0% {
    transform: translateX(0);
  }

  /* no se mueve nada */
  /* Desplazamos exactamente la mitad del ancho total del track */
  100% {
    transform: translateX(-50%);
  }

  /* mueve todo el track hacia la izquierda*/
}

/* detener movimiento con mouse ensima */

/* .logos-slider:hover .logos-track {
  animation-play-state: paused;
} */



/* ================================= EXPERIENCIA EN CIFRAS ================================= */

.cifras {
  background-color: var(--color-primario);
  color: var(--color-blanco);
  font-size: 2rem
}

.cifras h3 {
  font-size: 4rem;
  font-weight: 700;
}



@media (max-width: 991px) {
  .linea-datos {
    border-right: none;
    border-bottom: 2px solid var(--color-blanco);
    padding-bottom: 10px;
    margin-bottom: 10px;


  }

  .cifras :last-child {
    border-bottom: none;
  }
}

.cifras :last-child {
  border-right: none;
}

/* ================================= ASESORIA ================================= */

.asesoria {
  background-color: var(--color-primario);
  color: var(--color-blanco);
  padding: 2rem 3rem;
  border-radius: 10px;
}


.asesoria-s {
  font-weight: bold;
  font-weight: 1.5rem;
}

.texto-s {
  color: var(--color-secundario);
}

.btn-asesoria {
  font-size: 1.3rem;
  font-weight: bold;
}

.linea-datos-asesoria {
  position: relative;
  padding: 10px 20px;
}

/* Línea vertical */
.linea-datos-asesoria::after {
  content: "";
  position: absolute;

  top: 10%;
  bottom: 10%;

  right: 0;
  width: 2px;

  background-color: var(--color-blanco);
}

@media (max-width: 991px) {

  .linea-datos-asesoria::after {
    display: none;

  }

  .linea-datos-asesoria {
    border-bottom: 2px solid var(--color-blanco);
    margin-bottom: 30px;
  }

}

/*movilidad */
.card-movilidad {
    padding: 1rem;
    border-radius: 1rem;
    height: 67px;
    transition: transform .3s ease, background-color .3s ease, color .3s ease;
    cursor: pointer;
    border: 3px solid;
    border-color: var(--color-primario);
}
.card-movilidad:hover{
    border-color: var(--color-secundario);
}

/* nosotros */


/* mq */

@media (max-width: 911px ) {
    
.nosotros-linea{  
    border:none ;
}

}

.bg-imagen{
    background-image: url('../../img/fondo-personas.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

/* salud */



/* AXA CUSTOM */

.texto-axa {
    background: #EE3124;
    background: linear-gradient(to right, #EE3124 20%, #0033A0 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.axa-card-hover:hover {
    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(312deg,
            rgba(0, 0, 143, 1) 50%,
            rgba(238, 49, 36, 1) 100%) border-box;

}

.axa-card-hover:hover .titulo-axa h2,
.axa-card-hover:hover .titulo-axa p {
    background: linear-gradient(312deg,
            #EE3124,
            #0033A0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}


/* SEGUROS BOLIVAR */
.texto-sbolivar {
    background: #00843D;
    background: linear-gradient(to right, #00843D 20%, #E3B900 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.sb-card-hover:hover {

    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(312deg,
            rgba(255, 209, 0, 1) 50%,
            rgba(0, 155, 77, 1) 100%) border-box;
}

.sb-card-hover:hover .titulo-sb h2,
.sb-card-hover:hover .titulo-sb p {
    background: linear-gradient(312deg,

            #E3B900,
            #00843D);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}



/* allianz */

.texto-al {
    background: #00A3E0;
    background: linear-gradient(to right, #00A3E0 20%, #003DA5 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.al-card-hover:hover {
    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(124deg,
            rgba(0, 61, 165, 1) 17%,
            rgba(235, 235, 235, 1) 91%) border-box;
}

.al-card-hover:hover .titulo-al h2,
.al-card-hover:hover .titulo-al p {
    background: linear-gradient(312deg,

            #00A3E0,
            #003DA5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}



/* BMI  */
.texto-bmi{
    background: #0057B8;
background: linear-gradient(to right, #0057B8 20%, #00AEEF 75%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


.bmi-card-hover:hover {

    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(318deg,
            rgba(0, 87, 184, 0.95) 45%,
            rgba(0, 174, 239, 0.75) 100%) border-box;
}

.al-card-hover:hover .titulo-al h2,
.al-card-hover:hover .titulo-al p {
    background: linear-gradient(312deg,

            #0057B8,
            #00AEEF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}


/* positiva */


.positiva-card-hover:hover {

    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(134deg,rgba(245, 130, 32, 1) 49%, rgba(227, 227, 227, 1) 82%) border-box;
}

.po-card-hover:hover .titulo-po h2,
.po-card-hover:hover .titulo-po p {
    background: linear-gradient(312deg,

            #F58220,
            #FFFFFF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}

/* colmena seguros */

.colmena-card-hover:hover {

    border: 4px solid transparent;
    border-radius: 20px;

    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(153deg,rgba(34, 195, 171, 1) 13%, rgba(253, 187, 45, 1) 77%) border-box;
}

.co-card-hover:hover .titulo-co h2,
.co-card-hover:hover .titulo-co p {
    background: linear-gradient(312deg,

            #22C3AB,
            #FDBB2D);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* necesario para que funcione */
}

/* vida */
.lbottom-vida{
    border-bottom: 3.5px;
    border-bottom-style: solid;
    border-color: var(--color-texto-secundario);
}


.lbottom-vida:hover{
    border-bottom-style: solid;
    border-color: var(--color-secundario);

}

/* normalaize */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}