/*- Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%);
}

/* Estilo del textbox */
.hero-textbox {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.5s ease-out forwards;
}

.hero-textbox h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--clr-naranja);
  letter-spacing: 3px;
}

.hero-textbox p {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 2px;
}
.hero-textbox span {
  color: var(--azul-primario);
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 2px;
}

/* Animación */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
      color: #484848;
    }

    /* QUIÉNES SOMOS SECTION */
.container-qs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.box-reco {
  flex: 1 1 55%;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.box-reco h3 {
  color: #0f3d2e;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.box-reco p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  color: #333;
}

.container-qs img {
  flex: 1 1 40%;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-textbox h1 {
    font-size: 2.2rem;
  }

  .hero-textbox p {
    font-size: 1rem;
  }

  .container-qs {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .container-qs img {
    order: -1;
  }
}

/* - Seccioón de Misión, Visión y Valores */
    .container-sms {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.box-sms {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.textbox-sms {
  flex: 1 1 45%;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.textbox-sms h3 {
  color: #0f3d2e;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.textbox-sms p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.textbox-sms img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.textbox-smv {
  background-color: #eef7f2;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.textbox-smv h3 {
  font-size: 1.8rem;
  color: #0f3d2e;
  margin-bottom: 1.5rem;
}

.box-smv {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.box-smv ul {
  flex: 1 1 60%;
  list-style: none;
  padding-left: 0;
}

.box-smv ul li {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.box-smv ul li strong {
  color: #ff9900;
}

.box-smv img {
  flex: 1 1 35%;
  max-width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .box-sms,
  .box-smv {
    flex-direction: column;
  }

  .textbox-sms,
  .textbox-smv {
    padding: 1.5rem;
  }

  .box-smv ul {
    flex: 1 1 100%;
  }

  .box-smv img {
    flex: 1 1 100%;
  }
}
