:root {
  --yellow: #F5E642;
  --yellow-deep: #E8D800;
  --yellow-pale: #FEFCE8;
  --coral: #F25C7A;
  --coral-dark: #D94060;
  --choco: #1E0D02;
  --choco-mid: #3D1F0A;
  --choco-warm: #6B3A1F;
  --cream: #FDF9F0;
  --cream-warm: #FAF3E0;
  --white: #FFFFFF;
  --wpp: #25D366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--choco);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 5%;
  background: rgba(253, 249, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 13, 2, 0.06);
  border-radius: 0 0 20px 20px;
  transition: box-shadow 0.3s;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-self: start;
}

.nav-logo img {
  height: 36px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-self: center;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--choco);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-wpp {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(242, 92, 122, .3);
  transition: all .25s;
  justify-self: end;
}

.nav-wpp:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(242, 92, 122, .4);
}

.nav-wpp svg {
  width: 15px;
  height: 15px;
}

/* ── TICKER ── */
.ticker {
  background: var(--choco);
  color: var(--yellow);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 71px;
}

.ticker-track {
  display: inline-flex;
  animation: tickerMove 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0 20px;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── HERO ── */
.hero {
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  min-height: calc(100vh - 107px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-bg-circle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--choco);
  color: var(--yellow);
  padding: 7px 14px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeUp .6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.5);
    opacity: .7
  }
}

.hero-title {
  font-family: 'Monoton', cursive;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.1;
  color: var(--choco);
  margin-bottom: 6px;
  animation: fadeUp .6s .1s ease both;
}

.hero-title-italic {
  color: var(--coral);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--choco-warm);
  max-width: 440px;
  margin: 22px 0 38px;
  animation: fadeUp .6s .2s ease both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp .6s .3s ease both;
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--choco);
  color: var(--yellow);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(30, 13, 2, .25);
  transition: all .25s;
}

.btn-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(30, 13, 2, .35);
}

.btn-wpp svg {
  width: 18px;
  height: 18px;
}

.btn-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--choco);
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--choco);
  transition: all .25s;
}

.btn-menu:hover {
  background: var(--choco);
  color: var(--yellow);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp .6s .4s ease both;
}

.avatars {
  display: flex;
}

.av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--yellow);
  margin-left: -10px;
  overflow: hidden;
  background: var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

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

.av-placeholder {
  color: rgba(245, 230, 66, .45);
}

.av:first-child {
  margin-left: 0;
}

.proof-stars {
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 1px;
}

.proof-label {
  font-size: 13px;
  color: var(--choco-warm);
  font-weight: 500;
  margin-top: 2px;
}


.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp .9s .15s ease both;
}

/* Outer container for aura + product */
.hero-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* ── AURA — warm radial glow behind product ── */
.hero-aura {
  position: absolute;
  inset: -12% -18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 60%,
      rgba(252, 100, 113, 0.38) 0%,
      rgba(252, 242, 131, 0.28) 38%,
      transparent 72%);
  filter: blur(38px);
  animation: auraPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes auraPulse {

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

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

/* ── PRODUCT IMAGE ── */
.hero-product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 32px 64px rgba(30, 13, 2, .22));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* ── STEAM WISPS — 3 SVG paths, staggered ── */
/* ── STEAM ANIMATION ── */
.hero-steam {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  width: 200px;
  height: 120px;
}

.steam-wisp {
  position: absolute;
  bottom: 0;
  width: 12px;
  border-radius: 50% 50% 20% 20%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  filter: blur(5px);
  animation: steamRise 3s ease-in-out infinite;
  transform-origin: bottom center;
}

.steam-wisp:nth-child(1) {
  left: 38%;
  height: 70px;
  animation-delay: 0s;
  animation-duration: 3.2s;
}

.steam-wisp:nth-child(2) {
  left: 50%;
  height: 85px;
  animation-delay: 0.8s;
  animation-duration: 2.8s;
  width: 10px;
}

.steam-wisp:nth-child(3) {
  left: 62%;
  height: 65px;
  animation-delay: 1.6s;
  animation-duration: 3.4s;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1) rotate(0deg);
  }

  15% {
    opacity: 0.65;
  }

  50% {
    opacity: 0.35;
    transform: translateY(-30px) scaleX(1.3) rotate(4deg);
  }

  85% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) scaleX(0.8) rotate(-3deg);
  }
}

/* ── BADGE "Relleno nuevo" — coral pill, bottom center ── */
.hero-badge-nuevo {
  position: absolute;
  bottom: 30%;
  left: 55%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(242, 92, 122, .35);
  animation: badgeFadeIn .8s 1s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateX(12px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* Remove old sticker system */
.hero-sticker,
.hs1,
.hs2 {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── DIFERENCIAL ── */
.diferencial {
  background: var(--cream);
  padding: 110px 5% 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sec-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Monoton', cursive;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.2;
  color: var(--choco);
  margin-bottom: 20px;
}

.sec-title em {
  font-style: normal;
  color: var(--coral);
}

.sec-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--choco-warm);
  max-width: 460px;
  margin-bottom: 40px;
}

.founders {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-avs {
  display: flex;
}

.founder-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-left: -10px;
  overflow: hidden;
  flex-shrink: 0;
}

.founder-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-av:first-child {
  margin-left: 0;
}

.founder-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--choco);
}

.founder-role {
  font-size: 12px;
  color: var(--coral);
  font-weight: 500;
}

/* ── PILLARS BENTO ── */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

/* Card base */
.pillar {
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
}

.pillar:hover {
  transform: translateY(-5px);
}

/* Card 1 — wide, yellow (top full row) */
.pillar:nth-child(1) {
  grid-column: span 2;
  background: transparent;
  min-height: 160px;
}

/* Card 2 — coral */
.pillar:nth-child(2) {
  background: transparent;
}

/* Card 3 — dark chocolate */
.pillar:nth-child(3) {
  background: transparent;
  border: 1px solid rgba(245, 230, 66, .1);
}

.pillar:nth-child(3):hover {
  box-shadow: 0 16px 48px rgba(30, 13, 2, .35);
  border-color: rgba(245, 230, 66, .25);
}

/* Decorative icon — large, faded background element */
.pillar-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  transition: opacity .32s ease, transform .32s ease;
}

.pillar:hover .pillar-icon-bg {
  opacity: .2;
  transform: scale(1.06) rotate(4deg);
}

/* Degradados de color sobre las imágenes de fondo */
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  z-index: 1;
}

.pillar:nth-child(1)::before {
  background: linear-gradient(to bottom,
      rgba(245, 230, 66, 0) 0%,
      rgba(245, 230, 66, 0.4) 40%,
      rgba(245, 230, 66, 0.85) 70%,
      #F5E642 100%);
}

.pillar:nth-child(2)::before {
  background: linear-gradient(to bottom,
      rgba(242, 92, 122, 0) 0%,
      rgba(242, 92, 122, 0.4) 40%,
      rgba(242, 92, 122, 0.85) 70%,
      #F25C7A 100%);
}

.pillar:nth-child(3)::before {
  background: linear-gradient(to bottom,
      rgba(30, 13, 2, 0) 0%,
      rgba(30, 13, 2, 0.5) 40%,
      rgba(30, 13, 2, 0.9) 70%,
      #1E0D02 100%);
}

/* Small accent icon top-left */
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.pillar:nth-child(1) .pillar-icon {
  background: var(--choco);
}

.pillar:nth-child(2) .pillar-icon {
  background: rgba(255, 255, 255, .25);
}

.pillar:nth-child(3) .pillar-icon {
  background: rgba(245, 230, 66, .15);
}

.pillar-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.pillar:nth-child(1) .pillar-title {
  color: var(--choco);
}

.pillar:nth-child(2) .pillar-title {
  color: #fff;
}

.pillar:nth-child(3) .pillar-title {
  color: var(--yellow);
}

.pillar-desc {
  font-size: 13px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.pillar:nth-child(1) .pillar-desc {
  color: var(--choco-warm);
}

.pillar:nth-child(2) .pillar-desc {
  color: rgba(255, 255, 255, .82);
}

.pillar:nth-child(3) .pillar-desc {
  color: rgba(253, 249, 240, .55);
}

/* Responsive */
@media(max-width: 560px) {
  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar:nth-child(1) {
    grid-column: span 1;
  }

  .pillar {
    min-height: 150px;
  }
}

/* ── PROCESS BENTO ── */
.process-strip {
  background: var(--choco);
  padding: 80px 5%;
}

.bento-header {
  text-align: center;
  margin-bottom: 48px;
}

.bento-header .sec-label {
  color: var(--coral);
}

.bento-header .sec-title {
  color: var(--yellow);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card base */
.bento-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  cursor: default;
}

.bento-card:hover {
  transform: translateY(-5px) scale(1.015);
}

/* Individual card themes */
.bento-card-1 {
  grid-column: span 2;
  background: var(--yellow);
  box-shadow: 0 8px 40px rgba(245, 230, 66, .15);
}

.bento-card-1:hover {
  box-shadow: 0 20px 60px rgba(245, 230, 66, .22);
}

.bento-card-2 {
  grid-column: span 1;
  background: #2A1505;
  border: 1px solid rgba(245, 230, 66, .1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

.bento-card-2:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
  border-color: rgba(245, 230, 66, .25);
}

.bento-card-3 {
  grid-column: span 1;
  background: var(--coral);
  box-shadow: 0 8px 40px rgba(242, 92, 122, .2);
}

.bento-card-3:hover {
  box-shadow: 0 20px 60px rgba(242, 92, 122, .35);
}

.bento-card-4 {
  grid-column: span 2;
  background: #1A0902;
  border: 1px solid rgba(242, 92, 122, .15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .3);
}

.bento-card-4:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  border-color: rgba(242, 92, 122, .35);
}

/* Card content */
.bento-content {
  position: relative;
  z-index: 2;
}

.bento-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.bento-card-1 .bento-tag {
  background: var(--choco);
  color: var(--yellow);
}

.bento-card-2 .bento-tag {
  background: rgba(245, 230, 66, .12);
  color: var(--yellow);
}

.bento-card-3 .bento-tag {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.bento-card-4 .bento-tag {
  background: rgba(242, 92, 122, .18);
  color: var(--coral);
}

.bento-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bento-card-1 .bento-title {
  color: var(--choco);
}

.bento-card-2 .bento-title {
  color: var(--yellow);
}

.bento-card-3 .bento-title {
  color: #fff;
}

.bento-card-4 .bento-title {
  color: #fff;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
}

.bento-card-1 .bento-desc {
  color: var(--choco-warm);
}

.bento-card-2 .bento-desc {
  color: rgba(253, 249, 240, .55);
}

.bento-card-3 .bento-desc {
  color: rgba(255, 255, 255, .82);
}

.bento-card-4 .bento-desc {
  color: rgba(253, 249, 240, .55);
}

/* Background photo canvas (full bleed) */
.bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  border-radius: 24px;
}

/* Gradient overlay — fuses photo with card color */
.bento-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.bento-card-1 .bento-overlay {
  background: linear-gradient(135deg, rgba(245, 230, 66, 0.92) 0%, rgba(245, 230, 66, 0.80) 38%, rgba(245, 230, 66, 0.30) 100%);
}

.bento-card-2 .bento-overlay {
  background: linear-gradient(135deg, rgba(42, 21, 5, 0.95) 0%, rgba(42, 21, 5, 0.82) 38%, rgba(42, 21, 5, 0.25) 100%);
}

.bento-card-3 .bento-overlay {
  background: linear-gradient(135deg, rgba(242, 92, 122, 0.95) 0%, rgba(242, 92, 122, 0.80) 38%, rgba(242, 92, 122, 0.22) 100%);
}

.bento-card-4 .bento-overlay {
  background: linear-gradient(135deg, rgba(26, 9, 2, 0.97) 0%, rgba(26, 9, 2, 0.85) 38%, rgba(26, 9, 2, 0.20) 100%);
}

/* CTA inside card 4 */
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-top: 22px;
  width: fit-content;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(242, 92, 122, .35);
}

.bento-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242, 92, 122, .5);
}

.bento-cta svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media(max-width:900px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card-1 {
    grid-column: span 2;
  }

  .bento-card-4 {
    grid-column: span 2;
  }
}

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

  .bento-card-1,
  .bento-card-4 {
    grid-column: span 1;
  }

  .bento-card {
    min-height: 180px;
    padding: 28px 24px;
  }
}

/* ── MENÚ CARRUSEL 3D ── */
.menu-section {
  background: var(--yellow);
  padding: 80px 5% 90px;
}

.menu-header {
  text-align: center;
  margin-bottom: 52px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.menu-tab {
  background: transparent;
  border: 2px solid var(--choco);
  color: var(--choco);
  padding: 9px 22px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--choco);
  color: var(--yellow);
}

/* ── CAROUSEL WRAPPER ── */
.carousel-outer {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

.carousel-mask {
  overflow-x: clip;
  overflow-y: visible;
}

.carousel-track {
  display: flex;
  gap: 32px;
  transition: transform .46s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
  align-items: flex-end;
}

/* ── PRODUCT ITEM — no card, just image + name ── */
.product-card {
  flex: 0 0 calc((100% - 96px) / 4);
  /* 4 visible at a time */
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
  transition: transform .32s ease;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* ── IMAGE WRAPPER ── */
.prod-canvas-wrap {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 2.2;
  /* tall portrait ratio matching churro photo */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.prod-canvas-wrap canvas,
.prod-canvas-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 20px rgba(30, 13, 2, .2));
  transition: filter .32s ease;
}

.product-card:hover .prod-canvas-wrap img,
.product-card:hover .prod-canvas-wrap canvas {
  filter: drop-shadow(0 16px 32px rgba(30, 13, 2, .28));
}

/* ── PRODUCT NAME ── */
.prod-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--choco);
  text-align: center;
  line-height: 1.3;
}

/* ── HIDDEN (filtered out) ── */
.product-card[style*="display: none"],
.product-card[style*="display:none"] {
  display: none !important;
}

/* ── ARROWS ── */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(30, 13, 2, .22);
  background: rgba(255, 255, 255, .80);
  backdrop-filter: blur(6px);
  color: var(--choco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: 0 2px 12px rgba(30, 13, 2, .10);
}

.carousel-btn:hover {
  background: var(--choco);
  color: var(--yellow);
  border-color: var(--choco);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
  opacity: .2;
  cursor: default;
  pointer-events: none;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
}

.carousel-btn-prev {
  left: 4px;
}

.carousel-btn-next {
  right: 4px;
}

/* ── DOTS ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(30, 13, 2, .18);
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--choco);
  width: 22px;
  border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .carousel-outer {
    padding: 0 44px;
  }

  .product-card {
    flex: 0 0 calc((100% - 64px) / 3);
  }
}

@media(max-width:560px) {
  .carousel-outer {
    padding: 0 36px;
  }

  .product-card {
    flex: 0 0 100%;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wpp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: fabPulse 3s ease-in-out infinite;
}

.wpp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}

.wpp-fab svg {
  width: 30px;
  height: 30px;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, .7), 0 0 0 8px rgba(37, 211, 102, .12);
  }
}

@media(max-width:560px) {
  .wpp-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wpp-fab svg {
    width: 26px;
    height: 26px;
  }
}

/* ── SOCIAL PROOF ── */
.social-section {
  background: var(--choco);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.social-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: rgba(245, 230, 66, .025);
  border-radius: 50%;
}

.social-header {
  text-align: center;
  margin-bottom: 64px;
}

.social-header .sec-label {
  color: var(--coral);
}

.social-header .sec-title {
  color: var(--yellow);
}

.counters {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.counter {
  text-align: center;
}

.counter-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--yellow);
  line-height: 1;
}

.counter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 230, 66, .4);
  margin-top: 8px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.review {
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 24px;
  transition: all .3s;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.review:hover {
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  transform: translateY(-3px);
}

.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e8eaed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3c4043;
  flex-shrink: 0;
  overflow: hidden;
}

.rev-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #202124;
  line-height: 1.2;
}

.rev-loc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #70757a;
  margin-top: 2px;
}

.rev-google {
  flex-shrink: 0;
  margin-top: 2px;
}

.rev-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.rev-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #3c4043;
  margin: 0;
}

/* ── INSTAGRAM WALL ── */
.insta-section {
  background: var(--cream-warm);
  padding: 80px 5%;
  overflow: hidden;
}

.insta-header {
  text-align: center;
  margin-bottom: 40px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--choco);
  display: block;
}

.insta-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 13, 2, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

/* ── MAYORISTA ── */
.mayorista {
  background: var(--coral);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

.mayorista::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
}

.mayorista-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1060px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.mayorista-content {
  flex: 1;
  min-width: 280px;
}

.mayor-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 12px;
}

.mayor-title {
  font-family: 'Monoton', cursive;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.mayor-perks {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.mayor-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.mayor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-mayor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--coral);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15);
  transition: all .25s;
}

.btn-mayor:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .22);
}

.btn-mayor svg {
  width: 16px;
  height: 16px;
}

/* ── UBICACIÓN ── */
.ubicacion {
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

/* Overlay para mejorar legibilidad del texto sobre la imagen */
.ubicacion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 249, 240, 0.75);
  backdrop-filter: blur(2px);
  z-index: 0;
}

/* Asegurar que el contenido esté sobre el overlay */
.ubicacion>* {
  position: relative;
  z-index: 1;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}

.info-val {
  font-size: 15px;
  color: var(--choco);
  line-height: 1.65;
}

.info-val a {
  color: var(--choco);
  text-decoration: none;
  font-weight: 500;
}

.info-val a:hover {
  color: var(--coral);
}

.map-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(30, 13, 2, 0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--choco);
  padding: 64px 5% 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 40px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(253, 249, 240, .45);
  line-height: 1.65;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  text-decoration: none;
  transition: all .2s;
}

.soc-btn:hover {
  background: var(--coral);
}

.footer-links-title {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 14px;
  color: rgba(253, 249, 240, .45);
  text-decoration: none;
  transition: color .2s;
}

.footer-links ul a:hover {
  color: var(--yellow);
}

.footer-cta-text {
  font-size: 14px;
  color: rgba(253, 249, 240, .45);
  line-height: 1.65;
  max-width: 200px;
  margin-bottom: 16px;
}

.btn-footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wpp);
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .3);
  transition: all .25s;
}

.btn-footer-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy,
.footer-dev {
  font-size: 12px;
  color: rgba(253, 249, 240, .25);
}

/* ── FLOATING WPP ── */


/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 5% 80px;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .hero-sub {
    margin: 20px auto 36px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .diferencial {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ubicacion {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hs1,
  .hs2 {
    display: none;
  }
}

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

  .nav-links {
    display: none;
  }

  .nav-wpp {
    display: none;
  }
}

@media(max-width:640px) {
  nav {
    padding: 12px 5%;
  }

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

  .counters {
    gap: 32px;
  }

  .counter-num {
    font-size: 42px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Ubicación — solo el título centrado, el resto queda igual */
  .ubicacion-header {
    text-align: center;
  }

  /* Footer mobile — stack centrado */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-logo {
    margin: 0 auto 12px;
  }

  .footer-tagline {
    text-align: center;
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-cta-text {
    text-align: center;
    margin: 0 auto 16px;
    max-width: 240px;
  }

  .btn-footer-wpp {
    margin: 0 auto;
  }

  div:has(> .footer-cta-text) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ── MOBILE DRAWER ── */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(242, 92, 122, .4);
  transition: all .2s ease;
  flex-shrink: 0;
  z-index: 160;
  position: relative;
  justify-self: end;
}

.menu-toggle:hover {
  background: var(--coral-dark);
  transform: scale(1.07);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* Page blur overlay */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(30, 13, 2, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}

.drawer-backdrop.open {
  opacity: 1;
}

/* The drawer panel */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 55%;
  max-width: 280px;
  height: 100dvh;
  z-index: 200;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 8px 0 40px rgba(30, 13, 2, .25);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(30, 13, 2, .07);
}

.drawer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.drawer-logo img {
  height: 32px;
  width: auto;
  mix-blend-mode: multiply;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(30, 13, 2, .06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.drawer-close:hover {
  background: var(--coral);
  color: #fff;
}

.drawer-close svg {
  width: 16px;
  height: 16px;
  color: var(--choco);
}

.drawer-close:hover svg {
  color: #fff;
}

.drawer-nav {
  list-style: none;
  padding: 24px 0 0;
  flex: 1;
}

.drawer-nav li a {
  display: block;
  padding: 15px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--choco);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .2s;
}

.drawer-nav li a:hover {
  color: var(--coral);
  border-left-color: var(--coral);
  background: rgba(242, 92, 122, .05);
  padding-left: 34px;
}

.drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(30, 13, 2, .07);
}

.drawer-wpp {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: var(--coral);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(242, 92, 122, .35);
  transition: all .25s;
}

.drawer-wpp:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.drawer-wpp svg {
  width: 17px;
  height: 17px;
}

@media(max-width:900px) {
  .menu-toggle {
    display: flex;
  }
}

/* Footer developer link hover */
.dev-link {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.dev-link:hover {
  color: var(--coral);
}