:root {
  --color-primary: #0f4c81;
  --color-secondary: #ef476f;
  --color-accent: #ffd166;
  --color-dark: #0c1f3f;
  --color-light: #f5f8ff;
  --color-muted: rgba(255, 255, 255, 0.72);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Outfit", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

/* Prevenir overflow horizontal y desajustes */
html,
body {
  margin: 0;
  padding: 0;
  background: var(--color-light);
  color: #14213d;
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

/* Prevenir elementos que se salgan del viewport */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Prevenir problemas con transform y position en móvil */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }
  
  body {
    -webkit-overflow-scrolling: touch;
  }
}

main,
.main-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(15, 76, 129, 0.95),
    rgba(12, 31, 63, 0.98)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader__content {
  text-align: center;
  color: #fff;
}

.preloader__logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.preloader__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.preloader__dots span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 1s infinite ease-in-out;
}

.preloader__dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-dark) 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 76, 129, 0.75),
    rgba(12, 31, 63, 0.9)
  );
  mix-blend-mode: multiply;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 31, 63, 0.7) 0%,
    rgba(15, 76, 129, 0.6) 50%,
    rgba(12, 31, 63, 0.8) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 10vw, 9rem) 4vw 4rem;
  max-width: min(720px, 90vw);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  z-index: 999;
  transition: all 0.4s ease;
  background: var(--color-dark);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.is-scrolled {
  padding: 0.85rem 4vw;
  background: var(--color-dark);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.navbar__logo:hover {
  opacity: 0.9;
  transform: translateX(-2px);
}

.navbar__logo i {
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.navbar__logo:hover i {
  transform: scale(1.1);
}

.navbar__logo span {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.navbar.is-scrolled .navbar__logo span {
  font-size: 0.95rem;
}

.navbar__tagline {
  font-size: 0.75rem;
  opacity: 0.7;
  color: #fff;
  margin-top: 0.15rem;
  line-height: 1.2;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar__links li {
  list-style: none;
}

.navbar__links a,
.navbar__links .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__links a:hover,
.navbar__links .nav-link:hover {
  color: #fff;
}

.navbar__links a::after,
.navbar__links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s var(--transition), opacity 0.3s ease;
}

.navbar__links a:hover::after,
.navbar__links a.is-active::after,
.navbar__links .nav-link:hover::after,
.navbar__links .nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar__cta {
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(239, 71, 111, 0.35);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.navbar__toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s ease;
  display: block;
}

.navbar__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Eliminar subrayado de todos los badges y categorías */
.badge,
.badge *,
span.badge,
span.badge *,
.categoria-badge,
.categoria-badge * {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.badge a,
.badge a:hover,
.badge a:focus,
.categoria-badge a,
.categoria-badge a:hover,
.categoria-badge a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Asegurar visibilidad de iconos de teléfono */
.fas.fa-phone,
.fa-phone {
  color: inherit !important;
  display: inline-block !important;
}

/* Iconos de teléfono en contenedores con fondo de color deben ser blancos */
div[style*="background"] .fas.fa-phone,
div[style*="background"] .fa-phone {
  color: #ffffff !important;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.16);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  backdrop-filter: blur(12px);
}

.hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.05;
  margin: 1.5rem 0;
  color: #fff;
}

.hero__content h1 span {
  display: block;
  color: var(--color-accent);
}

.hero__content p {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 48ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  border: none;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #ffffff !important;
  box-shadow: 0 20px 60px rgba(239, 71, 111, 0.35);
  text-shadow: none;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(239, 71, 111, 0.45);
  color: #ffffff !important;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: #ffffff !important;
  box-shadow: 0 20px 60px rgba(239, 71, 111, 0.35);
  text-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(239, 71, 111, 0.45);
  color: #ffffff !important;
}

.btn-primary i,
.btn-primary * {
  color: #ffffff !important;
}

/* ========================================
   REGLAS GLOBALES PARA BOTONES CON GRADIENTE
   Asegurar que texto e iconos sean siempre visibles
   ======================================== */

/* Todos los botones y enlaces con gradiente - texto blanco */
button[style*="gradient"],
a[style*="gradient"],
button[style*="linear-gradient"],
a[style*="linear-gradient"],
.btn[style*="gradient"],
button.btn-primary,
a.btn-primary {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

/* Iconos dentro de botones con gradiente - siempre blancos */
button[style*="gradient"] i,
a[style*="gradient"] i,
button[style*="linear-gradient"] i,
a[style*="linear-gradient"] i,
button[style*="gradient"] *,
a[style*="gradient"] *,
button[style*="linear-gradient"] *,
a[style*="linear-gradient"] * {
  color: #ffffff !important;
}

/* Spans y texto dentro de botones con gradiente */
button[style*="gradient"] span,
a[style*="gradient"] span,
button[style*="linear-gradient"] span,
a[style*="linear-gradient"] span,
button[style*="gradient"] .fas,
button[style*="gradient"] .far,
button[style*="gradient"] .fab,
a[style*="gradient"] .fas,
a[style*="gradient"] .far,
a[style*="gradient"] .fab {
  color: #ffffff !important;
}

/* Regla adicional para botones con background azul/primary */
button[style*="#0f4c81"],
a[style*="#0f4c81"],
button[style*="var(--primary-color)"],
a[style*="var(--primary-color)"] {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* Iconos dentro de botones con primary color */
button[style*="#0f4c81"] i,
a[style*="#0f4c81"] i,
button[style*="var(--primary-color)"] i,
a[style*="var(--primary-color)"] i,
button[style*="#0f4c81"] span,
a[style*="#0f4c81"] span,
button[style*="var(--primary-color)"] span,
a[style*="var(--primary-color)"] span,
button[style*="#0f4c81"] *,
a[style*="#0f4c81"] *,
button[style*="var(--primary-color)"] *,
a[style*="var(--primary-color)"] * {
  color: #ffffff !important;
}

/* Regla específica para botones de búsqueda y submit con gradiente */
button[type="submit"][style*="gradient"],
button[type="submit"][style*="linear-gradient"],
button[type="button"][style*="gradient"],
button[type="button"][style*="linear-gradient"] {
  color: #ffffff !important;
}

button[type="submit"][style*="gradient"] *,
button[type="submit"][style*="linear-gradient"] *,
button[type="button"][style*="gradient"] *,
button[type="button"][style*="linear-gradient"] *,
button[type="submit"][style*="gradient"] i,
button[type="submit"][style*="linear-gradient"] i,
button[type="submit"][style*="gradient"] span,
button[type="submit"][style*="linear-gradient"] span {
  color: #ffffff !important;
}

.btn--ghost {
  background: #ffffff !important;
  color: #0f4c81 !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  font-weight: 700 !important;
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: #ffffff !important;
  color: #0f4c81 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Asegurar que iconos y texto dentro de btn--ghost sean visibles */
.btn--ghost *,
.btn--ghost i,
.btn--ghost span {
  color: #0f4c81 !important;
}

.btn--mini {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 14px;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.hero__stats div {
  display: flex;
  flex-direction: column;
}

.hero__stats div span {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-accent);
}

.hero__stats div p {
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
  opacity: 0.85;
  color: var(--color-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  text-decoration: none;
}

.hero__scroll span {
  width: 2px;
  height: 48px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0)
  );
  position: relative;
  overflow: hidden;
}

.hero__scroll span::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--color-accent);
  animation: scroll 2.4s infinite ease-in-out;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(250%);
  }
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 4vw;
  position: relative;
}

.section__header {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 760px;
}

.section__eyebrow {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-secondary);
}

.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 1rem 0;
  color: var(--color-dark);
}

.section__header p {
  color: rgba(20, 33, 61, 0.72);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section--highlights {
  background: linear-gradient(
    180deg,
    rgba(15, 76, 129, 0.05),
    rgba(15, 76, 129, 0)
  );
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  padding: 2rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(15, 76, 129, 0.1);
  border: 2px solid rgba(12, 31, 63, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto 10% -30% 10%;
  height: 40%;
  background: linear-gradient(
    135deg,
    rgba(239, 71, 111, 0.1),
    rgba(255, 209, 102, 0.15)
  );
  filter: blur(30px);
  transition: transform 0.45s var(--transition);
  z-index: 0;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(15, 76, 129, 0.2);
  border-color: var(--color-primary);
}

.highlight-card:hover::after {
  transform: translateY(-12px);
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--color-secondary);
  transition: all 0.4s var(--transition);
  z-index: 1;
}

.highlight-card:hover .highlight-card__icon {
  transform: scale(1.1);
}

.highlight-card__icon i {
  display: inline-block;
  color: var(--color-secondary);
}

.highlight-card p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  margin: 0;
  padding-top: 0.5rem;
}

.highlight-card p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  margin: 0;
}

.section--locals {
  background: #fff;
}

.locals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(1.8rem, 3vw, 2.6rem);
  align-items: stretch;
}

.local-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 60px rgba(12, 31, 63, 0.12);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  height: 100%;
  min-height: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.local-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 80px rgba(12, 31, 63, 0.18);
}

.local-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out var(--delay),
    transform 0.6s var(--transition) var(--delay);
}

.local-card__media {
  position: relative;
}

.local-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.local-card__badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.45rem 1rem;
  background: rgba(12, 31, 63, 0.9);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.local-card__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.local-card__body p {
  flex: 1;
  margin: 0;
}

.local-card__body .btn {
  margin-top: auto;
}

.local-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-dark);
}

.local-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.local-card__tags li {
  padding: 0.35rem 0.8rem;
  background: rgba(15, 76, 129, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.local-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: rgba(20, 33, 61, 0.7);
}

.section--panorama {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

.panorama__content {
  padding: clamp(1rem, 2vw, 1.2rem);
}

.panorama__frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(12, 31, 63, 0.22);
  position: relative;
  min-height: 400px;
}

.panorama__frame iframe {
  width: 100%;
  min-height: 400px;
  border: none;
}

.panorama__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section--ecommerce {
  background: linear-gradient(
    135deg,
    rgba(15, 76, 129, 0.08),
    rgba(239, 71, 111, 0.08)
  );
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filters__chip {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 31, 63, 0.18);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--transition);
  cursor: pointer;
}

.filters__chip--active,
.filters__chip:hover {
  background: var(--color-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(12, 31, 63, 0.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.product-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(15, 76, 129, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 40px 80px rgba(12, 31, 63, 0.2);
}

.product-card__media {
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(239, 71, 111, 0.85);
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card__favor {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.product-card__favor.is-active {
  background: var(--color-secondary);
  color: #fff;
}

.product-card__favor:hover {
  transform: scale(1.1);
}

.product-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-dark);
}

.product-card__local {
  color: rgba(20, 33, 61, 0.65);
  font-size: 0.85rem;
}

.product-card__rating {
  font-weight: 600;
  color: var(--color-secondary);
}

.product-card__footer {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.mini-cart {
  position: fixed;
  top: 50%;
  right: 2rem;
  width: 320px;
  background: #fff;
  box-shadow: 0 25px 90px rgba(12, 31, 63, 0.35);
  border-radius: 22px;
  padding: 1.5rem;
  transform: translateY(-50%) translateX(120%);
  transition: transform 0.45s var(--transition);
  z-index: 950;
}

.mini-cart.is-open {
  transform: translateY(-50%) translateX(0);
}

.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-cart__close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(12, 31, 63, 0.6);
  cursor: pointer;
}

.mini-cart__items {
  max-height: 260px;
  overflow-y: auto;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-cart__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(12, 31, 63, 0.08);
}

.mini-cart__name {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.mini-cart__local {
  font-size: 0.78rem;
  color: rgba(12, 31, 63, 0.55);
}

.mini-cart__price {
  font-weight: 600;
}

.mini-cart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section--campaign {
  background: #fff;
}

.campaign-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.campaign-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.campaign-card__image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  position: relative;
}

.campaign-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.campaign-card:hover .campaign-card__image img {
  transform: scale(1.05);
}

.campaign-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
}

.campaign-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.campaign-card__hash {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.campaign-card h3 {
  font-size: 1.75rem;
  margin: 0;
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.3;
}

.campaign-card__subtitle {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  margin: 0.25rem 0;
}

.campaign-card__description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0.5rem 0;
  flex: 1;
}

.campaign-card__button {
  margin-top: 1rem;
  align-self: flex-start;
}

.section--bonos {
  background: linear-gradient(
    135deg,
    rgba(12, 31, 63, 0.95),
    rgba(15, 76, 129, 0.85)
  );
  color: #fff;
}

.bonos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.bonos__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.bonos__list li {
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.bonos__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.bonos__media {
  display: grid;
  gap: 1.5rem;
}

.bonos__card {
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.18);
}

.bonos__card span {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  font-family: var(--font-display);
}

.bonos__card--primary {
  background: linear-gradient(
    135deg,
    rgba(255, 209, 102, 0.9),
    rgba(239, 71, 111, 0.9)
  );
  color: #1a1a1a;
}

.bonos__card--secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  position: relative;
}

.timeline__item {
  background: #fff;
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 24px 60px rgba(15, 76, 129, 0.12);
  position: relative;
  overflow: hidden;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-secondary),
    var(--color-primary)
  );
}

.timeline__date {
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.timeline__item h3 {
  margin: 0.6rem 0;
  font-size: 1.3rem;
  color: var(--color-dark);
}

.section--community {
  background: linear-gradient(
    180deg,
    rgba(15, 76, 129, 0.05),
    rgba(239, 71, 111, 0.05)
  );
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 22px 55px rgba(12, 31, 63, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(20, 33, 61, 0.8);
  margin: 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: rgba(20, 33, 61, 0.55);
}

.community__cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.community__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.community__metrics div {
  text-align: center;
}

.community__metrics div span {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-secondary);
}

.community__metrics div p {
  margin: 0.5rem 0 0 0;
  color: rgba(20, 33, 61, 0.7);
}

.section--faq {
  background: #fff;
}

.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion__item {
  background: #f9fbff;
  border-radius: 18px;
  border: 1px solid rgba(12, 31, 63, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion__item.is-open {
  border-color: rgba(15, 76, 129, 0.4);
  box-shadow: 0 18px 48px rgba(12, 31, 63, 0.12);
}

.accordion__trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}

.accordion__icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.accordion__item.is-open .accordion__content {
  max-height: 240px;
  padding-bottom: 1.2rem;
}

.accordion__content p {
  margin: 0;
  color: rgba(20, 33, 61, 0.75);
  line-height: 1.7;
}

.footer {
  background: #0b1a36;
  color: rgba(255, 255, 255, 0.82);
  padding: 4rem 4vw 2.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  overflow-x: hidden;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
}

.footer h3,
.footer h4 {
  margin: 0 0 1rem;
  color: #fff;
}

.footer__brand {
  max-width: 300px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-top: 0.5rem;
}

.footer__contact,
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer__contact li i {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: var(--color-accent);
}

.footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__form label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer__form input,
.footer__form textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.footer__form input::placeholder,
.footer__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 209, 102, 0.4);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 980;
}

.floating-actions__whatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff !important;
  border: 3px solid #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.floating-actions__whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.floating-actions__whatsapp i.fab.fa-whatsapp {
  font-size: 2rem !important;
  color: #fff !important;
  display: inline-block !important;
  line-height: 1;
  z-index: 1;
  position: relative;
}

.floating-actions__whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6),
    0 0 0 4px rgba(37, 211, 102, 0.2);
  background: #20ba5a;
}

.floating-actions__whatsapp:hover i {
  color: #fff !important;
  transform: scale(1.1);
}

.chat-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(360px, calc(100vw - 3rem));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(12, 31, 63, 0.45);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--transition), opacity 0.4s ease;
  z-index: 999;
}

.chat-widget.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-widget__header {
  background: linear-gradient(135deg, var(--color-primary), #163a68);
  color: #fff;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.chat-widget__header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.chat-widget__header span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.chat-widget__close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.chat-widget__body {
  padding: 1.2rem;
  background: #f3f6fc;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.chat-message {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-message p {
  margin: 0;
}

.chat-message--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(12, 31, 63, 0.08);
}

.chat-message--user {
  align-self: flex-end;
  background: var(--color-secondary);
  color: #fff;
}

.chat-widget__form {
  display: flex;
  gap: 0.6rem;
  padding: 0.9rem;
  border-top: 1px solid rgba(12, 31, 63, 0.08);
}

.chat-widget__form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(12, 31, 63, 0.08);
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.chat-widget__form button {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 31, 63, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
  z-index: 980;
}

.modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal__dialog {
  background: #fff;
  border-radius: 24px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  width: min(460px, 100%);
  position: relative;
  box-shadow: 0 40px 90px rgba(12, 31, 63, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modal__dialog h3 {
  margin: 0;
  color: var(--color-dark);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: rgba(12, 31, 63, 0.5);
  cursor: pointer;
}

.modal__dialog form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.modal__dialog label {
  font-weight: 500;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.modal__dialog input {
  border-radius: 14px;
  border: 1px solid rgba(12, 31, 63, 0.12);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
}

.modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 960px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .navbar__brand .navbar__logo {
    font-size: 0.95rem;
  }

  .navbar__brand .navbar__logo span {
    font-size: 0.95rem;
  }

  .navbar__brand .navbar__logo i {
    font-size: 1.2rem;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(12, 31, 63, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

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

  .navbar__links a,
  .navbar__links .nav-link {
    padding: 1.25rem 0;
    width: 100%;
    font-size: 1rem;
  }

  .navbar__links a::after,
  .navbar__links .nav-link::after {
    display: none;
  }

  .navbar__links .navbar__cta {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .navbar__links.is-open {
    right: 0;
  }

  .navbar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
  }

  body.menu-open .navbar__overlay {
    opacity: 1;
    visibility: visible;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-cart {
    right: 1rem;
    width: calc(100vw - 2rem);
    top: auto;
    bottom: 1rem;
    transform: translateY(120%);
  }

  .mini-cart.is-open {
    transform: translateY(0);
  }

  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  * {
    max-width: 100%;
  }

  .navbar {
    padding: 1rem 1.4rem;
  }

  .navbar__brand .navbar__logo {
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .navbar__brand .navbar__logo span {
    font-size: 0.9rem;
  }

  .navbar__brand .navbar__logo i {
    font-size: 1.1rem;
  }

  .hero__content {
    padding: 6rem 1.4rem 4rem;
  }

  .section {
    padding: 3.5rem 1.4rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
    z-index: 999;
  }

  .floating-actions__whatsapp {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Asegurar espacio suficiente al final del body para el footer */
  body {
    padding-bottom: 0 !important;
    min-height: 100vh;
  }

  main, .main-content {
    padding-bottom: 4rem;
    margin-bottom: 0;
  }

  /* Asegurar que el footer tenga espacio suficiente después del contenido */
  footer.footer {
    margin-bottom: 0;
  }

  .footer {
    padding: 3rem 1.4rem 12rem !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-top: auto;
    padding-bottom: 12rem !important;
    min-height: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
    width: 100%;
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .footer__grid > div {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    min-height: auto;
  }

  .footer__grid > div h3,
  .footer__grid > div h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .footer__grid > div p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding-top: 2rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
  }

  /* Asegurar espacio suficiente al final del body para el footer */
  body {
    padding-bottom: 0 !important;
  }

  main, .main-content {
    padding-bottom: 2rem;
    margin-bottom: 0;
  }

  .footer__links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__form {
    width: 100%;
    max-width: 100%;
  }

  .footer__form input,
  .footer__form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 960px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .footer {
    padding: 3rem 2rem 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-bottom: 3rem;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__form {
    width: 100%;
    max-width: 100%;
  }

  .footer__form input,
  .footer__form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 1200px) {
  .footer {
    padding: 4rem 6vw 2.5rem;
  }
}
