/* ===================================================================
   Abundia — Home (index.html)
   Requiere base.css
   =================================================================== */

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 20 26 / 20%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-block: 70px 90px;
}
.hero__eyebrow {
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero__title {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.hero__script {
  font-size: 60px;
  line-height: 1.05;
  margin: 4px 0 22px;
}
.hero__lead {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 30px;
}
.hero__art img {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

/* ===================================================================
   ALTO ESTÁNDAR
   =================================================================== */
.estandar {
  background-color: var(--gray-bg);
  padding-block: 70px 90px;
}
.estandar__script {
  text-align: center;
  font-size: 64px;
  line-height: 1.1;
  margin: 0 0 50px;
}
.estandar__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 40px;
}
.estandar__title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 22px;
}
.estandar__text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 14px;
}
.estandar__text .btn { margin-top: 18px; }
.estandar__art img { width: 100%; }

/* ===================================================================
   ACCESORIOS POS
   =================================================================== */
.pos {
  position: relative;
  overflow: hidden;
}
.pos__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pos::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(13 20 26 / 20%);
  z-index: 1;
}
.pos__inner {
  position: relative;
  z-index: 2;
  padding-block: 70px 80px;
  text-align: center;
}
.pos__title {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin: 0 0 16px;
}
.pos__subtitle {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 46px;
}
.pos__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.card {
  background-color: var(--cream);
  border-radius: 16px;
  padding: 16px 16px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}
.card__media {
  background-color: var(--lime);
  border-radius: 12px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 22px;
}
.card__media img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.card__title {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--green);
  margin: 0 8px 12px;
}
.card__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
  margin: 0 8px;
}

/* ===================================================================
   FRASE
   =================================================================== */
.quote {
  background-color: var(--lime);
  padding-block: 70px;
  text-align: center;
}
.quote__text {
  font-family: Montserrat, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 26px;
}
.quote__author {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin: 0;
}

/* ===================================================================
   CLIENTES
   =================================================================== */
.clients {
  background-color: #fff;
  padding-block: 70px 80px;
  text-align: center;
}
.clients__logos {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 40px;
}
.clients__title {
  font-family: Raleway, sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--green);
  margin: 0 0 10px;
}
.clients__note {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 48px 60px;
  }
  .hero__lead { margin-inline: auto; }
  .hero__art { order: -1; }
  .hero__title { font-size: 42px; }
  .hero__script { font-size: 46px; }

  .estandar__inner { grid-template-columns: 1fr; }
  .estandar__art { order: -1; }
  .estandar__script { font-size: 42px; }

  .pos__cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  .quote__text { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 34px; }
  .hero__script { font-size: 38px; }
  .estandar__script { font-size: 34px; }
  .pos__title { font-size: 30px; }
}
