/* Yerba Mate Sport – Landing
   Paleta AFA:
   Indigo  rgb(34,34,83)   #222253
   Dorado  rgb(214,177,94) #D6B15E
   Cian    rgb(53,179,239) #35B3EF
*/

:root {
  --indigo: #222253;
  --gold: #D6B15E;
  --cyan: #35B3EF;

  --bg: #07070d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  --radius: 22px;

  --font-head: "Clash Display", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Satoshi", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --container: 1120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(1000px 700px at 15% 10%, rgba(53, 179, 239, 0.18), transparent 55%),
    radial-gradient(1000px 700px at 80% 0%, rgba(214, 177, 94, 0.15), transparent 50%),
    var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

strong {
  color: rgba(255, 255, 255, 0.96)
}


.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #222B53;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__logo {
  width: 85px;
}

.brand__afa {
  height: 32px;
  width: auto
}

.brand__divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.22);
}

/* Nav */
.nav {
  position: relative
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav__toggleLines {
  display: block;
  width: 24px;
  height: 14px;
  background:
    linear-gradient(var(--text), var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 50%/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 100%/100% 2px;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  font-size: 15px;
  padding: 10px 12px;
  font-family: 'Satoshi';
  border-radius: 14px;
  color: #FFFFFF;
  transition: background 180ms ease, color 180ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.95)
}

/* Type */
.h1,
.h2,
.h3 {
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}

.h1 {
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.05;
  margin: 14px 0 10px
}

.h2 {
  font-size: clamp(26px, 3.1vw, 40px);
  margin: 0 0 8px;
  line-height: 1.1
}

.h2--dark {
  color: #35B3EF;
  font-weight: 600;
  line-height: 33px;
  font-size: 28px;
  letter-spacing: 3%;
  text-transform: uppercase;
  margin-top: 40px;
}

.h3 {
  font-size: 20px;
  margin: 0 0 8px
}

.h3--light {
  color: #fff
}

.subhead {
  color: var(--muted);
  max-width: 70ch;
  margin: 0
}

.lead {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch
}

.body {
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  font-weight: 400;
  color: #222B53;
  text-align: center;
}

.body--muted {
  color: rgba(255, 255, 255, 0.70)
}

.note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5
}

.note--light {
  color: rgba(255, 255, 255, 0.70)
}

.fineprint {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:active {
  transform: translateY(1px)
}

.btn--primary {
  background: #222B53;
  color: #FFFFFF;
  border-radius: 6px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
}

.btn--primary:hover {
  background: linear-gradient(135deg, rgba(53, 179, 239, 1), rgba(214, 177, 94, 1))
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09)
}

.btn--full {
  width: 100%
}

/* Hero */
.hero {
  position: relative;
  padding: 62px 0 40px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  transform: scale(1.04);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 25% 25%, rgba(53, 179, 239, 0.20), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(214, 177, 94, 0.18), transparent 58%),
    linear-gradient(to bottom, rgba(7, 7, 13, 0.2), rgba(7, 7, 13, 0.92));
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.hero__copy {
  padding: 10px 0
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.metaCard {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  min-width: 160px;
}

.metaCard__k {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.58)
}

.metaCard__v {
  display: block;
  font-weight: 700;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.92)
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 13, 0.55);
  backdrop-filter: blur(10px);
}

.badge__icon {
  height: 20px;
  width: auto
}

.badge__text {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 12.5px
}

.hero__visual {
  position: relative;
  display: grid;
  justify-items: end;
}

.pack {
  width: min(420px, 100%);
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.pack img {
  border-radius: 18px
}

.hero__crest {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 96px;
  opacity: 0.95;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.35));
}

/* Sections */


.section__head {
  margin-bottom: 20px
}

.section--dark {
  background-image: url('../public_html/assets/Trama.png');
}

.container--dark {
  background: linear-gradient(to bottom, rgba(0, 76, 153, 0.78) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: 30px 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  min-height: 320px;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.list {
  margin: 12px 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.inlineCtas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px
}

/* Distribution */
.dist {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.mapCard {
  width: 350px;
  margin-top: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.mapCard__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 13, 0.45);
}

.pill--gold {
  background: rgba(214, 177, 94, 0.18);
  border-color: rgba(214, 177, 94, 0.26)
}

.map {
  width: 100%;
  height: auto
}

.map__silhouette {
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.2
}

.map__zones .map__zone {
  fill: rgba(255, 255, 255, 0.12);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 160ms ease, transform 160ms ease, stroke 160ms ease;
  transform-origin: center;
}

.map__zones .map__zone:hover {
  fill: rgba(53, 179, 239, 0.26);
  stroke: rgba(53, 179, 239, 0.45);
  transform: translateY(-1px);
}

.map__zone.is-active {
  fill: rgba(214, 177, 94, 0.28);
  stroke: rgba(214, 177, 94, 0.55);
}

.map__legend {
  font-size: 11px;
  fill: rgba(255, 255, 255, 0.62);
}

.mapCard__legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff
}

.chip.is-active {
  background: rgba(53, 179, 239, 0.18);
  border-color: rgba(53, 179, 239, 0.32);
  color: #fff;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}

.dCard {
  padding: 16px;
  margin-bottom: 10px;
}

.dCard:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.075)
}

.dCard.is-hidden {
  display: none
}

.dCard__top {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.tag {
  padding: 2px 10px;
  border-radius: 10px;
  border: 1px solid #D6B15E;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255);
}


.dCard__title {
  font-family: var(--font-body);
  font-size: 18px;
  margin: 5px 0 10px;
  font-weight: 900;
  color: rgba(255, 255, 255);

}

.dCard__meta {
  margin: 0 0 10px;
  color: rgba(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
}

.dCard__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}


.link {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 18px;
}

.link__contact {
  color: #222B53;
  font-size: 15px;
}

.link:hover {
  text-decoration-color: rgba(214, 177, 94, 0.7)
}


.link--light {
  color: rgba(255, 255, 255);
  text-decoration: none;
  font-size: 12px;
}


.link--light:hover {
  color: #fff
}

.dist__cta {
  margin-top: 14px
}

.ctaBox {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #35B3EF;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.ctaBox__title {
  font-family: var(--font-head);
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 33px;
  letter-spacing: 3%;
  color: #FFFFFF;
}

.ctaBox__text {
  margin: 0 0 20px;
  font-weight: 400;
  color: #222B53;
  font-size: 18px;
  line-height: 21px;
  padding: 0;
  text-align: center;
}

/* Contact */
.contact {
  margin-bottom: 200px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ECECEC;
  align-items: center;
  padding: 20px;
  margin: 20px;
  height: 481px;
}

.contact__info__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact__info__header__icon {
  width: 40px;
  /* height: 44px; */
  display: block;
  max-width: none;
  transform: rotate(90deg);
  object-fit: contain;
  margin-bottom: 20px;
}

.contact__info__title {
  font-size: 35px;
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  color: #D6B15E;
}

.contact__form {
  display: flex;
  flex-direction: column;

  background: #222b53;
  margin: 30px;
  margin-top: -105px;
}

.infoGrid {
  display: flex;
  margin-top: 6px;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.infoRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10)
}

.infoRow__k {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px
}

.infoRow__v {
  font-weight: 500
}

.contact__proof {
  margin-top: auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__proof img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px
}

.field--full {
  grid-column: 1 / -1
}

.field__label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 800
}

.field__input {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 7, 13, 0.35);
  color: #fff;
  outline: none;
}

.field__input:focus {
  border-color: rgba(53, 179, 239, 0.55);
  box-shadow: 0 0 0 4px rgba(53, 179, 239, 0.12);
}

.field__textarea {
  resize: vertical;
  min-height: 120px
}

.toast {
  display: none;
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(53, 179, 239, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer {
  padding: 20px 50px 30px 50px;
  background: #222B53;
  border-bottom: 10px solid #D6B15E;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-direction: column;
}

.footer__title {
  font-weight: 700;
  font-size: 11px;
  line-height: 40px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.footer__brand img {
  height: 34px;
  width: auto
}

.footer__note {
  margin: 0;
  color: #35B3EF;
  font-weight: 300;
  line-height: 0px;
  font-size: 10px;
}

.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer__sep {
  opacity: 0.5
}

/* =========================
   Hero Mockup (first fold)
   ========================= */

.hero-mock {
  background: #0b0d12
}

.hero-mock__banner {
  position: relative;
  overflow: visible;
  padding-top: 0;
}

/* Wrapper para la imagen */
.hero-mock__bannerInner {
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* La imagen se muestra completa (sin recorte) */
.hero-mock__img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* clave: no recorta */
  transform: none;
  filter: saturate(1.05) contrast(1.05);
}


/* Pack encima, sin recortar */
.hero-mock__pack {
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
  width: clamp(180px, 18vw, 320px);
  height: auto;
  z-index: 1200;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .45));
}

.hero-mock__lower {
  padding: 46px 0 34px;
  background: linear-gradient(180deg, rgba(11, 13, 18, .98) 0%, rgba(11, 13, 18, 1) 100%);
}

.hero-mock__lowerInner {
  text-align: center;
  max-width: 860px;
}

.hero-mock__copy {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
  margin: 0 0 14px;
}

.hero-mock__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}

.hero-mock__marks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: .92;
}

.hero-mock__marks img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35))
}

.hero-mock__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .25)
}

/* Botones del hero (mockup) */
.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, .65);
  transform: translateY(-1px)
}

.btn--light {
  background: #fff;
  border: 1px solid #fff;
  color: #0b0d12;
}

.btn--light:hover {
  transform: translateY(-1px)
}

@media (max-width: 720px) {
  .hero-mock__pack {
    top: -34px;
    width: clamp(160px, 44vw, 240px)
  }

  .hero-mock__marks img {
    height: 38px
  }
}

/* Mobile */
@media (max-width: 720px) {
  .hero-mock__pack {
    top: -34px;
    width: clamp(160px, 44vw, 240px)
  }
}


/* Responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .hero__visual {
    justify-items: start
  }

  .pack {
    width: min(520px, 100%)
  }

  .split {
    grid-template-columns: 1fr
  }

  .dist {
    grid-template-columns: 1fr
  }

  /* ⚠️ OJO: acá antes forzabas .contact a 1 columna.
     Lo movimos a 900px para que se mantenga horizontal en tablets. */
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-flex
  }

  .nav__menu {
    position: absolute;
    right: 0;
    top: 52px;
    width: min(320px, 92vw);
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgb(32 41 79);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__menu.is-open {
    display: flex
  }

  .nav__link {
    padding: 12px 12px
  }

  .grid3 {
    grid-template-columns: 1fr
  }

  .formGrid {
    grid-template-columns: 1fr
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto
  }

  .btn,
  .nav__link,
  .map__zone,
  .dCard {
    transition: none
  }
}

.mapIframe {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, .25);
  border: 1px solid rgba(214, 177, 94, .2);
  background: rgba(34, 34, 83, .6);
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .mapIframe iframe {
    height: 320px;
  }
}

/* =========================
   AFA Block (como la captura)
   ========================= */

.afaBlock {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.afaBlock__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.02);
}

.afaBlock__overlay {
  position: relative;
  z-index: 2;
  min-height: 1713px;
  padding: 20px;
  background: #004C99;
  background: linear-gradient(to bottom, rgba(0, 76, 153, 0.78) 0%, rgba(0, 0, 0, 0.1) 40%);
}

.afaBlock__container {
  position: relative;
}

/* Top layout */
.afaBlock__top {
  display: flex;
  flex-direction: column;
}

.afaBlock__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 49px;
  font-size: 45px;
  text-transform: uppercase;
}

.afaBlock__titleWrap {
  margin-right: 200px;
}

.afaBlock__titleGold {
  color: var(--gold);
}

.afaBlock__titleCyan {
  color: var(--cyan);
}

.afaBlock__introText {
  margin: 8px 0 0;
  max-width: 64ch;
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
  color: FFFFFF;
}

/* 3 pillars row */
.afaBlock__pills {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.afaPillar__dash {
  display: block;
  width: 29px;
  height: 3px;
  background: #FFFFFF;
  margin-bottom: 12px;
}

.afaPillar__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 500;
  line-height: 33px;
  color: var(--cyan);
}

.afaPillar__text {
  font-family: var(--font-body);
  margin: 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

/* Center block */
.afaBlock__center {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.afaBlock__centerTitle {
  width: 100%;
  max-width: 520px;
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  color: var(--cyan);
  text-transform: uppercase;
}

.afaBlock__bullets {
  width: 100%;
  max-width: 520px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.afaBlock__ctas {
  width: 100%;
  max-width: 520px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.afaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: var(--gold);
  color: #111321;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.afaBtn:hover {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px) {


  .afaBlock__pills {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .afaBlock__center {
    align-items: flex-start;
  }

  .afaBlock__centerTitle,
  .afaBlock__bullets,
  .afaBlock__ctas {
    max-width: 100%;
  }
}

/* =========================
   Intro band (como captura)
   ========================= */
.introBand {
  background: #ececec;
  color: #141a2e;
  padding: 64px 0 66px;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.introBand__topLine {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  /* línea dorada */
  background: var(--gold);
}

.introBand__inner {
  text-align: center;
}

.introBand__stars {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 18px;
  line-height: 1;
}

.introBand__starsBig {
  font-size: 55px;
}

.introBand__title {
  margin: 0 0 25px;
  font-family: 'Clash Display';
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 3%;
  color: #1d2440;
  font-size: 25px;
  text-transform: uppercase;
}

.introBand__titleAccent {
  color: #35B3EF;
  /* celeste AFA */
}

.introBand__sub {
  margin: 0 auto 50px;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 21px;
  line-height: 26px;
  color: rgba(29, 36, 64, 0.85);
  font-family: var(--font-body);
}

.introBand__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.introBand__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
  background: #35B3EF;
  color: #0b1630;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.introBand__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

@media (max-width: 760px) {
  .introBand {
    padding: 44px 0 54px;
  }

  .introBand__sub {

    line-height: 20px;
    font-size: 14px;
  }

  .introBand__btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Parallax helper */
.hero-mock__img {
  will-change: transform;
}

/* =========================
   Sell Block (como captura)
   ========================= */
.sellBlock {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.sellBlock__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.02);
}

/* overlay leve (no “ensucia”, solo ayuda lectura) */
.sellBlock__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 46px;
  background: transparent;
}

.sellBlock__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.sellBlock__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1;
  letter-spacing: 0.6px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.sellBlock__leaf {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  opacity: 0.95;
  transform: translateY(-2px);
}

/* 3 columnas */
.sellBlock__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

.sellItem {
  text-align: center;
  padding: 8px 10px;
}

.sellItem__icon {
  color: var(--cyan);
  opacity: 0.95;
  margin-bottom: 18px;
  display: inline-flex;
}

.sellItem__icon svg {
  width: 62px;
  height: 62px;
}

.sellItem__text {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: #fff;
  font-family: var(--font-body);
}

/* Botones */
.sellBlock__ctas {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 360px;
}

.sellBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: #222B53;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: transform 140ms ease, filter 140ms ease;
}

.sellBtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* Responsive */
@media (max-width: 980px) {
  .sellBlock__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

}

.afaCommercial__titleWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  /* esto evita que se “muerda” arriba/abajo */
  padding: 14px 0;

  /* por si algún padre recorta sombras o bordes finos */
  overflow: visible;
}

.afaCommercial__icon {
  width: 45px;
  height: auto;
  display: block;

  /* evita que el navegador los limite por reglas globales */
  max-width: none;

  /* si el PNG tiene bordes raros, esto ayuda */
  object-fit: contain;
}

.afaCommercial__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;

  /* clave para que no “corte” verticalmente */
  line-height: 1.05;
}

.sellItem {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.sellItem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sellItem__iconImg {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.icon-comercial {
  width: 40px;
}

.icon-corona {
  width: 41px;
  margin-top: 20px;
}

.icon-mate {
  width: 34px;
}

@media (min-width: 800px) {

  .afaBlock__overlay {
    padding: 70px;
  }

  .afaBlock__top {
    flex-direction: row;
  }

  .afaCommercial__title {
    font-size: 45px;
  }

  .icon-comercial {
    width: 82px;
  }

  .sellItem__text {
    font-size: 18px;
  }

  .icon-corona {
    width: 71px;
    margin: 0;
  }

  .icon-mate {
    width: 54px;
  }

  .sellItem {
    gap: 16px;
  }

  .sellBlock__grid {
    margin-top: 50px;
  }

  .sellBlock__ctas {
    margin-top: 60px;
  }

  .container--dark {
    padding: 70px 50px;
  }

  .mapCard {
    width: 504px;
  }

  .contact__form {
    margin: -150px 200px;
  }

  .contact__info {
    padding: 50px 200px;
    margin: 0 44px;
  }

  .ctaBox__title {
    font-size: 25px;
  }

  .ctaBox__text {
    padding: 0 130px;
  }

  .btn--primary {
    font-size: 16px;
  }

  .section {
    padding: 64px 0
  }

  .h2--dark {
    margin-top: 0;
  }

  .contact__info__title {
    font-size: 45px;
  }

  .infoGrid {
    gap: 50px;
    flex-direction: row;
  }

  .body {
    font-size: 20px;
  }

  .footer__inner {
    flex-direction: row;
    align-items: flex-end;
  }

  .footer__title {
    font-size: 16px;
  }

  .footer__note {
    font-size: 15px;
  }

  .link--light {
    font-size: 15px;
    margin-left: 50px;
  }

  .introBand__title {
    line-height: 49px;
    font-size: 45px;
  }

  .afaBlock__introText {
    font-size: 22px;
    line-height: 28px;
  }

  .header__inner {
    padding: 15px 50px;
  }
}