/* ==================================
   PORTADA
================================== */

.portada-testimonios {
  width: 100%;
  min-height: 560px;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62),
      rgba(0, 0, 0, 0.2)
    ),
    url("../img/testimonios.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portada-contenido-testimonios {
  min-height: 560px;

  display: flex;
  align-items: center;
}

.texto-portada-testimonios {
  width: 680px;
  max-width: 100%;
}

.texto-portada-testimonios h1 {
  margin-bottom: 22px;

  color: #ffffff;

  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
}

.texto-portada-testimonios strong {
  display: block;

  color: #79ef7e;

  font-weight: 900;
  font-style: italic;
}

.texto-portada-testimonios p {
  width: 560px;
  max-width: 100%;

  color: #ffffff;

  font-size: 19px;
  line-height: 1.6;
}

/* ==================================
   SECCIÓN DE TESTIMONIOS
================================== */

.seccion-testimonios {
  padding: 80px 0;

  background-color: var(--crema);
}

.encabezado-testimonios {
  width: 760px;
  max-width: 100%;

  margin: 0 auto 48px;

  text-align: center;
}

.encabezado-testimonios span {
  display: inline-block;

  margin-bottom: 12px;
  padding: 8px 18px;

  border-radius: 30px;

  color: var(--verde-principal);
  background-color: #dcebdc;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.encabezado-testimonios h2 {
  margin-bottom: 18px;

  color: var(--verde-principal);

  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.15;
}

.encabezado-testimonios p {
  color: var(--gris);

  font-size: 17px;
  line-height: 1.7;
}

.lista-testimonios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

/* ==================================
   TARJETAS
================================== */

.tarjeta-testimonio {
  min-height: 420px;

  padding: 30px;

  border: 1px solid rgba(56, 102, 65, 0.13);
  border-radius: 28px;

  display: flex;
  flex-direction: column;

  background-color: #ffffff;

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tarjeta-testimonio:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.13);
}

.icono-material {
  width: 82px;
  height: 82px;

  margin-bottom: 20px;
  padding: 14px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #eaf5e9;
}

.icono-material img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.estrellas {
  margin-bottom: 20px;

  color: #e7a923;

  font-size: 20px;
  letter-spacing: 4px;
}

.texto-testimonio {
  margin-bottom: 30px;

  color: #4f5551;

  font-size: 16px;
  line-height: 1.75;
}

.persona-testimonio {
  margin-top: auto;

  padding-top: 22px;

  border-top: 1px solid #e1e5e2;

  display: flex;
  align-items: center;

  gap: 14px;
}

.avatar-testimonio {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: var(--verde-principal);

  font-size: 15px;
  font-weight: 900;
}

.persona-testimonio h3 {
  margin-bottom: 4px;

  color: var(--verde-principal);

  font-size: 17px;
  font-weight: 900;
}

.persona-testimonio p {
  color: var(--gris);

  font-size: 14px;
}

/* ==================================
   LLAMADO A LA ACCIÓN
================================== */

.seccion-participar {
  padding: 65px 0;

  background-color: var(--verde-principal);
}

.participar-contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}

.texto-participar {
  width: 720px;
  max-width: 100%;
}

.texto-participar span {
  display: block;

  margin-bottom: 10px;

  color: #bde7b7;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.texto-participar h2 {
  margin-bottom: 14px;

  color: #ffffff;

  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.texto-participar p {
  color: #e4efe5;

  font-size: 17px;
  line-height: 1.7;
}

.boton-solicitud {
  flex-shrink: 0;

  padding: 16px 25px;

  border-radius: 30px;

  color: var(--verde-principal);
  background-color: #ffffff;

  font-size: 15px;
  font-weight: 900;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.boton-solicitud:hover {
  transform: translateY(-3px);

  background-color: #dcebdc;
}

/* ==================================
   TABLET
================================== */

@media (max-width: 900px) {

  .portada-testimonios,
  .portada-contenido-testimonios {
    min-height: 500px;
  }

  .lista-testimonios {
    grid-template-columns: 1fr;
  }

  .tarjeta-testimonio {
    min-height: auto;
  }

  .participar-contenido {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* ==================================
   CELULAR
================================== */

@media (max-width: 600px) {

  .portada-testimonios,
  .portada-contenido-testimonios {
    min-height: 440px;
  }

  .texto-portada-testimonios h1 {
    font-size: 38px;
  }

  .texto-portada-testimonios p {
    font-size: 16px;
  }

  .seccion-testimonios {
    padding: 55px 0;
  }

  .tarjeta-testimonio {
    padding: 24px;

    border-radius: 22px;
  }

  .seccion-participar {
    padding: 50px 0;
  }

  .boton-solicitud {
    width: 100%;

    text-align: center;
  }

}