/* ==========================================================================
   809 Mercado — Homepage
   Paleta: #D93611 (rojo), #8C2B2B (rojo oscuro), #FDE8AA (crema), #FFF5F5 (rosa claro)
   Fonts: "Bebas Neue" (títulos), "Poppins" (texto)
   ========================================================================== */

html {
  color: #222;
  font-size: 16px;
  line-height: 1.4;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

body * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
}

.inwrap {
  width: 100%;
  max-width: 80em;
  margin: 0 auto;
  padding: 0 1.5em;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6em;
  background-color: #FDE8AA;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  height: 4em;
  width: auto;
  animation: preloader-pulse 1.4s ease-in-out infinite;
}

.preloader-bar {
  position: relative;
  width: 10em;
  height: 0.32em;
  border-radius: 1em;
  background-color: rgba(217, 54, 17, 0.2);
  overflow: hidden;
}

.preloader-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  border-radius: 1em;
  background-color: #D93611;
  animation: preloader-slide 1.1s ease-in-out infinite;
}

@keyframes preloader-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

@keyframes preloader-slide {
  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }
}

/* Botón CTA reutilizable */
.cta-btn {
  display: inline-block;
  background-color: #FDE8AA;
  color: #8C2B2B;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1em 2.5em;
  border-radius: 0.5em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
}

/* Eyebrow + títulos de sección */
.section-eyebrow {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D93611;
  margin-bottom: 1em;
}

.section-title {
  font-size: 2.6em;
  line-height: 1;
  color: #2b2b2b;
}

.section-title span {
  color: #D93611;
}

.section-title.light {
  color: #fff;
}

.section-title.light span {
  color: #FDE8AA;
}

.section-title.centered {
  text-align: center;
  margin-bottom: 0.5em;
}

.section-text {
  font-size: 0.95em;
  line-height: 1.7;
  color: #6B7280;
  margin: 1em 0 1.5em;
}

.text-link {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D93611;
  transition: color 0.3s ease;
}

.text-link:hover {
  color: #8C2B2B;
}


/* ==========================================================================
   Header principal
   ========================================================================== */
#main-header {
  background-color: #FDE8AA;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

#main-header .inwrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

#main-header .logo {
  height: 2.8em;
  width: auto;
  display: block;
}

/* Base (móvil): nav y botones se ocultan, ocupan fila completa al abrir */
.main-nav {
  flex-basis: 100%;
  order: 3;
  display: none;
}

.main-nav.mobile-open {
  display: block;
}

.main-nav .nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid rgba(140, 43, 43, 0.12);
  padding-top: 0.5em;
}

.main-nav .nav-list li {
  width: 100%;
}

.main-nav .nav-list a {
  display: block;
  padding: 0.8em 0;
  font-size: 0.95em;
  font-weight: 500;
  color: #8C2B2B;
  border-bottom: 1px solid rgba(140, 43, 43, 0.1);
  transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
  color: #D93611;
}

#main-header .buttons {
  flex-basis: 100%;
  order: 4;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.7em;
}

#main-header .buttons.mobile-open {
  display: flex;
}

#main-header .buttons a {
  padding: 0.7em 1.5em;
  border-radius: 0.5em;
  font-weight: 600;
  font-size: 0.72em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 0.15em solid #D93611;
  text-align: center;
}

#main-header .buttons .btn-outline {
  background-color: transparent;
  color: #D93611;
}

#main-header .buttons .btn-solid {
  background-color: #D93611;
  color: #fff;
}

#main-header .buttons a:hover {
  background-color: #8C2B2B;
  border-color: #8C2B2B;
  color: #fff;
}

/* Hamburguesa */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3em;
  width: 2.5em;
  height: 2.5em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4em;
}

.nav-toggle span {
  display: block;
  height: 0.18em;
  width: 100%;
  background-color: #8C2B2B;
  border-radius: 1em;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(0.48em) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-0.48em) rotate(-45deg);
}


/* ==========================================================================
   Hero
   ========================================================================== */
#main-hero {
  position: relative;
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

#main-hero .gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 30%, rgba(20, 8, 8, 0.55) 100%),
    linear-gradient(180deg, rgba(25, 10, 10, 0.72) 0%, rgba(25, 10, 10, 0.6) 45%, rgba(120, 35, 35, 0.85) 100%);
}

#main-hero .inwrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5em;
  padding-bottom: 5em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  font-weight: 500;
  font-size: 0.7em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7em 1.4em;
  border-radius: 2em;
  margin-bottom: 2.2em;
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: #D93611;
  box-shadow: 0 0 0.4em rgba(217, 54, 17, 0.8);
  flex-shrink: 0;
}

.hero-title {
  font-size: 3.4em;
  line-height: 1;
  margin-bottom: 0.4em;
  text-shadow:
    0 0 0.15em rgba(255, 245, 225, 0.7),
    0 0 0.4em rgba(253, 232, 170, 0.4),
    0 0.04em 0.25em rgba(0, 0, 0, 0.35);
}

.hero-title span {
  color: #FDE8AA;
}

.hero-text {
  max-width: 32em;
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2em;
}

.hero-location {
  position: absolute;
  z-index: 2;
  bottom: 1.8em;
  left: 1.8em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-location img {
  width: 1.1em;
  height: 1.1em;
  opacity: 0.85;
}


/* ==========================================================================
   Barra de stats + countdown
   ========================================================================== */
#proximo-mercado {
  background-color: #FDE8AA;
}

#proximo-mercado .inwrap {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
}

.countdown-text {
  font-weight: 600;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D93611;
}

.countdown-container {
  display: flex;
  gap: 1em;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3em;
}

.countdown-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5em;
  line-height: 1;
  color: #D93611;
}

.countdown-label {
  font-weight: 500;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9743a;
}

.stats-divider {
  display: none;
}

.stats-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em 2.5em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}

.stat-top {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.stat-item img {
  width: 1.5em;
  height: 1.5em;
}

.stat-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2em;
  line-height: 1;
  color: #8C2B2B;
}

.stat-label {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9743a;
  text-align: center;
}


/* ==========================================================================
   Nuestra filosofía
   ========================================================================== */
#filosofia {
  position: relative;
  background-color: #FFF7F4;
  padding: 4.5em 0;
  overflow: hidden;
}

/* Glow cálido amarillo (arriba-izquierda) */
#filosofia::before {
  content: "";
  position: absolute;
  top: -6%;
  left: -8%;
  width: 32em;
  height: 32em;
  background: radial-gradient(circle, rgba(253, 196, 84, 0.55) 0%, rgba(253, 196, 84, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

/* Glow rojizo suave (abajo-izquierda) */
#filosofia::after {
  content: "";
  position: absolute;
  bottom: -6%;
  left: -8%;
  width: 28em;
  height: 28em;
  background: radial-gradient(circle, rgba(217, 54, 17, 0.16) 0%, rgba(217, 54, 17, 0) 62%);
  pointer-events: none;
  z-index: 0;
}

#filosofia .cols {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  align-items: center;
}

#filosofia .section-eyebrow {
  color: #8C2B2B;
}

#filosofia .section-title {
  color: #D93611;
  font-size: 2.9em;
  line-height: 0.92;
  margin-bottom: 0.55em;
}

#filosofia .section-title span {
  color: #8C2B2B;
}

#filosofia .section-text {
  max-width: 30em;
  color: #8C2B2BCC;
}

.filosofia-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.5em;
  overflow: hidden;
  box-shadow: 0 1.5em 3.5em rgba(140, 43, 43, 0.22);
}

.filosofia-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filosofia-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85em 1.5em;
  margin-bottom: 1.8em;
}

.filosofia-list li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.85em;
  color: #8C2B2BCC;
}

.filosofia-list li img {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}


/* ==========================================================================
   Vive la experiencia 809
   ========================================================================== */
#experiencia {
  background-color: #8C2B2B;
  padding: 4.5em 0;
}

#experiencia .section-title {
  font-size: 3em;
  margin-bottom: 1em;
}

#experiencia .section-title span {
  color: #F2B706;
}

.experiencia-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.experiencia-card {
  text-align: center;
}

.experiencia-card .card-image {
  aspect-ratio: 1 / 1;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.experiencia-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experiencia-card:hover .card-image img {
  transform: scale(1.06);
}

.experiencia-card h3 {
  font-size: 1.6em;
  color: #F2B706;
  letter-spacing: 0.03em;
  margin-bottom: 0.5em;
}

.experiencia-card p {
  font-size: 0.88em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 22em;
  margin: 0 auto;
}


/* ==========================================================================
   El eco de nuestra comunidad
   ========================================================================== */
#eco-comunidad {
  background-color: #F9F4EF;
  padding: 4em 0;
}

#eco-comunidad .section-title {
  color: #D93611;
}

.eco-swiper {
  padding-bottom: 4em;
}

/* Todas las slides con la misma altura */
.eco-swiper .swiper-slide {
  height: auto;
}

.eco-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FBF6EF;
  border-radius: 1.5em;
  box-shadow: 0 1em 2.5em rgba(140, 43, 43, 0.1);
  max-width: 52em;
  margin: 0 auto;
  padding: 1em;
}

.eco-card .eco-image {
  aspect-ratio: 16 / 10;
  border-radius: 1em;
  overflow: hidden;
  flex-shrink: 0;
}

.eco-card .eco-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eco-card .eco-content {
  padding: 1.5em 1em 1em;
}

.eco-card blockquote {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8em;
  line-height: 1.05;
  color: #8C2B2B;
  margin: 0 0 0.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eco-author {
  font-weight: 600;
  font-size: 0.9em;
  color: #D93611;
  margin-bottom: 0.8em;
}

.eco-text {
  font-size: 0.88em;
  line-height: 1.7;
  color: rgba(140, 43, 43, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Paginación tipo píldora */
.eco-swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
  line-height: 0;
  background-color: #D93611;
  padding: 0.55em 0.9em;
  border-radius: 2em;
  --swiper-pagination-bullet-horizontal-gap: 0.28em;
}

.eco-swiper .swiper-pagination-bullet {
  background-color: rgba(253, 232, 170, 0.55);
  opacity: 1;
  width: 0.55em;
  height: 0.55em;
  transition: width 0.3s ease;
}

.eco-swiper .swiper-pagination-bullet-active {
  background-color: #FDE8AA;
  width: 1.8em;
  border-radius: 1em;
}


/* ==========================================================================
   Tus dudas resueltas
   ========================================================================== */
#faq {
  position: relative;
  background-color: #F9F4EF;
  padding: 4.5em 0;
  overflow: hidden;
}

/* Glow cálido amarillo (arriba, junto a la imagen) */
#faq::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -2%;
  left: 50%;
  width: 22em;
  height: 22em;
  background: radial-gradient(circle, rgba(253, 196, 84, 0.5) 0%, rgba(253, 196, 84, 0) 60%);
  pointer-events: none;
}

/* Glow rojizo suave (abajo-derecha) */
#faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -6%;
  right: -6%;
  width: 24em;
  height: 24em;
  background: radial-gradient(circle, rgba(217, 54, 17, 0.14) 0%, rgba(217, 54, 17, 0) 60%);
  pointer-events: none;
}

#faq .cols {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

#faq .section-title {
  color: #D93611;
  line-height: 0.92;
  margin-bottom: 1.2em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.faq-item {
  background-color: #fff;
  border-radius: 0.7em;
  overflow: hidden;
  box-shadow: 0 0.4em 1.2em rgba(140, 43, 43, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9em;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.2em 1.4em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.92em;
  color: #8C2B2B;
}

.faq-icon {
  order: -1;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.4em 1.2em 3.3em;
  font-size: 0.85em;
  line-height: 1.7;
  color: rgba(140, 43, 43, 0.75);
}

.faq-image {
  aspect-ratio: 7 / 10;
  border-radius: 1.2em;
  overflow: hidden;
  box-shadow: 0 1.2em 2.5em rgba(140, 43, 43, 0.18);
}

.faq-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ==========================================================================
   Sé parte de la historia
   ========================================================================== */
#cta-historia {
  position: relative;
  background-color: #D93611;
  padding: 9em 0 7em;
  text-align: center;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: 5em;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

#cta-historia .inwrap {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.2em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 0.5em;
}

.cta-title span {
  color: #FDE8AA;
}

.cta-historia-btn {
  box-shadow: 0 0.8em 1.8em rgba(94, 22, 8, 0.35);
  padding: 2em 2.5em;
  border-radius: 1.5em;
}

.cta-text {
  max-width: 34em;
  margin: 0 auto 2em;
  font-size: 0.95em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}


/* ==========================================================================
   Footer principal
   ========================================================================== */
#main-footer {
  position: relative;
  background-color: #8C2B2B;
  color: #fff;
  padding-top: 4em;
}

.footer-waves {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-99%);
}

.footer-waves img {
  width: 100%;
  display: block;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  padding-bottom: 2.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-text {
  font-size: 2em;
  color: #F2B706;
  letter-spacing: 0.03em;
}

.footer-tagline {
  display: block;
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 232, 170, 0.7);
  margin: 0.3em 0 1em;
}

.footer-description {
  font-size: 0.85em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 24em;
  margin-bottom: 1.3em;
}

.footer-social {
  display: flex;
  gap: 0.8em;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.footer-social .social-icon:hover {
  background-color: #D93611;
}

.footer-social .social-icon img {
  width: 1.1em;
  height: 1.1em;
}

.footer-newsletter-subtitle {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.4em;
}

.footer-newsletter-title {
  font-size: 3.3em;
  color: #F2B706;
  margin-bottom: 0em;
}

.footer-newsletter-title span {
  color: #F2B706;
}

.newsletter-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  margin-bottom: 0.9em;
}

.newsletter-form input {
  width: 100%;
  padding: 0.9em 1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5em;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.85em;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #FDE8AA;
}

.newsletter-btn {
  width: 100%;
  background-color: #F2B706;
  color: #8C2B2B;
}

.newsletter-btn:hover {
  background-color: #D93611;
  color: #F2B706;
}

.response-newsletter {
  font-size: 0.8em;
  color: #FDE8AA;
  /* min-height: 1em; */
  margin-bottom: 0.6em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8em 1.8em;
  padding: 2em 0;
}

.footer-nav a {
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #FDE8AA;
}

.footer-logo {
  text-align: center;
  padding: 1em 0 2em;
}

.footer-logo img {
  height: auto;
  width: 100%;
  max-width: 28em;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding-bottom: 2em;
  text-align: center;
}

.footer-copyright {
  font-size: 0.72em;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.footer-madein {
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 232, 170, 0.6);
}

.scroll-top {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #D93611;
  color: #fff;
  border: none;
  font-size: 1em;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: #8C2B2B;
}


/* ==========================================================================
   Responsive (mobile-first → progressive enhancement)
   ========================================================================== */

/* Large phones / small tablets */
@media only screen and (min-width: 40em) {
  .experiencia-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .experiencia-card {
    flex: 1 1 14em;
  }

  .eco-card {
    flex-direction: row;
    height: 21em;
  }

  .eco-card .eco-image {
    width: 42%;
    height: 100%;
    aspect-ratio: auto;
  }

  .eco-card .eco-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5em 2em;
  }

  .newsletter-inputs {
    flex-direction: row;
  }
}

/* Tablets */
@media only screen and (min-width: 48em) {
  .inwrap {
    padding: 0 2em;
  }

  .hero-title {
    font-size: 4.5em;
  }

  .section-title {
    font-size: 3em;
  }

  .cta-title {
    font-size: 6.8em;
  }

  .cta-watermark {
    font-size: 7.5em;
  }

  #proximo-mercado .inwrap {
    padding-top: 1.75em;
    padding-bottom: 1.75em;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-left {
    flex: 1;
  }

  .footer-right {
    flex: 0 0 40%;
    text-align: right;
  }
}

/* Small desktops — nav y botones inline, sin hamburguesa */
@media only screen and (min-width: 64em) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    flex-basis: auto;
    order: 0;
    display: block;
  }

  .main-nav .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 1.75em;
    border-top: none;
    padding-top: 0;
  }

  .main-nav .nav-list li {
    width: auto;
  }

  .main-nav .nav-list a {
    display: inline;
    padding: 0;
    font-size: 0.82em;
    border-bottom: none;
  }

  #main-header .buttons {
    flex-basis: auto;
    order: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75em;
  }

  /* Barra de stats + countdown en fila */
  #proximo-mercado .inwrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5em;
  }

  .countdown-block {
    flex-shrink: 0;
    flex: 0.6;
    align-items: flex-start;
  }

  .stats-divider {
    display: block;
    align-self: stretch;
    width: 1px;
    background-color: rgba(241, 54, 54, 0.18);
    margin: 0.4em 2.5em 0.4em 0em;
  }

  .stats-block {
    flex: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5em;
  }

  #filosofia .cols {
    flex-direction: row;
    align-items: center;
    gap: 3.5em;
  }

  #filosofia .left {
    flex: 0 0 47%;
  }

  #filosofia .right {
    flex: 1;
  }

  #filosofia .section-title {
    font-size: 3.7em;
  }

  #experiencia .section-title {
    font-size: 3.9em;
  }

  #faq .section-title {
    font-size: 3.7em;
  }

  #faq .cols {
    flex-direction: row;
    align-items: center;
    gap: 4em;
  }

  #faq .left {
    flex: 1;
  }

  #faq .right {
    flex: 0 0 38%;
  }

  .hero-title {
    font-size: 5.5em;
  }
}

/* Desktop */
@media only screen and (min-width: 80em) {
  .hero-title {
    font-size: 6em;
  }

  .section-title {
    font-size: 3.4em;
  }
}

/* Very large screens — fluid scaling */
@media all and (min-width: 122em) {
  body {
    font-size: 1.1vmax;
  }
}