/* ============================================
   VARIABLES Y ESTILOS GLOBALES
   ============================================ */

:root {
  --orange: #ff8913;
  --orange-dark: #df6500;
  --brown: #b95807;
  --brown-dark: #914b05;
  --yellow: #f3ed00;
  --yellow-dark: #f4c60f;

  --cream: #fff6df;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* ============================================
   BOTONES GLOBALES
   ============================================ */

.button,
.button2,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 32px;
  border: 4px solid var(--brown);
  border-radius: 40px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(95, 48, 0, 0.3);
}

.button,
.btn {
  background: var(--white);
  color: var(--brown-dark);
}

.button2 {
  background: var(--yellow-dark);
  color: var(--brown);
}

.button.button-whitex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  padding: 14px 32px;
  background: #ffffff;
  color: #914b05;
  border-color: #b95807;
  box-shadow: none;
  text-align: center;
  line-height: 1;
}

.button.button-white {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  background: #ffffff;
  color: #914b05;
  border-color: #b95807;
  box-shadow: none;
}

.button.button-white:hover,
.button.button-white:focus-visible {

  background: #ffffff;
  color: #914b05;
  border-color: #b95807;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */

.site-header,
header {
  padding: 10px 0;
  background: var(--orange);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 180px;
  height: auto;
}

.nav-links,
.links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links .button,
.links .button,
.links .btn {
  border-color: transparent;
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.nav-links .button:hover,
.links .button:hover,
.links .btn:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 5px 0 var(--brown);
}

/* ============================================
   PÁGINA ACTIVA EN EL MENÚ
   ============================================ */

.links .btn[aria-current="page"] {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 5px 0 var(--brown);
}

.links .btn[aria-current="page"]:hover {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 5px 0 var(--brown);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 54px 0 46px;
  background: var(--orange);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 38px;
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.footer-community {
  justify-self: end;
  text-align: right;
}

.footer-community h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.instagram-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;

  border-radius: 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;


  border-radius: 50%;

  background: #25D366;
  color: var(--white);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);

  transition: all 0.30s ease;

  animation: whatsappPulse 5s infinite;

  text-decoration: none;
}

.whatsapp-float img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }

  5% {
    transform: scale(1.08);
  }

  10% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px;
    bottom: 20px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   HERO - PÁGINA HOME
   ============================================ */

.page-home {
  background: var(--orange);
  color: var(--brown-dark);
}

.page-home .hero {
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

.page-home .hero-grid {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 70px;
}

.page-home .hero-copy {
  max-width: 680px;
}

.page-home .hero-kicker {
  margin: 0;

  font-size: 64px;
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.page-home .hero-title {
  margin: 42px 0 0;

  color: var(--white);
  font-size: 88px;
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.page-home .hero-video {
  width: 350px;
  margin: 0 auto;
  padding: 5px;

  border: 5px solid var(--white);
  border-radius: 22px;
  background: var(--white);

  transform: rotate(5deg);

  box-shadow: 0 22px 35px rgba(95, 48, 0, 0.38);
}

.page-home .hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;

  border-radius: 14px;
}
/* Ticker (sección de texto que se mueve) */

.ticker {
  overflow: hidden;
  background: var(--brown);
  color: var(--yellow);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  padding: 16px 34px;
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Intro section */

.intro {
  background: var(--white);
}

.intro .container {
  width: 100%;
}

.intro-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  gap: 0;
}

.intro-photo img {
  width: 100%;
  height: 900px;
  object-fit: cover;
}

.intro-copy {
  display: grid;
  align-content: center;
  padding: 72px min(8vw, 130px);
  text-align: left;
}

.intro-copy h2,
.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-copy h2 {
  color: var(--orange);
}

.intro-copy h2 span,
.intro-copy h2 em {
  display: block;
}

.intro-copy h2 span {
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.intro-copy h2 em {
  margin-top: 22px;
  font-size: clamp(38px, 4.2vw, 50px);
  line-height: 0.98;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
}

.intro-copy p {
  max-width: 560px;
  margin: 34px 0 34px;
  color: var(--brown);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 500;
}

.intro-copy p strong {
  color: var(--brown);
  font-weight: 900;
}

/* Productos */

.products {
  position: relative;
  padding: 82px 0 96px;
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
}

.products .container {
  width: min(1180px, calc(100% - 32px));
}

.products .section-title {
  text-align: center;
  color: var(--brown-dark);
  font-size: clamp(50px, 7vw, 86px);
}

.subtitle,
.group-title {
  width: 100%;
  margin: 18px 0 48px;
  color: var(--yellow);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.products-wrap {
  position: relative;
}

.product-retail-row {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  margin-bottom: 44px;
}

.product-sticker {
  width: min(340px, 100%);
  justify-self: center;
  transform: rotate(9deg);
  filter: drop-shadow(0 12px 0 rgba(95, 48, 0, 0.35));
}

.product-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 370px));
  justify-content: start;
  gap: 44px;
}

.product-grid-retail {
  width: auto;
}

.product-grid.three {
  grid-template-columns: repeat(3, minmax(0, 370px));
  justify-content: space-between;
  gap: 34px;
  width: 100%;
}

.product-card {
  width: 370px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 24px;
  border: 4px solid #a95500;
  border-radius: 24px;
  background: var(--white);
  color: var(--brown);
  box-shadow: -10px 10px 0 #914b05;
}

.product-card h3 {
  margin: 0 0 8px;
  color: #b55300;
  font-size: 28px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: #b55300;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card img {
  width: 100%;
  height: 235px;
  margin-top: 10px;
  object-fit: contain;
}

.group-title {
  margin-top: 0;
}

.cta-center {
  margin-top: 42px;
  text-align: center;
}

/* ============================================
   GALERÍA
   ============================================ */

.gallery {
  position: relative;
  padding: 82px 0 70px;
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
}

.gallery .section-title {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}


/* ============================================
   VENTANA DE GALERÍA
   ============================================ */

.gallery-window {
  position: relative;
  width: 100%;
  margin-top: 82px;
  padding: 18px 0 22px;
  overflow: hidden;
}


/* ============================================
   CARRIL
   ============================================ */

.gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: max-content;

  animation: galleryScroll 30s linear infinite;
}


/* ============================================
   FOTOS
   ============================================ */

.gallery-photo {
  width: 350px;
  flex: 0 0 350px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;

  padding: 10px 0;
}

.gallery-photo img {
  display: block;

  width: 350px;
  height: 420px;

  object-fit: cover;

  border: 5px solid var(--white);
  border-radius: 25px;

  box-shadow: none;

  transform: rotate(var(--tilt, -4deg));
}


/* ============================================
   INCLINACIONES
   ============================================ */

.tilt-minus-6 {
  --tilt: -6deg;
}

.tilt-plus-5 {
  --tilt: 5deg;
}

.tilt-minus-5 {
  --tilt: -5deg;
}

.tilt-plus-4 {
  --tilt: 4deg;
}

.tilt-minus-4 {
  --tilt: -4deg;
}

.tilt-plus-6 {
  --tilt: 6deg;
}


/* ============================================
   CARTELES / FRASES
   ============================================ */

.flavor-tag {
  flex: 0 0 auto;

  position: relative;
  z-index: 5;

  min-width: 230px;

  margin-top: 20px;
  margin-left: -205px;
  margin-right: -75px;

  padding: 12px 20px;

  border: 5px solid var(--brown);
  border-radius: 16px;

  background: var(--yellow-dark);
  color: var(--brown-dark);

  font-size: 34px;
  line-height: 0.95;
  font-weight: 900;

  text-align: center;
  text-transform: uppercase;

  transform: rotate(-5deg);

  box-shadow: 0 7px 0 var(--brown-dark);
}


/* ============================================
   ANIMACIÓN
   ============================================ */

@keyframes galleryScroll {
  to {
    transform: translateX(-50%);
  }
}

/* Por qué MC */

.why-mc {
  position: relative;
  padding: 84px 0;
  background: var(--orange);
  color: var(--brown-dark);
}

.why-mc .container {
  position: relative;

  height: 500px;
  padding: 54px 46px;

  border-radius: 40px;
  background: var(--yellow-dark);
  box-shadow: -15px 15px 0 var(--brown-dark);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-mc .cta-center {
  position: absolute;
  left: 50%;
  bottom: -30px;

  transform: translateX(-50%);

  z-index: 10;
  width: max-content;

  text-align: center;
}

.why-mc .cta-center .button2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-mc .section-title {
  color: var(--brown-dark);
  text-align: center;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px auto 0;
  width: 100%;
}

.why-item {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 0 28px;
  border-left: 8px solid var(--brown-dark);
  font-size: clamp(24px, 3vw, 50px);
  line-height: 0.92;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.why-item:first-child {
  border-left: 0;
}

/* Queso (Cheese) */

.cheese {
  padding: 82px 0 94px;
  background: var(--brown-dark);
  color: var(--white);
}

.cheese .section-title {
  text-align: center;
  color: var(--white);
  font-size: clamp(50px, 7vw, 80px);
}

.info-panel-wrap {
  position: relative;
  width: min(1060px, 100%);
  margin: 44px auto 0;
}

.panel-top-button {
  position: relative;
  z-index: 2;
  margin-bottom: -28px;
  text-align: center;
}

.cheese-panel {
  position: relative;
  padding: 78px 46px 46px;
  border: 4px solid var(--yellow);
  border-radius: 40px;
  background: var(--orange);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.12);
}

.panel-sticker {
  position: absolute;
  right: -80px;
  top: -54px;
  width: min(280px, 22vw);
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.18));
  transform: rotate(9deg);
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  margin-bottom: 42px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-copy h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
}

.info-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.05;
  font-weight: 400;
}

.info-image img {
  width: min(500px, 100%);
  height: min(500px, 70vw);
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 16px 24px rgba(95, 48, 0, 0.24);
}

/* Red (Network) */


.network {
  position: relative;

  min-height: 550px;
  display: grid;
  align-items: center;
  padding: 86px 0;

  background: var(--brown-dark);
  text-align: center;
}

.network .button2 {
  position: absolute;
  left: 50%;
  bottom: -28px;

  transform: translateX(-50%);

  z-index: 10;
}

.network img {
  width: min(900px, 100%);
  margin: 0 auto 34px;
}

/* Bloque de ventas */

.sales-block {
  min-height: 800px;
  display: grid;
  align-items: center;
  padding: 86px 0;
  background: var(--white);
  color: var(--orange);
  text-align: center;
}

.sales-block h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 66px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--orange);
  font-style: italic;
  letter-spacing: 0.03em;
}

.sales-block p {
  margin: 26px auto 42px;
  max-width: 800px;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
  font-weight: 500;
}

.sales-block p strong {
  color: var(--orange);
  font-weight: 900;
}

/* Clientes */

.clients {
  min-height: 800px;
  display: grid;
  align-items: center;
  padding: 92px 0;
  background: var(--brown-dark);
  color: var(--white);
}

.clients h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 66px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
}

.clients-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 64px;
}

.clients p {
  margin: 18px 0 0;
  max-width: 420px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 34px;
}

.brand-grid img {
  justify-self: center;
  max-height: 92px;
  object-fit: contain;
}

/* ============================================
   PÁGINA CONTACT
   ============================================ */

.page-contact {
  background: var(--white);
  color: var(--brown);
}

.page-contact main {
  display: block;
  padding: 0;
  text-align: left;
}


/* ============================================
   HERO CONTACTO
   ============================================ */

.page-contact .hero {
  padding: 45px 0 55px;
  background: var(--orange);
}

.page-contact .hero-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 55px;
}

.page-contact .hero-grid>div:first-child {
  text-align: left;
}

.page-contact .hero h1 {
  margin: 0;

  color: var(--white);

  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.88;
  font-weight: 900;

  text-transform: uppercase;
}

.page-contact .hero p {
  max-width: 590px;
  margin: 18px 0 0;

  color: var(--white);

  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

.page-contact .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-contact .hero-image img {
  width: 430px;
  height: 580px;

  object-fit: cover;

  border: 8px solid var(--white);
  border-radius: 34px;

  box-shadow: 0 18px 34px rgba(95, 48, 0, 0.28);

  transform: rotate(3deg);
}


/* ============================================
   CONTACTO
   ============================================ */

.page-contact .contact-section {
  padding: 70px 0 70px;
  background: var(--white);
  color: var(--brown);
}

.page-contact .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}


/* ============================================
   TEXTO IZQUIERDO
   ============================================ */

.page-contact .contact-copy {
  padding-top: 35px;
  text-align: center;
}

.page-contact .contact-copy h1 {
  margin: 0 0 22px;
  color: #965000;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.page-contact .contact-copy p {
  max-width: 470px;
  margin: 0 auto;
  color: #965000;
  font-size: 27px;
  line-height: 1.55;
  font-weight: 400;
  white-space: normal;
}

.page-contact .contact-copy strong {
  display: block;
  margin-top: 0;
  color: #965000;
  font-weight: 400;
}


/* ============================================
   DATOS DE CONTACTO
   ============================================ */

.page-contact .contact-data {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-contact .contact-data a {
  color: #965000;
  text-decoration: none;
  font-size: 27px;
  line-height: 1.35;
  font-weight: 400;
}

.page-contact .contact-data a:hover {
  text-decoration: underline;
}


/* ============================================
   FORMULARIO
   ============================================ */

.page-contact form {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;

  display: grid;
  gap: 16px;

  padding: 0;

  border-radius: 0;
  background: transparent;
  color: var(--orange);
}


/* Ocultamos los labels visualmente.
   El texto aparecerá dentro de cada campo
   mediante los placeholders del HTML. */

.page-contact form label {
  display: grid;
  gap: 0;

  margin: 0;

  font-size: 0;
  font-weight: 400;
  text-transform: none;
}


/* ============================================
   CAMPOS
   ============================================ */

.page-contact form input,
.page-contact form select,
.page-contact form textarea {
  box-sizing: border-box;

  width: 100%;
  min-height: 57px;

  padding: 15px 16px;

  border: 2px solid #ff6500;
  border-radius: 28px;

  outline: none;

  background: #ffffff;
  color: #555555;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* Placeholder */

.page-contact form input::placeholder,
.page-contact form textarea::placeholder {
  color: #777777;
  opacity: 1;
}


/* ============================================
   SELECT
   ============================================ */

.page-contact form select {
  cursor: pointer;
  color: #777777;
}

.page-contact form select:valid {
  color: #ff6500;
}


/* ============================================
   FOCUS
   ============================================ */

.page-contact form input:focus,
.page-contact form select:focus,
.page-contact form textarea:focus {
  border-color: #e85b00;
  box-shadow: 0 0 0 2px rgba(255, 101, 0, 0.08);
}


/* ============================================
   ÁREA DE CONSULTA
   ============================================ */

.page-contact form textarea {
  min-height: 118px;
  padding-top: 18px;

  border-radius: 25px;

  resize: vertical;
}


/* ============================================
   BOTÓN
   ============================================ */

.page-contact form .form-button {
  width: 100%;
  min-height: 57px;

  margin-top: 5px;
  padding: 14px 25px;

  border: none;
  border-radius: 30px;

  background: #fdbb00;
  color: #754500;

  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;

  line-height: 1;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.page-contact form .form-button:hover {
  background: #f5b000;
  transform: translateY(-1px);
}

.page-contact form .form-button:active {
  transform: translateY(0);
}


/* ============================================
   CONTACT - RESPONSIVE
   ============================================ */

@media (max-width: 980px) {

  .page-contact .contact-section {
    padding: 60px 0 70px;
  }

  .page-contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-contact .contact-copy {
    padding-top: 0;
  }

  .page-contact form {
    max-width: 600px;
  }
}


@media (max-width: 560px) {

  .page-contact .contact-section {
    padding: 45px 16px 55px;
  }

  .page-contact .contact-copy h1 {
    font-size: 28px;
  }

  .page-contact .contact-copy p,
  .page-contact .contact-data a {
    font-size: 19px;
  }

  .page-contact form {
    padding: 0;
  }

  .page-contact form input,
  .page-contact form select,
  .page-contact form textarea {
    min-height: 54px;
    font-size: 13px;
  }

  .page-contact form textarea {
    min-height: 115px;
  }

  .page-contact form .form-button {
    min-height: 55px;
    font-size: 14px;
  }
}

/* ============================================
   LANDINGS INTERNAS
   ABOUT / SUSTENTABILIDAD / CALIDAD
   ============================================ */

/* HERO */

.page-about .hero,
.page-sustainability .hero,
.page-quality .hero {
  padding: 45px 0 55px;
  background: var(--orange);
}

.page-about .hero-grid,
.page-sustainability .hero-grid,
.page-quality .hero-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 55px;
}

/* TEXTO DEL HERO */

.page-about .hero-grid>div:first-child,
.page-sustainability .hero-grid>div:first-child,
.page-quality .hero-grid>div:first-child {
  text-align: left;
}

.page-about .hero h1,
.page-sustainability .hero h1,
.page-quality .hero h1 {
  margin: 0;
  color: var(--white);

  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.88;
  font-weight: 900;

  text-transform: uppercase;
}

.page-about .hero h2,
.page-sustainability .hero h2,
.page-quality .hero h2 {
  margin: 24px 0 14px;

  color: var(--white);

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.page-about .hero p,
.page-sustainability .hero p,
.page-quality .hero p {
  max-width: 590px;
  margin: 18px 0 0;

  color: var(--white);

  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

/* IMAGEN DEL HERO */

.page-about .hero-image,
.page-sustainability .hero-image,
.page-quality .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-about .hero-image img,
.page-sustainability .hero-image img,
.page-quality .hero-image img {
  width: 430px;
  height: 580px;

  object-fit: cover;

  border: 8px solid var(--white);
  border-radius: 34px;

  box-shadow: 0 18px 34px rgba(95, 48, 0, 0.28);

  transform: rotate(3deg);
}

/* STORY */

.story {
  padding: 88px 0 110px;
  background: var(--white);
}

.story-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 52px;

  border-radius: 34px;
  background: var(--white);
}

.story p {
  margin: 0 0 24px;

  color: var(--brown);

  font-size: 21px;
  line-height: 1.55;
  font-weight: 700;

  text-align: center;
}

.story p:last-child {
  margin-bottom: 0;
}

.story strong {
  color: var(--brown);
  font-weight: 900;
}

/* ============================================
   HERO PUNTOS DE VENTA
   ============================================ */

.page-points .hero {
  padding: 45px 0 55px;
  background: var(--orange);
}

.page-points .hero-grid {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 55px;
}

.page-points .hero-grid>div:first-child {
  text-align: left;
}

.page-points .hero h1 {
  margin: 0;

  color: var(--white);

  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.88;
  font-weight: 900;

  text-transform: uppercase;
}

.page-points .hero .subtitle {
  margin: 24px 0 14px;

  color: var(--white);

  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
}

.page-points .hero p:not(.subtitle) {
  max-width: 590px;
  margin: 18px 0 0;

  color: var(--white);

  font-size: 24px;
  line-height: 1.08;
  font-weight: 700;
}

.page-points .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-points .hero-image img {
  width: 430px;
  height: 580px;

  object-fit: cover;

  border: 8px solid var(--white);
  border-radius: 34px;

  box-shadow: 0 18px 34px rgba(95, 48, 0, 0.28);

  transform: rotate(3deg);
}

/* Map section */

.map-section {
  padding: 80px 0;
  background: var(--white);
}

.map-frame {
  width: 100%;
  min-height: 640px;
  border: 8px solid var(--white);
  border-radius: 34px;
  box-shadow: 0 8px 0 rgba(95, 48, 0, 0.18);
}

/* Join section */

.join-section {
  padding: 90px 0;
  background: var(--white);
  color: var(--white);
  text-align: center;
}

.join-section h2 {

  margin: 0 0 28px;
  color: var(--brown);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 36px;
  border: 4px solid var(--brown);
  border-radius: 40px;
  background: var(--yellow-dark);
  color: var(--brown);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 5px 0 rgba(95, 48, 0, 0.3);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

@media (max-width: 1560px) {
  .product-grid.three {
    grid-template-columns: repeat(3, minmax(0, 370px));
    width: 100%;
  }
}

@media (max-width: 980px) {

  .nav,
  .footer-grid {
    align-items: flex-start;
  }

  .footer-grid,
  .info-row,
  .clients-grid,
  .page-contact .hero-grid,
  .page-about .hero-grid,
  .page-sustainability .hero-grid,
  .page-quality .hero-grid,
  .page-points .hero-grid,
  .page-contact .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-community {
    justify-self: start;
    text-align: left;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .page-home .hero {
    padding-top: 46px;
  }

  .page-home .hero-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-photo img {
    height: min(800px, 118vw);
  }

  .intro-copy {
    padding: 48px 24px 64px;
  }

  .product-grid,
  .product-grid.three {
    grid-template-columns: 1fr;
    width: min(370px, 100%);
    justify-content: center;
  }

  .product-retail-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-sticker {
    width: min(300px, 82vw);
    margin: 22px auto;
  }

  .why-mc .container {
    height: auto;
    min-height: 500px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-left: 0;
    border-top: 5px solid var(--brown-dark);
  }

  .why-item:first-child {
    border-top: 0;
  }

  .cheese-panel {
    padding: 62px 22px 28px;
  }

  .panel-sticker {
    right: 12px;
    top: -42px;
    width: 116px;
  }

  .info-row:nth-child(2) .info-image {
    order: 2;
  }

  .page-contact .hero-image img,
  .page-about .hero-image img,
  .page-sustainability .hero-image img,
  .page-quality .hero-image img,
  .page-points .hero-image img {
    transform: none;
  }

  .button,
  .btn {
    font-size: 26px;
  }

  .links .button,
  .links .btn,
  .nav-links .button {
    font-size: 24px;
  }

  .story-card {
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .logo img {
    width: 110px;
  }

  .button,
  .button2,
  .btn,
  .join-button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 24px;
  }

  .nav-links,
  .links {
    gap: 10px;
  }

  .product-card {
    width: 100%;
    height: 360px;
  }

  .gallery-photo,
  .gallery-photo img {
    width: 280px;
  }

  .gallery-photo {
    flex-basis: 280px;
  }

  .gallery-photo img {
    height: 360px;
  }

  .flavor-tag {
    min-width: 185px;
    margin-left: -165px;
    margin-right: -60px;
    font-size: 25px;
    padding: 10px 16px;
  }

  form {
    padding: 22px;
  }

  .story p {
    font-size: 18px;
  }
}

/* ============================================
   AJUSTES FINALES - RESPONSIVE MÓVIL
   ============================================ */

@media (max-width: 560px) {

  /* -----------------------------
     HEADER
     ----------------------------- */

  header {
    padding: 8px 0;
  }

  .nav {
    gap: 12px;
    align-items: center;
  }

  .logo img {
    width: 105px;
  }

  .links {
    gap: 7px;
    justify-content: flex-end;
  }

  .links .button,
  .links .btn {
    width: auto;
    min-height: 42px;
    padding: 8px 12px;
    border-width: 3px;
    border-radius: 28px;
    font-size: 12px;
    line-height: 1.05;
  }


  /* -----------------------------
     HERO HOME
     ----------------------------- */

  .page-home .hero {
    min-height: auto;
    padding: 42px 0 58px;
  }

  .page-home .hero-grid {
    gap: 35px;
  }

  .page-home .hero-kicker {
    font-size: clamp(34px, 10vw, 46px);
  }

  .page-home .hero-title {
    margin-top: 28px;
    font-size: clamp(48px, 13vw, 70px);
  }


  /* -----------------------------
     HERO LANDINGS
     ----------------------------- */

  .page-about .hero,
  .page-sustainability .hero,
  .page-quality .hero,
  .page-points .hero,
  .page-contact .hero {
    padding: 38px 0 48px;
  }

  .page-about .hero-grid,
  .page-sustainability .hero-grid,
  .page-quality .hero-grid,
  .page-points .hero-grid,
  .page-contact .hero-grid {
    width: min(100% - 32px, 1200px);
    gap: 34px;
  }

  .page-about .hero h1,
  .page-sustainability .hero h1,
  .page-quality .hero h1,
  .page-points .hero h1,
  .page-contact .hero h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: 0.9;
  }

  .page-about .hero h2,
  .page-sustainability .hero h2 {
    margin: 20px 0 12px;
    font-size: clamp(25px, 7vw, 34px);
  }

  .page-about .hero p,
  .page-sustainability .hero p,
  .page-quality .hero p,
  .page-points .hero p:not(.subtitle),
  .page-contact .hero p {
    margin-top: 16px;
    font-size: 19px;
    line-height: 1.2;
  }

  .page-points .hero .subtitle {
    margin: 20px 0 12px;
    font-size: clamp(25px, 7vw, 34px);
  }


  /* -----------------------------
     IMÁGENES DE LOS HERO
     ----------------------------- */

  .page-about .hero-image img,
  .page-sustainability .hero-image img,
  .page-quality .hero-image img,
  .page-points .hero-image img,
  .page-contact .hero-image img {
    width: min(360px, 88vw);
    height: min(480px, 120vw);
    border-width: 6px;
    border-radius: 28px;
  }


  /* -----------------------------
     STORY
     ----------------------------- */

  .story {
    padding: 55px 0 70px;
  }

  .story-card {
    width: 100%;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .story p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
  }


  /* -----------------------------
     GALERÍA
     ----------------------------- */

  .gallery {
    padding: 58px 0 55px;
  }

  .gallery .section-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .gallery-window {
    margin-top: 55px;
  }


  /* -----------------------------
     POR QUÉ MUNDO CHIPÁ
     ----------------------------- */

  .why-mc {
    padding: 58px 0;
  }

  .why-mc .container {
    min-height: 440px;
    padding: 42px 20px;
    border-radius: 30px;
    box-shadow: -9px 9px 0 var(--brown-dark);
  }

  .why-mc .section-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .why-list {
    margin-top: 30px;
  }

  .why-item {
    min-height: 90px;
    padding: 20px 12px;
    font-size: clamp(22px, 7vw, 34px);
  }

  .why-mc .cta-center {
    width: calc(100% - 30px);
    bottom: -25px;
  }

  .why-mc .cta-center .button2 {
    width: 100%;
    font-size: 18px;
    padding: 0 16px;
  }


  /* -----------------------------
     QUESO
     ----------------------------- */

  .cheese {
    padding: 58px 0 70px;
  }

  .cheese .section-title {
    font-size: clamp(38px, 10vw, 56px);
  }

  .info-panel-wrap {
    margin-top: 35px;
  }

  .cheese-panel {
    padding: 58px 18px 25px;
    border-radius: 28px;
  }

  .panel-sticker {
    right: 8px;
    top: -35px;
    width: 100px;
  }

  .info-row {
    gap: 28px;
    margin-bottom: 35px;
  }

  .info-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .info-copy p {
    font-size: 20px;
    line-height: 1.15;
  }


  /* -----------------------------
     NETWORK
     ----------------------------- */

  .network {
    min-height: 420px;
    padding: 60px 0 75px;
  }

  .network img {
    margin-bottom: 25px;
  }

  .network .button2 {
    bottom: -25px;
    width: calc(100% - 32px);
    font-size: 18px;
    padding: 0 16px;
    text-align: center;
  }


  /* -----------------------------
     SALES
     ----------------------------- */

  .sales-block {
    min-height: 600px;
    padding: 65px 0;
  }

  .sales-block h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .sales-block p {
    font-size: 19px;
    line-height: 1.3;
  }


  /* -----------------------------
     CLIENTES
     ----------------------------- */

  .clients {
    min-height: 600px;
    padding: 65px 0;
  }

  .clients h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .clients p {
    font-size: 20px;
    line-height: 1.05;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }


  /* -----------------------------
     MAPA
     ----------------------------- */

  .map-section {
    padding: 50px 0;
  }

  .map-frame {
    min-height: 500px;
    border-width: 5px;
    border-radius: 25px;
  }

  .join-section {
    padding: 65px 0;
  }

  .join-section h2 {
    font-size: clamp(30px, 8vw, 46px);
  }

  .join-button {
    font-size: 18px;
    padding: 0 20px;
  }


  /* -----------------------------
     FOOTER
     ----------------------------- */

  .footer {
    padding: 42px 0 35px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-links {
    justify-items: start;
    font-size: 11px;
  }

  .footer-community h3 {
    font-size: 16px;
  }


  /* -----------------------------
     WHATSAPP
     ----------------------------- */

  .whatsapp-float {
    right: 14px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 27px;
    height: 27px;
  }
}

/* ============================================
   MENÚ HAMBURGUESA - MÓVIL
   ============================================ */

.menu-toggle {
  display: none;
}


/* --------------------------------------------
   MÓVIL
   -------------------------------------------- */

@media (max-width: 560px) {

  header {
    position: relative;
    z-index: 1000;
  }

  .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    position: relative;
    z-index: 1002;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 1002;

    width: 48px;
    height: 48px;

    padding: 0;
    margin: 0;

    border: 3px solid var(--brown-dark);
    border-radius: 50%;

    background: var(--yellow);
    color: var(--brown-dark);

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 3px;

    border-radius: 3px;
    background: var(--brown-dark);

    transition:
      transform 0.25s ease,
      opacity 0.2s ease;
  }

  /* Menú cerrado */

  .links {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: min(280px, calc(100vw - 32px));

    padding: 14px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    background: var(--white);

    border: 3px solid var(--brown-dark);
    border-radius: 24px;

    box-shadow: 8px 8px 0 var(--brown-dark);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  /* Menú abierto */

  .nav.menu-open .links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .links .button,
  .links .btn {
    width: 100%;
    min-height: 48px;

    padding: 10px 14px;

    font-size: 15px;
    line-height: 1.1;

    text-align: center;
  }

  /* Animación hamburguesa → X */

  .nav.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ============================================
   MENSAJE DE ÉXITO
   ============================================ */

.page-contact .form-success {
  display: none;
  flex-direction: column;
  gap: 6px;

  padding: 18px 22px;
  margin-bottom: 4px;

  border: 2px solid #fdbb00;
  border-radius: 20px;

  background: #fff8df;
  color: #754500;

  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.page-contact .form-success.show {
  display: flex;
}

.page-contact .form-success strong {
  font-size: 17px;
  font-weight: 800;
}

.page-contact .form-success span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}
/* ============================================
   MENÚ MÓVIL - COLOR DE LOS ENLACES
   ============================================ */

@media (max-width: 768px) {

  .nav.menu-open .links .btn,
  .nav.menu-open .links .button {
    color: var(--orange);
  }

  .nav.menu-open .links .btn:hover,
  .nav.menu-open .links .button:hover {
    color: var(--brown-dark);
  }

}
/* ============================================
   ANTI-SPAM - HONEYPOT
   ============================================ */

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}