/* ═══════════════════════════════════════════════════
   NOSOTROS — página propia (/nosotros)
   Estética dark premium de la marca: verde profundo + dorado.
   Incluye el tooltip y el toast de los easter eggs bíblicos.
   ═══════════════════════════════════════════════════ */

.ab {
  background: var(--black);
  color: var(--off-white);
  min-height: 100svh;
  padding-bottom: 90px;
}

/* ── HERO ── */
.ab__hero {
  padding: calc(var(--nav-h) + 70px) 0 50px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(28, 74, 58, .55) 0%, transparent 65%),
    var(--black);
  text-align: center;
}

.ab__title {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 14px 0 20px;
}

.ab__lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--gray-300);
  font-size: clamp(.98rem, 2.2vw, 1.1rem);
  line-height: 1.65;
}

/* ── SECCIONES ── */
.ab__section { padding: 60px 0; }

.ab__h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.ab__h2--center { text-align: center; margin-bottom: 34px; }

.ab__body {
  color: var(--gray-300);
  line-height: 1.75;
  margin: 0 0 15px;
  font-size: .97rem;
}
.ab__body--center { text-align: center; max-width: 560px; margin: 0 auto 26px; }
.ab__body strong { color: var(--off-white); }
.ab__body em { color: var(--gold-light); font-style: italic; }

.ab__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: center;
}

.ab__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245, 168, 0, .18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
}
.ab__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── VALORES ── */
.ab__values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}

.ab__value {
  background: linear-gradient(160deg, rgba(36, 90, 71, .30) 0%, rgba(13, 15, 14, .60) 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.ab__value:hover {
  border-color: rgba(245, 168, 0, .30);
  transform: translateY(-3px);
}

.ab__value-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }

.ab__value-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0 0 9px;
  color: var(--off-white);
}

.ab__value-body {
  color: var(--gray-300);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* Frases con versículo oculto: se insinúan con un subrayado dorado tenue,
   lo justo para invitar a detenerse encima sin gritar "haz clic aquí". */
.ab__verse-anchor {
  color: var(--gold-light);
  cursor: help;
  border-bottom: 1px dashed rgba(245, 168, 0, .38);
  padding-bottom: 1px;
  transition: border-color .3s ease;
}
.ab__verse-anchor:hover,
.ab__verse-anchor:focus-visible {
  border-bottom-color: var(--gold);
  outline: none;
}

/* ── CIERRE ── */
.ab__cta { padding: 30px 0 20px; text-align: center; }
.ab__cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════ EASTER EGG: tooltip de versículo (hover 3s) ═══════ */
.verse-tip {
  position: fixed;
  z-index: 120;
  max-width: 320px;
  padding: 15px 17px;
  background: rgba(18, 30, 25, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245, 168, 0, .34);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .6);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.verse-tip.is-visible { opacity: 1; transform: translateY(0); }

.verse-tip__text {
  margin: 0 0 7px;
  font-size: .87rem;
  line-height: 1.6;
  color: var(--off-white);
  font-style: italic;
}
.verse-tip__ref {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════ EASTER EGG: toast al teclear "AMEN" ═══════ */
.verse-toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 130;
  width: min(430px, calc(100vw - 32px));
  transform: translate(-50%, 18px);
  padding: 20px 24px;
  text-align: center;
  background: linear-gradient(155deg, rgba(28, 74, 58, .96) 0%, rgba(13, 15, 14, .97) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(245, 168, 0, .42);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .7);
  opacity: 0;
  transition: opacity .5s ease, transform .5s cubic-bezier(.2, .9, .3, 1);
}
.verse-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.verse-toast__mark {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 9px;
  letter-spacing: .3em;
}
.verse-toast__text {
  margin: 0 0 10px;
  font-size: .95rem;
  line-height: 1.62;
  color: var(--off-white);
  font-style: italic;
}
.verse-toast__ref {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .ab__grid { grid-template-columns: 1fr; gap: 30px; }
  .ab__visual { order: -1; }
  .ab__section { padding: 44px 0; }
}

/* Respeta a quien pidió menos movimiento en el sistema. */
@media (prefers-reduced-motion: reduce) {
  .verse-tip, .verse-toast, .ab__value { transition: opacity .2s ease; }
  .verse-toast.is-visible { transform: translate(-50%, 0); }
  .ab__value:hover { transform: none; }
}

/* ─── EASTER EGGS: footer cross & verse ─── */
.footer__cross {
  font-size: 0.65em;
  opacity: 0.18;
  vertical-align: middle;
  margin-left: 4px;
  transition: opacity .5s;
}
.footer__cross:hover { opacity: .6; }
.footer__verse {
  font-size: 0.6rem;
  color: rgba(255,255,255,.06);
  margin: 2px 0 0;
  letter-spacing: .5px;
  transition: color .8s;
  user-select: none;
}
.footer__verse:hover { color: rgba(255,255,255,.25); }
