/* =========================
   SOBRE NOSOTRAS
   ========================= */

/* Hero interno */
.page-hero{
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.25)),
              url("../images/stock/manosUnidas.png") center/cover no-repeat;
}

.page-hero__content{
  position: relative;
  text-align: center;
  color: #fff;
}

.page-hero__title{
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 64px);
  margin: 0;
}

.page-hero__subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,.88);
  font-size: 800 !important;
}

/* Estética de confianza */
.confianza-title{
  font-weight: 600;
  font-size: clamp(35px, 3.2vw, 35px);
  line-height: 1.05;
}

.confianza-text p{
  margin-bottom: 18px;
  max-width: 540px;
  line-height: 1.7;
}

.confianza-carousel img{
  height: 620px;
  width:auto;
  object-fit: cover;
  background: #fff;
}

/* Pastilla contacto */
.contact-pill{
  background: #fff;
  border-radius: 28px;
  padding: clamp(18px, 3vw, 34px);
}

.contact-pill__title{
  font-weight: 600;
  font-size: clamp(26px, 3vw, 46px);
  margin-bottom: 18px;
  color: var(--verde-hoja);
}

.pill-input{
  border-radius: 999px;
  padding: 12px 16px;
  background: #f4f4f4;
  border: 1px solid #eee;
}

.btn-pill{
  border-radius: 10px;
  padding: 12px 18px;
  white-space: nowrap;
}
.btn-pill[disabled]{
  opacity: .75;
  cursor: not-allowed;
}

@media (max-width: 992px){
  .confianza-carousel img{ height: 360px; }
}