* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
 }
.hero-image {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro */
  z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  z-index: 2;
  max-width: 600px;
}

.hero-text p {
    font-size: 1.7rem;
    margin-bottom: 50px;
      font-weight: 600;
}
.hero-text h1 {
    font-size: 3.2rem;
      font-weight: 600;
}

.hero-btn {
  background-color: #01c4d4;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
}



.insurance-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.insurance-section i{
  font-size: 50px;
}
.insurance-title {
  font-size: 2rem;
  margin-bottom: 5rem;
  color: #01c4d4;
}
.cards-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.card {
  width: 190px;
  height: 254px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
   box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  position: relative;
  padding: 1.8rem;
  
  transition: 0.5s ease-out;
  overflow: visible;
  cursor: pointer;
}
.card-details {
  color: black;
  height: 100%;
  gap: .5em;
  display: grid;
  place-content: center;
}
.card-button {
  transform: translate(-50%, 125%);
  width: 60%;
  border-radius: 1rem;
  border: none;
  background-color: #01c4d4;
  color: #fff;
  font-size: 1rem;
  padding: .5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
}
.text-body {
  color: rgb(134, 134, 134);
}
.text-title {
  font-size: 1.5em;
  font-weight: bold;
}
.card:hover {
  border-color: #01c4d4;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}
.card:hover .card-button {
  transform: translate(-50%, 50%);
  opacity: 1;
}

.carrusel{
  height: 50vh;
  display: flex;
  align-items: center;
}

.carrusel-items{
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  gap: 3rem;
}

.carrusel-item{
  min-width: 300px;
  max-width: 300px;
  height: 150px;
}

.carrusel-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 40px;
  
}

.info-left {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  margin-left: 8%;
}

.info-left h2 {
  font-size: 2rem;
  color: #01c4d4;
  margin-bottom: 1rem;
  
}

.info-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.info-right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 400px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.info-card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
  position: relative;
  padding-left: 24px;
}

.info-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #01c4d4;
}

.contact-btn {
  background-color: #01c4d4;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #019aaa;
}


.coverage-section {
  position: relative;
  padding: 60px 30px;
  text-align: center;
  background-image: url('../img/mapa.png'); /* Cambia la ruta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.coverage-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(11, 93, 141, 0.8); /* Azul con transparencia */
  z-index: 2;
}

.coverage-section * {
  position: relative;
  z-index: 3;
}


.coverage-title {
  font-size: 2.2rem;
  color: #f0eeee;
  margin-bottom: 10px;
}

.coverage-subtitle {
  font-size: 1.1rem;
  color: #f0eeee;
  margin-bottom: 40px;
}

.coverage-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;

  border-radius: 16px;

}

.coverage-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
  text-align: left;
}

.coverage-grid li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #ffffff;
}



.support-section {
  background: #f9f9f9;
  padding: 60px 60px;
}

.support-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  height: 400px;
  margin: 10 auto;
}

.support-box {
  background: white;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-width: 400px;
}

.support-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.support-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #333;
}

.support-item i {
  font-size: 1.2rem;
  color: #01c4d4;
}

.support-text {
  max-width: 500px;
  text-align: left;
}

.support-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.support-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #01c4d4;
}

.support-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.support-section {
  position: relative;
  background: #f9f9f9;
  padding: 60px 30px;
  overflow: hidden;
}


@media screen and (max-width: 768px) {

  .hero-text {
    top: 40%;
    left: 5%;
    transform: translateY(-40%);
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .insurance-title {
    font-size: 1.6rem;
  }

  .cards-container {
    gap: 2rem;
  }

  .info-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
  }

  .info-left,
  .info-right {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .info-left h2 {
    font-size: 1.5rem;
  }

  .info-left p {
    font-size: 1rem;
  }

  .info-card {
    max-width: 90%;
  }

  .coverage-grid {
    gap: 20px;
    justify-content: center;
  }

  .support-container {
    flex-direction: column;
    height: auto;
    padding: 0 10px;
  }

  .support-box,
  .support-text {
    max-width: 100%;
    text-align: center;
  }

  .support-text h2 {
    font-size: 1.8rem;
  }

  .support-text p {
    font-size: 1rem;
  }
}
