
.header-container {
  display: flex;
  justify-content: center; /* centrado por defecto */
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
  position: relative;
}

/* El logo por defecto centrado */
.logo-container {
  text-align: center;
  flex: 1 1 100%;
}

.main-header {
  background-color: #f4f4f4;
  padding: 10px 20px;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo a la izquierda */
.header-logo {
  flex: 1;
}

.logo-img {
  height: 60px;
}

/* Botones a la derecha */
.header-buttons {
/*  display: flex;
  align-items: center;
  gap: 10px;*/
  
   position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Botón cotiza */
.btn-cotiza {
  background-color: #00525A;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.btn-cotiza:hover {
  background-color: #008bb7;
}



.btn-wsp{
position: fixed;
    width: 200px;
   /* height: 80px;*/
    line-height: 80px;
    bottom: 63%;
    right: 20px;
    /*background: #28BD6B;*/
    color: #fff;
    border-radius: 50px;
    text-align: center;
    /*font-size: 50px;*/
    /*box-shadow: 0px 1px 10px rgba(0,0,0,0.3);*/
    z-index: 100;
}


.btn-wsp:hover{
text-decoration: none;
color:#0df053;
/*background:#fff;*/
}

.hhdescrip:hover{
text-decoration: none;
color:#fff;
background:#434b51;
}

.btn-wspdial{
    position: relative;
    width: 65px;
    height: 60px;
    line-height: 60px;
    bottom: 53%;
    /* right: -30px; */
    left: 300px;
    background: #0df053;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index: 100;
    margin-bottom: -70px;
}
.btn-wspdial:hover{
text-decoration: none;
color:#0df053;
background:#fff;
}



.hero-section {
  position: relative;
  background: url('img/banner.jpg') no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: left;
  padding: 0 20px;
}

/* TEXTO */
.hero-content {
  max-width: 600px;
  margin-top: 80px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5rem;
}

/* MENÚ EN HERO */


.menu-wrapper-superpuesto {
   position: absolute;
  top: 59px; /* ajusta según lo que necesites */
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}


.menu-responsivo {
  max-width: 1024px;
  margin: 0 auto;
  padding: 10px 20px;
  font-family: 'Work Sans', sans-serif;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-logo {
  background-color: #00ACD0;
  border: none;
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: none; /* se activa en responsive */
}

.menu-toggle {
  background-color: #00ACD0;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  display: none; /* se muestra solo en responsive */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.menu-toggle .bar {
  display: block;
  width: 20px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-lista {
  list-style: none;
  margin: 10px auto;
  padding: 10px 20px;
  background-color: #2ea9cd;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap; /* ❌ evita salto de línea antes de tiempo */
  overflow-x: auto;   /* ✅ permite deslizar en pantallas medianas */
  max-width: 100%;
  box-sizing: border-box;
}

.menu-lista li {
  margin: 0;
  list-style: none;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 20px;
  transition: background 0.3s;
}

.menu-link:hover {
  background-color: #2ea9cd;
}

/*
@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  .menu-lista {
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
  }

  .menu-lista.activo {
    display: flex;
  }

  .menu-link {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}
*/
@media (max-width: 600px) {
  .menu-toggle {
    /*display: block;*/
	display: flex;
  }

  .menu-lista {
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
  }

  .menu-lista.activo {
    display: flex;
  }

  .menu-link {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
  .menu-wrapper-superpuesto {
	  left: 84%;
  }
  
   .logo-container {
    text-align: left;
    flex: 1 1 auto;
  }

  .header-container {
    justify-content: space-between;
  }
  
}










/*******************************************************/
/* WHATSAPP */
.whatsapp-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.whatsapp-icon {
  width: 140px;
  height: 140px;
  cursor: pointer;
  filter: drop-shadow(7px 4px 4px #000000);
}

/* TOOLTIP */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  padding: 6px 10px;
  position: absolute;
  top: -40px;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}


.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
  max-width: 600px;
  margin-left: 60px;
  bottom: 20%;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.2rem;
}

.div-con-flecha {
  background-color: #ffffff;
  position: relative;
  height: 40px;
}

.linea-superior {
  height: 16px;
  background: linear-gradient(to right, #1b4a58, #2ea9cd);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flecha-container {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.flecha-circulo {
  width: 36px;
  height: 36px;
  background-color: #00778e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/*
---------------------------------------

*/

.quienes-somos {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

.quienes-somos .titulo {
  font-size: 2rem;
  color: #003b4d;
  font-weight: 700;
  margin-bottom: 20px;
}

.quienes-somos .parrafo {
  font-size: 1.1rem;
  color: #2c3e50;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

.quienes-somos .azul-oscuro {
  color: #00b0e6;
  font-weight: bold;
}

.quienes-somos .resaltado {
  color: #00b0e6;
  font-weight: bold;
}
/*
---------------------------------------

*/

.confianza {
  background: linear-gradient(to right, #1b4a58, #2ea9cd);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.confianza-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.confianza-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.confianza-item {
  flex: 1 1 200px;
  max-width: 220px;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
}

.img-icon {
  width: 40px;
  height: auto;
}

.confianza-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.separator {
  width: 3px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
  
}



/*
---------------------------------------

*/

.mision-vision-objetivo {
  background-color: #fff;
  padding: 80px 20px 129px 0px;
  /*height: 250px;*/
}

.container-mvo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: -105px auto;
}

.card-mvo {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
  margin: 0px 10px 0px 50px;
}

.card-mvo h3 {
  color: #2ea9cd;
  margin-bottom: 15px;
  font-size: 1.5rem;
   font-weight: bold;
}

.card-mvo p {
  font-size: 13px;
  line-height: 1.6;
  color: #1b4a58;
  text-align: justify;
}

.card-mvo:hover {
  transform: translateY(-5px);
}



/*
---------------------------------------

*/


.beneficios {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.titulo-beneficios {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #003b4d;
}

.circulos-contenedor {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 300px;
}

.circulos-bg {
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
}

/* Posición y estilo de cada ítem */
.beneficio-item {
  position: absolute;
  width: 180px;
  z-index: 2;
  text-align: center;
  font-size: 0.9rem;
  color: #003b4d;
}

.beneficio-item h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #005d7f;
  margin-bottom: 5px;
}

.beneficio-item p {
  margin: 0;
}

/* Coordenadas específicas para alinear con los círculos del PNG */
.item1 { top: 0; left: 2%; }
.item2 { top: 0; left: 22%; }
.item3 { top: 0; left: 42%; }
.item4 { top: 0; left: 62%; }
.item5 { top: 0; left: 82%; }




/*
---------------------------------------

*/
.circulos-linea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 60px 20px;
  background-color: #fff;
  flex-wrap: wrap;
}

.circulo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 10px;
}

.circulo-principal {
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom right, #f0f0f0, #dcdcdc);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
}

.punto {
  width: 20px;
  height: 20px;
  background-color: #bcd4e0;
  border-radius: 50%;
}

.superior {
  margin-bottom: 10px;
}

.inferior {
  margin-top: 10px;
}

.punto-intermedio {
  width: 20px;
  height: 15px;
  background-color: #bcd4e0;
  border-radius: 50%;
  margin: 0 5px;
  align-self: flex-end;
  margin-bottom: 80px;
}

/* Línea azul decorativa */
.linea-decorativa {
  width: 80px;
  height: 8px;
  background-color: #00b0e6;
  border-radius: 4px;
  margin-top: 10px;
}

.con-linea .linea-decorativa {
  display: block;
}

/*
---------------------------------------

*/

.seccion-beneficios {
  background-color: #f9f9f9; /* fondo gris muy claro */
  padding: 25px 20px;
  text-align: center;
  margin-top: 0px;
    color: #1b4a58; /* tono azul oscuro para elegancia */
}

.titulo-beneficios {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1b4a58; /* tono azul oscuro para elegancia */
  margin: 0;
}

/*
---------------------------------------

*/

.seccion-circulos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #fff;
}

.bloque-circulo {
  text-align: center;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Texto arriba y abajo */
.texto-superior,
.texto-inferior {
  font-weight: bold;
  color: #005d7f;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Semicírculo azul */
.circulo-externo {
  width: 150px;
  height: 150px;
  background-color: #2ea9cd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Corta la mitad superior */
.circulo-externo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff; /* color del fondo */
  z-index: 1;
}

/* Círculo gris central */
.circulo-interno {
  width: 120px;
  height: 120px;
  background-color: #dcdcdc;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0px 0px 0px 5px #2ea9cd;
}

.texto-interno {
  font-size: 0.75rem;
  color: #00769e;
  line-height: 1.2;
  z-index: 3;
}

/*************************************************/
.caracteristicas {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
 /* color:#1b4a58;*/
}

.titulo-caracteristicas {
  font-size: 2rem;
  color: #1b4a58;
  margin-bottom: 40px;
}

.contenedor-cajas {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}
.caja {
  background: linear-gradient(to bottom, #2ea9cd, #4EC1D6);
  border-radius: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  max-width: 120px;
  height: 300px;
  padding: 20px 10px;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 300px;
  height: 300px;
   scroll-snap-align: start;
}
.contenedor-cajas::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .caja {
    min-width: 200px;
    max-width: 200px;
  }

  .caja.activo {
    min-width: 280px;
    max-width: 280px;
  }
}

/* Vista escritorio (centrado) */
@media (min-width: 769px) {
  .contenedor-cajas {
    justify-content: center;
  }
}

/* Vista móvil (scroll horizontal) */
@media (max-width: 768px) {
  .contenedor-cajas {
    justify-content: flex-start;
  }
}

.caja h3,
.caja p {
  display: none;
}

.caja.activo {
  background: linear-gradient(to bottom, #b3e6f5, #a0e0f5);
  color: #1b4a58;
  min-width: 300px;
  max-width: 300px;
  align-items: flex-start;
  padding: 30px 20px;
  text-align: left;
}
/*.caja.activo {
  flex: 0 0 300px;
  max-width: 300px;
  align-items: flex-start;
}*/


.caja.activo h3,
.caja.activo p {
  display: block;
}

.texto-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  font-size: 0.85rem;
  text-align: center;

  /* 👉 Estas líneas son la clave */
  display: flex;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 40px; /* ajusta este valor según la posición deseada */
  box-sizing: border-box;
	
	
	
	
	}



.caja.activo .texto-vertical {
  display: none;
}

.numero-circulo {
  width: 30px;
  height: 30px;
  background-color: white;
  color: #00b0e6;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 10px;
}


/**********************************************/>

.servicios {
  text-align: center;
  padding: 60px 20px;
  color:#1b4a58;
  background: #ffff;
  
}
.ima-servicios{
	width: 40% !important;
}

.servicios-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.servicios-header h2 {
  font-size: 2.2rem;
  color: #00323d;
  margin-bottom: 10px;
  text-align: center;
}

.servicios-header p {
  font-size: 1.1rem;
  color: #444;
  text-align: center;
}

.swiper {
  width: 90%;
  padding-bottom: 63px;
  padding-top: 30px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.card {
   background: white;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  min-height: 260px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  background: radial-gradient(#fff, transparent);
  align-items: center;
}

.card h3 {
  font-size: 1.2rem;
  color: #00323d;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 15px 0;
}

.card a {
  color: #00323d;
  font-weight: bold;
  text-decoration: none;
}

/* Elemento central activo */
.swiper-slide-active .card {
  background: #00ACD0;
  color: white;
  transform: scale(1.15);  
  width: 300px; 
  min-height: 260px;  
  align-items: center; 
}

.swiper-slide-active .card h3,
.swiper-slide-active .card p,
.swiper-slide-active .card a {
  color: white;
}

.swiper-pagination {
  margin-top: 20px;
}
.oculto {
  display: none;
}
.title_serv{
	font-weight: bold;
	font-size:14px;
}

.text-gancho{
	font-weight: bold;
	font-size:13px;
	 text-align: justify;
	
}
.text-gancho-descrip{
	/*font-weight: bold;
	font-size:12px;
	 text-align: justify;*/
}

/**************************************************/
.carrusel-aseguradoras {
  padding: 0px 0;
  background-color: #f7f7f7;
  text-align: center;
}

.aseguradoras-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aseguradoras-swiper img {
  max-height: 60px;
  width: auto;
  opacity: 0.7;
  transition: 0.3s ease;
}

.aseguradoras-swiper img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.swiper.aseguradoras-swiper {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

/**************************************************/
.seccion-info {
  width: 100%;
  padding: 0px 20px;
  background-color: #ffffff;
}

.bloque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.bloque.reverse {
  flex-direction: row-reverse;
}

.bloque .texto {
  flex: 1;
  min-width: 300px;
  color: #002b3d;
}

.bloque .texto h2 {
  font-size: 28px;
  color: #00525A;
  margin-bottom: 15px;
}

.bloque .texto .subtitulo {
  color: #00b0e6;
  font-weight: 500;
  font-size: 20px;
}

.bloque .texto p,
.bloque .texto ul {
  font-size: 16px;
  line-height: 1.6;
}

.bloque .texto ul {
  padding-left: 20px;
  list-style-type: disc;
}

.bloque .imagen {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.bloque .imagen img {
  max-width: 100%;
  height: auto;
}


.consiejo-p-text{
	    color: #1b4a58;
}
.consiejo-ul-text{
	    color: #1b4a58;
}
.consiejo-subtitle-text{
	    color: #1b4a58;
		font-size:18px
}



/**************************************************/
/*#1b4a58
#2ea9cd*/
.footer {
  background: linear-gradient(to right, #1b4a58, #2ea9cd);
  color: white;
  padding: 30px 20px 20px;
  font-family: 'Work Sans', sans-serif;
}
.logo-img-footer{
	height: 75px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.footer-col {
  flex: 1 1 220px;
  margin: 10px;
  
}

.dimensionlinefooter{
	    text-align: end;
	    flex: 1 1 220px;
    margin: 10px;
	width: 100%;
  max-width: 1180px;
  min-width: 300px;
  margin: 0 auto;
}

.logo-desc .logo-img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
 /* border-bottom: 1px solid rgba(255,255,255,0.3);*/
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 2px; /* o incluso 1px si quieres ultra compacto */
  font-size: 0.9rem;
  line-height: 1.2; /* más compacto aún */
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.oficina {
  font-weight: bold;
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: white;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.linea-final{
	font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
}

.logo-img-redsocial{
	    text-align: right;
		height: 25px;
		
}


.fa-check-list {
  list-style: none;
  padding-left: 0;
}

.fa-check-list li {
  position: relative;
  padding-left: 1.5em;
}

.fa-check-list li::before {
  content: "\f00c"; /* Unicode de FontAwesome para el check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #28a745;
  position: absolute;
  left: 0;
  top: 0.2em;
}

ul.lista-servicios {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.lista-servicios li {
  margin-bottom: 6px; /* menos espacio vertical */
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #fff; /* O el color que estés usando en el footer */
}

.icono-li {
  width: 10px;
  height: 10px;
  margin-right: 8px;
}

.inline{
	font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
    border-bottom: 5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.footer-col.logo-desc {
  flex: 2 1 600px; /* <- más "peso" que el resto */
}
/**************************************************/
/* Estilo base */

.icon-container i {
  font-size: 36px !important;  /* Ajusta como necesites */
  color: #018BB6;  /* Opcional: color */
}

@font-face {
  font-family: 'WorkSans';
  src: url('../font/WorkSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f1f1f1;
   min-width: 500px;
}

/* HEADER */
header {
  padding: 20px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.btn-quote {
  background-color: #00b0e6; /* Color para el botón */
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, rgba(0, 93, 127, 1) 0%, rgba(0, 176, 230, 1) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
}

.cta-btn {
  background-color: #00b0e6;
  padding: 15px 30px;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
}

/* ABOUT US SECTION */
.about-us {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

/* BENEFITS SECTION */
.benefits {
  background-color: #e7f7fc;
  padding: 50px 20px;
}

.benefit-cards {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.benefit-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
}

.benefit-card:hover {
  background-color: #f2f2f2;
}

/* SERVICES SECTION */
.services {
  padding: 50px 20px;
  text-align: center;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  cursor: pointer;
}

.service-card:hover {
  background-color: #f2f2f2;
}

/* CONTACT SECTION */
.contact {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.submit-btn {
  background-color: #00b0e6;
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #008ba3;
}

/* FOOTER */
footer {
  background-color: #005d7f;
  color: white;
  padding: 20px 0;
  text-align: center;
}


.link-ingresar {
  color: #ffffff; /* blanco, por ejemplo */
  text-decoration: none; /* opcional: quita el subrayado */
}
.link-ingresar:hover {
  color: #cccccc; /* al pasar el mouse */
  text-decoration: underline;
}

.titulo-peque{
    color: #1b4a58;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 10px;	
}

.texto-peque{
    color: #1b4a58;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 10px;	
}

.logo-img-cargador{
  max-width: 370px;  /* ajustá según necesidad */
  margin-bottom: 50px;
}

/*****/
.circulo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3); /* default rojo si no se sobrescribe */
    cursor: pointer;
    overflow: hidden;
  }

  .texto-hover {
  position: absolute; /* o absolute si prefieres */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #1b4a58;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 14px;

  /* visibilidad asegurada */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  /* Opcional: elimina transiciones si ya no las necesitas */
  transition: none;
  }

  .circulo:hover .texto-hover {
    opacity: 1;
    visibility: visible;
  }
 


/* Se muestra al hacer clic (agregamos esta clase desde JS) */
.texto-hover.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.texto-hover-long {
    position: absolute;
    top: 10px; 
    width: 130px;
    height: 167px;
    color: #1b4a58;
    font-size: 10px;
    text-align: center;
    border-radius: 6px;
    z-index: 2;
    display: none;
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    font-size: 12px;
}
.circulo-control{
	width: 140px; height: 140px; border-radius: 50%; background: #FFB3B3; background: rgba(255,255,255,0.3);
	
}


.img-primaria {
  display: none;
}
#img-primaria {
  display: none;
}
.img-secundaria {
  display: block;
}

/* Cuando la pantalla es >= 1024px, invertimos: */
@media (min-width: 1024px) {
  .img-primaria {
    display: block;
  }
  #img-primaria {
  display: none;
}

}

    .contenedor-principal {
      padding: 40px 20px;
    }
	
   .contenedor-principal h1 {
      font-size: 2.8rem;
      font-weight: 800;
      margin: 0 0 20px;
    }

  .contenedor-principal  p {
      font-size: 1.3rem;
      font-weight: 300;
      margin: 0 0 40px;
      line-height: 1.5;
    }

   .cta-box {
      background-color: #0A3C61;
      color: white;
      padding: 0px 25px;
      border-radius: 20px;
      display: inline-block;
      font-size: 13px;
      font-weight: bold;
      max-width: 90%;
	      position: relative;
    top: -81px;
    width: 75%;
    }

    .cta-box span {
      font-size: 1.4rem;
      margin-right: 8px;
    }

    @media (max-width: 480px) {
     .contenedor-principal h1 {
        font-size: 2rem;
      }

     .contenedor-principal p {
        font-size: 1rem;
      }

     .cta-box {
        font-size: 1rem;
        padding: 15px;
      }
    }
	
	
	.img-responsiva {
  width: 100%;
  max-width: 400px; /* Ajusta este valor según tu diseño */
  height: auto;
  display: block;
  margin: 20px auto;
}

@media screen and (max-width: 600px) {

  #botones-circulos{
	  display: none;
  }
}

/*Control para la visualización de los componenetes*/
@media screen and (max-width: 1024px) {
  #botones-circulos{
	  display: none !important;
  }
}



.img-secundaria {
  width: 100%;
  max-width: 1023px;
  min-width: 600px;
  height: auto;
  display: block;
  margin: auto;
/*  object-fit: contain;*/
}

/* Bloquea el escalado en resoluciones menores a 600px */
@media screen and (max-width: 599px) {
  .img-secundaria {
    width: 600px;
  }
 
 .texto-hover-long {
	width: 110px;
    height: 140px;
	font-size:11px;
  }
}

/* Bloquea el escalado en resoluciones mayores a 1023px */
@media screen and (min-width: 1024px) {
  .img-secundaria {
    width: 1023px;
	display: none;
  }
  
 
}
@media screen and (max-width: 1023px) {
  .texto-hover-long {
    width: 110px;
    height: 140px;
    font-size: 11px;
  }
}

@media (min-width: 1024px) {
  #botones-circulos-resp {
    display: none !important;
  }
}
/*
@media screen and (max-width: 600px) {
  .texto-hover-long {
    width: 110px;
    height: 140px;
    font-size: 11px;
  }
}*/