* {
    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: 1000px;
  margin: auto;
  gap: 40px;
}

.about-profile {
  position: relative;
}

.about-image {
  width: 300px;
  height: 400px;
  border-radius: 30px;
  background-image: url('../img/dent1.jpg'); 
  background-size: cover;
  background-position: top;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-label {
  color: #03c3d0;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.4rem;
  color: #0f2239;
  margin-bottom: 20px;
}

.about-description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-button {
  display: inline-block;
  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-image {
    margin-bottom: 20px;
  }
}


.insurance-cards {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  
}

.insurance-cards h2 {
  text-align: center;
  color: #01c4d4;
  font-size: 2rem;
  margin-bottom: 40px;
}

.insurance-card {
  display: flex;
  align-items: flex-start;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px 30px;
  margin-bottom: 30px;
  gap: 20px;
  background: #f9f9f9;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.icon-box {
  font-size: 2.8rem;
  color: #01c4d4;
  min-width: 60px;
  margin-top: 6px;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #333;
}

.card-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
}



@media screen and (max-width: 700px) {
  .insurance-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-box {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}













.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;
}
