/* Fran-per — layout presentación (adaptado al mock comercial)
   Marca: amarillo #E3D601 · verde #289500 */

:root {
  --yellow: #e3d601;
  --yellow-dim: #c9bc00;
  --green: #289500;
  --green-dk: #1f7300;
  --ink: #1a221c;
  --muted: #5c6560;
  --line: rgba(26, 34, 28, 0.1);
  --bg: #f4f6f3;
  --card: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(120px, 16vw, 160px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.container {
  width: min(1180px, 100% - 1.5rem);
  margin-inline: auto;
}

.pb-mobile {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .pb-mobile {
    padding-bottom: 4.75rem;
  }
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 5.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 11000;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0.35s;
  max-width: min(92vw, 400px);
  text-align: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Top bar + nav shell ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 9500;
}

.top-bar {
  background: var(--green);
  color: #f4fff0;
  font-size: 0.75rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.4rem 0.45rem;
}

.top-bar__msg {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar__msg .bi {
  color: var(--yellow);
}

.nav-shell {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(26, 34, 28, 0.06);
}

.nav-shell__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-block: 0.65rem 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .brand__logo {
    height: 48px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  grid-column: 3;
}

.nav-toggle span {
  display: block;
  margin: 0 auto;
  width: 18px;
  height: 2px;
  background: var(--green-dk);
}

.site-nav {
  display: contents;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem 0.95rem;
  grid-column: 2;
}

.site-nav__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover {
  color: var(--green);
  text-decoration: none;
}

.site-nav__link--active,
.site-nav__link[aria-current="page"] {
  color: var(--green-dk);
  border-bottom-color: var(--yellow);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  grid-column: 3;
}

.btn-wa-head {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-wa-head:hover {
  background: var(--green-dk);
}

.head-social {
  display: flex;
  gap: 0.35rem;
}

.soc-dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dk);
  background: var(--bg);
}

.soc-dot:hover {
  border-color: var(--green);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .nav-shell__grid {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.45s var(--ease),
      opacity 0.3s;
  }

  .site-nav.is-open {
    max-height: 1200px;
    opacity: 1;
    padding-top: 0.75rem;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    grid-column: auto;
  }

  .site-nav__link {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__link--active {
    border-left: 3px solid var(--green);
    padding-left: 0.5rem;
    border-bottom-color: var(--line);
  }

  .site-nav__actions {
    flex-direction: column;
    align-items: stretch;
    grid-column: 1 / -1;
    padding-top: 0.75rem;
  }

  .btn-wa-head {
    justify-content: center;
  }

  .head-social {
    justify-content: center;
  }
}

/* Language */

.lang {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang__btn {
  border: none;
  background: transparent;
  color: #f0fff0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
}

.lang__btn:hover {
  color: var(--yellow);
}

.lang__btn--active {
  background: var(--yellow);
  color: var(--ink);
}

/* ---------- Hero ---------- */

.hero-pro {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
}

.hero-pro__media {
  position: absolute;
  inset: 0;
}

.hero-pro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-pro__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(247, 248, 246, 0.97) 0%,
    rgba(247, 248, 246, 0.88) 40%,
    rgba(247, 248, 246, 0.15) 70%,
    rgba(26, 34, 28, 0.35) 100%
  );
}

.hero-pro__box {
  position: relative;
  align-self: center;
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
  padding-bottom: clamp(7rem, 14vw, 9rem);
  max-width: 34rem;
}

.hero-pro__kicker {
  margin: 0 0 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dk);
}

.hero-pro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4.8vw, 2.875rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.hero-pro__title-accent {
  color: var(--green-dk);
}

.hero-pro__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-pro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
}

.btn-xl--prime {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-xl--prime:hover {
  background: var(--green-dk);
}

.btn-xl--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--green);
}

.btn-xl--ghost:hover {
  background: rgba(40, 149, 0, 0.06);
}

.btn-xl--inverse {
  background: var(--yellow);
  color: var(--ink);
}

.btn-xl--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-dk);
}

.btn-xl--yell {
  background: var(--yellow);
  color: var(--ink);
}

.btn-xl--blk {
  width: 100%;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

.hero-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding-block: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.hero-strip__item .bi {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

@media (max-width: 520px) {
  .hero-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bloques contenido ---------- */

.section-pro {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  background: var(--card);
}

.section-pro--muted {
  background: var(--bg);
}

.section-pro--panel {
  background: linear-gradient(170deg, #1e5a16 0%, var(--green-dk) 55%, #132a14 100%);
  color: #f3fff5;
}

.section-pro__hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.section-pro__hd--solo {
  display: block;
  text-align: center;
}

.section-pro__hd--solo h2 {
  margin: 0.35rem auto 0;
  max-width: 800px;
}

.section-pro__ft {
  margin-top: 1.75rem;
  text-align: center;
}

.section-pro__hd h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow--green {
  color: var(--green-dk);
}

.eyebrow--light {
  color: var(--yellow);
}

.h-light {
  color: #fff;
}

.sub-light {
  text-align: center;
  opacity: 0.88;
  max-width: 560px;
  margin: 0.5rem auto 0;
  font-size: 0.9rem;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--green-dk);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.link-arrow:hover {
  text-decoration: none;
  color: var(--green);
}

/* ---------- Promo strip ---------- */

.promo-strip-wrap {
  overflow: visible;
}

.promo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pro-card {
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.pro-card__pct {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
}

.pro-card__pic {
  aspect-ratio: 4/3;
  position: relative;
}

.pro-card__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-card__fab {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(40, 149, 0, 0.35);
}

.pro-card__fab:hover {
  background: var(--green-dk);
}

.pro-card__bd {
  padding: 0.75rem 0.95rem 1rem;
}

.pro-card__bd h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.pro-card__pr {
  font-size: 0.8125rem;
}

.pro-card__pr s {
  color: var(--muted);
  margin-right: 0.35rem;
}

.pro-card__pr strong {
  color: var(--green-dk);
  font-size: 1rem;
}

/* ---------- Categories ---------- */

.cat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.cat-row--sub {
  margin-top: 0.85rem;
  grid-template-columns: repeat(4, 1fr);
}

.cat-tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 0.65rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-height: 104px;
  justify-content: center;
}

.cat-tile:hover {
  border-color: var(--green);
  text-decoration: none;
}

.cat-tile__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(227, 214, 1, 0.25);
  display: grid;
  place-items: center;
  color: var(--green-dk);
  font-size: 1.35rem;
}

.cat-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.cat-mini:hover {
  border-color: var(--yellow);
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 992px) {
  .cat-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-row--sub {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cat-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Blog */

.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-pro {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.blog-pro__pic {
  position: relative;
  aspect-ratio: 16/10;
}

.blog-pro__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-pro__pill {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--yellow);
  color: var(--ink);
}

.blog-pro__body {
  padding: 0.95rem;
}

.blog-pro time {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-pro h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

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

/* Historia */

.histo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: 2rem;
}

.histo-copy p {
  color: var(--muted);
}

.histo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
}

@media (max-width: 992px) {
  .histo-metrics {
    grid-template-columns: 1fr;
  }
}

.histo-metric {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: var(--bg);
  font-size: 0.75rem;
}

.histo-metric .bi {
  color: var(--green);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.35rem;
}

.histo-metric strong {
  display: block;
  font-size: 1rem;
  color: var(--green-dk);
}

.histo-q {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--yellow);
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
}

.histo-founders {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  background: var(--card);
}

.histo-founders h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--green-dk);
}

.histo-ph {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.histo-ph figure {
  margin: 0;
  text-align: center;
}

.histo-ph img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid var(--yellow);
}

.histo-ph figcaption {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.histo-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}

.histo-note .bi {
  color: var(--green);
}

@media (max-width: 992px) {
  .histo-grid {
    grid-template-columns: 1fr;
  }
}

/* Utilidades tres columnas */

.util-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.util-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: var(--card);
}

.util-card--accent {
  background: rgba(227, 214, 1, 0.18);
  border-color: rgba(40, 149, 0, 0.15);
}

.util-card--loc .map-box {
  margin-top: 1rem;
}

.util-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.util-lead {
  margin: 0 0 1rem;
  font-size: 0.8625rem;
  color: var(--muted);
}

.util-card address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.util-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.map-box {
  border: 1px dashed rgba(40, 149, 0, 0.35);
  border-radius: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  color: var(--muted);
}

.map-box .bi {
  font-size: 2rem;
  color: var(--green);
}

.compact-form .fld {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
}

.compact-form .fld > span:first-child {
  font-size: 0.74rem;
  font-weight: 600;
}

.compact-form input,
.compact-form textarea {
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.compact-form .fld.is-invalid input,
.compact-form .fld.is-invalid textarea {
  border-color: #c62828;
}

.fld-err {
  min-height: 1em;
  font-size: 0.6875rem;
  color: #c62828;
}

@media (max-width: 992px) {
  .util-three {
    grid-template-columns: 1fr;
  }
}

/* Social bar */

.social-bar {
  text-align: center;
}

.social-bar .eyebrow {
  margin-bottom: 1rem;
}

.social-bar__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.pill-soc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.815rem;
}

.pill-soc:hover {
  border-color: var(--green);
  text-decoration: none;
}

/* Pitch band */

.pitch-band {
  background: var(--card);
  border-block: 1px solid var(--line);
}

.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: center;
  padding-block: 1.75rem;
}

.pitch-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pitch-brand__mark {
  width: 88px;
  height: auto;
  flex-shrink: 0;
}

.pitch-brand strong {
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.35rem;
}

.pitch-brand p {
  margin: 0;
  font-size: 0.8625rem;
  color: var(--muted);
}

.pitch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pitch-list li {
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8875rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.pitch-list .bi {
  color: var(--green);
}

@media (max-width: 840px) {
  .pitch-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pitch-brand {
    flex-direction: column;
  }
}

/* Panel */

.panel-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.panel-chips span {
  font-size: 0.725rem;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-chips .bi {
  margin-right: 0.25rem;
  color: var(--yellow);
}

.panel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.panel-kpi {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: center;
}

.panel-kpi .bi {
  font-size: 1.35rem;
  color: var(--yellow);
}

.panel-kpi__n {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0.35rem 0 0;
}

.panel-kpi__t {
  font-size: 0.775rem;
  opacity: 0.82;
}

/* Bottom nav móvil */

.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.35rem 0.35rem calc(0.35rem + env(safe-area-inset-bottom));
  justify-content: space-around;
}

@media (max-width: 1024px) {
  .bottom-nav {
    display: flex;
  }
}

.bottom-nav__it {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  max-width: 5rem;
  padding: 0.35rem 0;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
}

.bottom-nav__it .bi {
  font-size: 1.35rem;
}

.bottom-nav__it--active {
  color: var(--green-dk);
  background: rgba(227, 214, 1, 0.35);
}

/* FAB + top */

.fab-wa {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 9100;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff !important;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8125rem;
  box-shadow: 0 10px 32px rgba(40, 149, 0, 0.35);
}

.fab-wa:hover {
  background: var(--green-dk);
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  .fab-wa {
    bottom: calc(4.85rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 540px) {
  .fab-wa__txt {
    display: none;
  }

  .fab-wa {
    width: 3.35rem;
    height: 3.35rem;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .fab-wa .bi {
    font-size: 1.65rem;
  }
}

.btn-top {
  position: fixed;
  right: 1rem;
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
  z-index: 9050;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--green-dk);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s,
    transform 0.28s;
}

.btn-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  .btn-top {
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* Footer */

.foot-pro {
  background: #141a16;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 2rem 1.25rem;
  border-top: 3px solid var(--yellow);
}

.foot-pro__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.foot-brand__logo {
  width: 72px;
  height: auto;
}

.foot-brand strong {
  color: #fff;
  font-size: 1.125rem;
  display: block;
}

.foot-brand span {
  font-size: 0.8625rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.4rem;
}

.foot-brand p {
  margin: 0;
  font-size: 0.825rem;
  opacity: 0.85;
  max-width: 280px;
}

.foot-col {
  font-size: 0.8375rem;
}

.foot-col strong {
  color: var(--yellow);
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.35rem;
}

.foot-col a:hover {
  color: var(--yellow);
}

.foot-copy {
  text-align: center;
  font-size: 0.775rem;
  padding-top: 1.25rem;
  opacity: 0.6;
}

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

@media (max-width: 520px) {
  .foot-pro__grid {
    grid-template-columns: 1fr;
  }
}
