/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --c-brand: #158562;
  /* vibrant green — logo "Green" + highlights */
  --c-primary: #1E6A45;
  /* dark green — CTA buttons */
  --c-primary-dark: #155535;
  /* dark green hover */
  --c-mint: #CAF1E6;
  /* mint — CTA banner + channels bg */
  --c-mint-light: #E4F5EE;
  /* lighter mint — subtle backgrounds */
  --c-footer: #1A3B2C;
  /* footer dark green */
  --c-text: #2C2C2C;
  --c-text-h2: #1C362C;
  --c-text-muted: #767676;
  --c-white: #ffffff;
  --c-border: #D8D8D8;

  --ff: 'Sofia Sans', sans-serif;

  /* ─── Escala tipográfica fluida (3 niveles) ─── */
  --fs-sm: clamp(0.75rem, 1vw, 0.875rem);
  /* 12–14px  — UI: nav, topbar, labels  */
  --fs-md: clamp(1rem, 1.5vw, 1.375rem);
  /* 16–22px  — Body: cards, descripciones */
  --fs-lg: clamp(1.75rem, 3vw, 3rem);
  /* 28–48px  — Headings y CTAs grandes   */

  --container: 1400px;
  --pad: 3vw;

  --radius-sm: 6px;
  --radius-md: 12px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Evita que el browser ajuste scrollY cuando el sticky header cambia de alto */
  overflow-anchor: none;
}

body {
  font-family: var(--ff);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  /* max-width: var(--container); */
  margin: 0 auto;
  padding: 0 var(--pad);
}

.text-brand {
  color: var(--c-brand);
}

.link-brand {
  color: var(--c-brand);
  font-weight: 600;
}

.link-brand:hover {
  text-decoration: underline;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

/* Dark green — hero "Conócenos", CTA banner, etc. */
.btn--primary {
  background: var(--c-brand);
  font-size: var(--fs-md);
  color: var(--c-white);
  padding: 13px 28px;
  border: solid 1px #1C362C;
}

.btn--primary:hover {
  background: var(--c-primary-dark);
}

/* Mint CTA — contact section wide button */
.btn--mint {
  background: var(--c-mint);
  color: var(--c-text-h2);
  padding: 18px 32px;
  width: 100%;
  font-size: var(--fs-md);
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  position: relative;
  box-shadow: none;
  text-align: center;
}

.btn--mint::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--c-mint);
}

.btn--mint:hover {
  background: #d0eddf;
}

.btn--mint:hover::after {
  border-top-color: #d0eddf;
}

/* Outlined — contact email/phone buttons */
.btn--outlined {
  background: var(--c-white);
  color: var(--c-text);
  padding: 6px 22px;
  border: 2px solid var(--c-brand);
  border-radius: var(--radius-sm);
  font-size: var(--fs-md);
  font-weight: 700;
  flex: 1;
  gap: 12px;
}

.btn--outlined:hover {
  background: var(--c-mint-light);
}

.btn__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer phone button */
.btn--footer-cta {
  background: var(--c-brand);
  color: var(--c-white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 300;
  margin-top: 14px;
  display: inline-flex;
}

.btn--footer-cta:hover {
  background: var(--c-primary-dark);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-mint);
  box-shadow: none;
}

/* --- Header body: logo col + right col --- */
.header__body {
  display: flex;
  align-items: stretch;
  padding: 10px var(--pad);
  gap: 24px;
}

.header__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* --- Top info bar --- */
.header__topbar-outer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__topbar {
  overflow: hidden;
  min-height: 0;
  border-bottom: none;
  padding: 7px 0;
  opacity: 1;
  transition: opacity 0.25s ease, padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header__topbar-link {
  font-size: var(--fs-md);
  color: var(--c-text);
  font-weight: 500;
  transition: color 0.2s;
}

.header__topbar-link:hover {
  color: var(--c-primary);
}

.header__topbar-social {
  display: flex;
  align-items: center;
  line-height: 0;
}

.header__topbar-icon {
  width: 55px;
  object-fit: contain;
}

/* --- Navbar --- */
.navbar {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8px 0;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

/* Logo: columna izquierda, estira toda la altura del header */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Scrolled state --- */
.header.is-scrolled .header__topbar-outer {
  grid-template-rows: 0fr;
}

.header.is-scrolled .header__topbar {
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.header.is-scrolled .navbar {
  padding: 4px 0;
}

.header.is-scrolled .navbar__logo-img {
  height: 60px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: block;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-text);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__link:hover {
  color: var(--c-primary);
}

/* Active state underline */
.navbar__item--active .navbar__link {
  font-weight: 600;
  color: var(--c-text);
}

.navbar__item--active .navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--c-primary);
  border-radius: 2px;
}


.navbar__search:hover {
  background: var(--c-mint-light);
}

/* Hamburger — hidden on desktop */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  margin-left: 12px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.navbar__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--c-mint-light);
}

.navbar__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--c-mint-light);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  min-height: 440px;
  background: var(--c-mint);
  align-items: center;
  overflow: visible;
}

.hero__text-col {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
}

.hero__text-inner {
  max-width: 85%;
}

.hero__title {
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.45;
  color: var(--c-text-h2);
  margin-bottom: 32px;
}

.hero__image-col {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px var(--pad) 0 0;
  overflow: visible;
}

.hero__img {
  width: 100%;
  max-width: 790px;
  aspect-ratio: 790 / 640;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  padding: 100px 0 80px;
  background: var(--c-white);
  position: relative;
  z-index: 1;
}

.steps__title {
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.3;
  color: var(--c-text-h2);
  margin-bottom: 48px;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-card {
  display: flex;
  flex-direction: column;
  padding: 0 10%;
}

.step-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #FFF0EE;
  margin-bottom: 14px;
}

.step-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__label {
  font-size: var(--fs-md);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.step-card__desc {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.55;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--c-white);
  margin: 8% 0;
  overflow: visible;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: visible;

  display: block;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}

.cta-banner__text {
  font-size: var(--fs-lg);
  font-weight: 900;
  color: var(--c-text-h2);
}

.cta-banner__text strong {
  font-weight: 900;
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  padding: 80px 0 88px;
  background: var(--c-white);
}

.trust__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

.trust__title-col {
  width: 100%;
}

.trust__title {
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.35;
  color: var(--c-text-h2);

}

.trust__text {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--c-text);
  padding-top: 6px;
}

.trust__icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

.trust__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.trust__icon-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.trust__icon-label {
  font-size: var(--fs-md);
  font-weight: 900;
  letter-spacing: 0.07em;
  color: var(--c-text);
  text-transform: uppercase;
}

/* ============================================================
   CHANNELS
   ============================================================ */
.channels {
  background: var(--c-mint);
  padding: 64px 0 72px;
}

.channels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  gap: 10%;
  justify-content: center;
}

.channel-card {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 44px 10px 40px;
  text-align: center;
  box-shadow: 0 6px 8px rgb(0 0 0 / 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.channel-card__icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 40px;
}

.channel-card__number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 14px;
}

.channel-card__title {
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: 0.0em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 12px;
}

.channel-card__desc {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 80px 0 88px;
  background: var(--c-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Decorative frame behind the image */
.contact__visual {
  position: relative;
  height: max-content;
  /* aspect-ratio: 4/3; */
  margin-left: calc(-1 * var(--pad));
}

.contact__frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contact__frame::before {
  content: '';
  position: absolute;
  left: 17%;
  width: 26%;
  height: 22%;
  border: 6px solid var(--c-brand);
  z-index: 0;
}

.contact__img {
  position: relative;
  aspect-ratio: initial;
  aspect-ratio: 11 / 11;
  margin-left: 22%;
  margin-top: 5%;
  z-index: 1;
  width: 60%;
  object-fit: cover;
  display: block;
}

.contact__body {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-around;
  justify-content: space-around;
}

/* Content column */
.contact__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--c-text);
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: 2.5px solid var(--c-text);
  display: inline-block;
  margin-bottom: 18px;
}

.contact__text {
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact__actions {
  display: flex;
  gap: 15%;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 64px 0 80px;
}

.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-page__title {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--c-text-h2);
  line-height: 1.2;
  border-bottom: 4px solid var(--c-brand);
  padding-bottom: 16px;
  margin-bottom: 8px;
}

.legal-page__h2 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-text-h2);
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-white);
  color: var(--c-text);
  border-top: 8px solid var(--c-brand);
  padding: 48px 0 0;
}

.footer__grid {
  display: flex;
  padding-bottom: 44px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
}

/* Legal links */
.footer__legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__legal-link {
  font-size: var(--fs-md);
  color: var(--c-text);
  transition: color 0.2s;
}

.footer__legal-link:hover {
  color: var(--c-brand);
}

/* Center brand */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.footer__brand-logo {
  width: 180px;
  object-fit: contain;
}


.footer__brand-name span {
  color: var(--c-brand);
}

/* Right contact */
.footer__contact {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  font-size: var(--fs-md);
}

.footer__contact-heading {
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--c-text);
  margin-bottom: 8px;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 4px;
}

.footer__contact-sub {
  color: var(--c-text);
  line-height: 1.65;
  text-align: start;
}

.footer__contact-ig {
  display: flex;
  align-items: center;
}

.footer__contact-ig:hover {
  border-color: var(--c-brand);
}

.footer__contact-ig img {
  width: 60px;
  object-fit: contain;
}

/* Bottom bar */
.footer__bottom {
  background: var(--c-footer);
  padding: 11px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__credits-left,
.footer__credits-right {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.993);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ============================================================
   PROCESO ONLINE — estilos exclusivos de proceso-online.html
   ============================================================ */

/* Intro: misma estructura que .contact pero con padding de sección */
.intro {
  padding-top: 6vh;
  background: var(--c-white);
  position: relative;
  z-index: 1;
}

/* Separación entre párrafos dentro del cuerpo del intro */
.intro__body .contact__text+.contact__text {
  margin-top: 20px;
}

/* Grid de 6 pasos: igual que .channels__grid pero con row-gap razonable */
.channels__grid--process {
  row-gap: 32px;
}

/* ============================================================
   PAGE BANNER — hero compacto para páginas interiores
   Franja verde centrada; la imagen sobresale por arriba y abajo.
   ============================================================ */
.page-banner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 0;
  overflow: visible;
}

.page-banner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 27vh;
  background: var(--c-mint);
  z-index: 0;
}

.page-banner__text-col {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.page-banner__text-inner {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  align-items: center;
}

.page-banner__title {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--c-text-h2);
  line-height: 1.3;
}

.page-banner__img-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--pad) 0 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.page-banner__img {
  width: 100%;
  aspect-ratio: 783 / 629;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Heading flotante en el espacio blanco bajo la franja verde */
.page-banner__subtitle {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 46%;
  padding: 0 var(--pad);
  font-size: var(--fs-lg);
  font-weight: 900;
  color: var(--c-text-h2);
  line-height: 1.3;
  z-index: 1;
}

/* ============================================================
   SECTION HEADING — título standalone entre secciones
   ============================================================ */
.section-heading {
  background: var(--c-white);
  margin: -5vh 0 5vh;
  position: relative;
  z-index: 1;
}

.section-heading__title {
  width: 25%;
  font-size: var(--fs-lg);
  font-weight: 900;
  line-height: 1.3;
  color: var(--c-text-h2);

}

.banner__interna__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact__visual__interna {
    margin-bottom: 10vh;
}
/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .trust__icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact__img {
    width: 70%;
  }

  .contact__actions {
    display: flex;
    gap: 15%;
    flex-direction: column;
  }

  .trust__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }


  .page-banner {
    flex-direction: column;
    padding: 52px 0 12vh
  }

  .page-banner::before {
    height: 20vh;
    top: 50%;
  }

  .page-banner__text-col {
    flex: none;
    width: 70%;
    padding: 30px 30px;
  }

  .page-banner__img-col {
    width: 85%;
    margin: 24px auto 0;
    padding: 0;
    justify-content: center;
  }

  .page-banner__img {
    max-width: 100%;
  }

  .page-banner__subtitle {
    text-align: center;
    width: 100%;
    margin-left: 50%;
    transform: translate(-50%, 0);
    font-size: var(--fs-lg);

  }

  .section-heading__title {
    width: 100%;
    text-align: center;
    color: var(--c-text-h2);
  }

  .section-heading {
    padding: 48px 0 32px;
    margin: 0;
  }

}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
/* Backdrop cuando el drawer está abierto */
body.menu-is-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 990;
}

body.menu-is-open {
  overflow: hidden;
}

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

  /* Ocultar búsqueda en móvil */
  .navbar__search {
    display: none;
  }

  .header__topbar-inner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 0px;
    flex-direction: column;
    align-content: flex-end;
  }



  /* Drawer lateral — siempre en el DOM, oculto fuera de pantalla */
  .navbar__menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 300px);
    height: 100dvh;
    background: var(--c-brand);
    padding: 90px 32px 40px;
    gap: 0;
    z-index: 1100;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.35s;
  }

  .navbar__menu.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear;
  }

  .navbar__menu .navbar__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__menu .navbar__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar__menu .navbar__link {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 4px;
    width: 100%;
    border-radius: 0;
  }

  .navbar__menu .navbar__link:hover {
    color: var(--c-mint-light);
  }

  .navbar__menu .navbar__item--active .navbar__link {
    color: var(--c-mint-light);
  }

  .navbar__menu .navbar__item--active .navbar__link::after {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 1200;
    position: relative;
  }

  .navbar__hamburger.is-open {
    position: fixed;
    top: 16px;
    right: 16px;
  }

  .navbar__inner {
    position: relative;
    padding: 8px 0;
  }

  .navbar__logo {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    align-content: flex-start;
  }

  .navbar__logo-img {
    height: 140px;
  }

  .intro {
    padding-top: 0;
  }

  /* Hero stacks */
  .hero {
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    background: var(--c-mint);
  }

  .hero__text-col {
    flex: none;
    padding: 40px 24px;
  }

  .hero__text-inner {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }

  .hero__title {
    text-align: center;
  }

  .hero__image-col {
    width: 85%;
  }

  .hero__img {
    position: static;
    width: 100%;
    height: 100%;
    bottom: auto;
  }

  .banner__interna__img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .steps {
    margin-top: 80px;
  }

  .steps__title {
    text-align: center;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .trust__title-col {
    width: 100%;
  }

  .trust__title {
    text-align: center;
    padding-bottom: 0px 10%;
  }

  .trust__text {
    text-align: center;
  }

  /* Channels */
  .channels__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Contact */
  .contact {
    padding: 0px 0 90px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
  }

  .contact__visual {
    margin: 3vh 0 0vh 0;

  }

  .contact__visual__contact {
    margin: 8vh 0 0vh 0;
  }


  .contact__frame::before {
    top: -7%;
    left: 9%;
    width: 25%;
    height: 27%;
  }

  .contact__img {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__contact-row {
    justify-content: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
  }

  .footer__brand-logo {
    margin: 0 auto;
  }

  .page-banner {
    flex-direction: column;
    padding: 32px 0 40px;
  }

  .page-banner::before {
    height: 20vh;
    top: 50%;
  }

  .page-banner__text-col {
    flex: none;
    width: 70%;
    padding: 30px 30px;
  }

  .page-banner__img-col {
    width: 85%;
    margin: 24px auto 0;
    padding: 0;
    justify-content: center;
  }

  .page-banner__img {
    max-width: 100%;
  }

  .page-banner__subtitle {
    position: relative;
    text-align: center;
    width: 100%;
    top: 32px;
    margin-left: 0;
    transform: none;
  }

  .section-heading {
    padding: 48px 0 32px;
  }

  .channels {
    padding: 64px 0 30vh;
  }

  .channel-proceso {
    padding: 64px 0 7vh !important;

  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */

@media (max-width: 480px) {
  .intro {
    padding: auto;
  }

  .contact__text {
    text-align: center;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }


  .trust__icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust__icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  .contact__actions {
    flex-direction: column;
  }


  .contact__inner {
    padding-top: 0%;
  }

  .contact__visual {
    margin: 7vh 0 0vh 0;
  }

  .contact__visual__interna {
    margin: 3vh 0 0vh 0 !important;
  }

  .contact__img {
    width: 75%;

  }

  .contact__frame::before {
    top: -7%;
    left: 5%;
    width: 32%;
    height: 27%;
  }

  .steps__title {
    text-align: center;
  }

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

  .trust__title {
    text-align: center;
  }

  .page-banner__text-col {
    width: 100%;
    padding: 30px 0px;
  }

  .page-banner::before {
    top: 50%;
  }

  .page-banner__img {
    width: 100%;
  }

  .footer__grid {
    display: flex;
    padding-bottom: 44px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .footer__contact {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
    font-size: var(--fs-md);
  }

  .footer__contact-row {
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    gap: 0px;
  }

}