* {
    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 h1 {
    font-size: 3.2rem;
      font-weight: 600;
}

.about-section {
  padding: 80px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex: 1;
  min-width: 280px;
  justify-content: center;
  flex-wrap: wrap;
}

.image {
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  width: 240px;
  height: 340px;
  flex-shrink: 0;
}

.image-left {
  background-image: url('../img/dent1.jpg');
}

.image-right {
  background-image: url('../img/dent2.jpg');
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-label {
  color: #03c3d0;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.2rem;
  color: #0f2239;
  margin-bottom: 20px;
}

.about-description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-button {
  display: inline-block;
  margin-top: 30px;
  background-color: #03c3d0;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-button:hover {
  background-color: #019aaa;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    justify-content: center;
  }

  .about-content {
    text-align: center;
  }
}


.plan-cards-section {
  padding: 60px 20px;
  background: #ffff;
  font-family: "Noto Sans", sans-serif;
}

.plan-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.plan-box {
  display: flex;
  align-items: flex-start;
  border-radius: 20px;
  padding: 30px;
  width: 500px;
  min-height: 300px;
  color: #fff;
  gap: 20px;
}

.plan-box.blue {
  background-color: #212455;
}

.plan-box.green {
  background-color: #03c3d0;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
}

.plan-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.plan-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .plan-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-box {
    width: 90%;
  }
}














.support-section {
    background: white;
  padding: 60px 60px;
}

.support-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1400px;
  height: 400px;
  margin: auto;
}

.support-box {
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #ccc;
  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: #fff;
  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;
  }

  .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;
  }
}



.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;
}
