/* ============ TOKENS ============ */
:root {
  --moss: #3f4d2e;
  --moss-2: #566b3d;
  --moss-light: #7c9159;
  --moss-pale: #e7ead9;
  --cream: #f8f3e6;
  --cream-stripe: #efe6cf;
  --gold: #b9902f;
  --gold-light: #d9b56a;
  --cacao: #3a2417;
  --cacao-soft: #6b4a35;
  --blush: #e8a9bb;
  --paper: #fffdf8;

  --font-display: "Fraunces", serif;
  --font-script: "Caveat", cursive;
  --font-body: "Jost", sans-serif;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 30px -12px rgba(58, 36, 23, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--cacao);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--moss);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.95); /* beige cálido del fondo de la caja */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 77, 46, 0.12);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 110;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 4px;
  background-color: #8ba85e; /* Verde Matcha (Senn) */
  border-radius: 99px;
}

/* Hamburger to X conversion */
.site-header.nav-open .nav-toggle .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.site-header.nav-open .nav-toggle .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transform: rotate(-90deg);
  transition: transform .2s ease;
}

.brand-mini:hover .brand-logo-img {
  transform: rotate(-90deg) scale(1.05);
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--cacao-soft);
  position: relative;
  padding: 4px 0;
}

.main-nav a:hover {
  color: var(--moss);
}

.whatsapp-btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #dcead0; /* Verde claro Matcha (Senn) */
  border: 1px solid rgba(139, 168, 94, 0.2);
  box-shadow: 0 4px 12px rgba(139, 168, 94, 0.12);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-btn-round:hover {
  background: #8ba85e; /* Verde Matcha Firma (Senn) */
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(139, 168, 94, 0.3);
}

.whatsapp-btn-round:hover .wa-header-img {
  filter: brightness(0) invert(1); /* Se vuelve blanco al pasar el cursor */
}

.wa-header-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

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

  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--paper); /* beige cálido */
    border: 1.5px solid var(--moss);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(58, 36, 23, 0.18);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    text-align: center;
  }

  .site-header.nav-open .main-nav {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--moss);
    font-weight: 600;
    padding: 8px 4px;
    border-bottom: 1px dashed rgba(63, 77, 46, 0.1);
    transition: color 0.2s ease;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover {
    color: var(--gold);
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 64px;
  }
  .brand-logo-img {
    height: 40px;
  }
  .whatsapp-pill {
    padding: 7px 13px;
    font-size: 12px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, var(--cream-stripe) 0 46px, var(--cream) 46px 92px);
  opacity: 0.7;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}

.eyebrow.center {
  text-align: center;
}

/* ============ HERO SPLIT GRID ============ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero-text-side {
  text-align: left;
  position: relative;
  z-index: 10;
}

.hero-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 54px);
  color: var(--moss);
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.015em;
}

.hero-tagline {
  font-size: 17.5px;
  color: var(--cacao-soft);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.55;
  text-align: left;
}

.hero-ctas {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ HERO MAIN SCENE ============ */
.hero-main-scene {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--cream-stripe);
  border: 1.5px solid rgba(63, 77, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 8px 24px rgba(58, 36, 23, 0.05), 0 12px 32px -12px rgba(58, 36, 23, 0.15);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.scene-circle::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(63, 77, 46, 0.25);
  pointer-events: none;
}

.scene-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  transform: rotate(-90deg);
  filter: drop-shadow(0 8px 16px rgba(58, 36, 23, 0.15));
  z-index: 3;
}

/* Floating mascots styling */
.floating-mascot {
  position: absolute;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 12px 24px rgba(58, 36, 23, 0.22));
  animation: floatMascot 4s ease-in-out infinite;
}

.mascot-senn {
  width: 125px;
  bottom: 24px;
  left: 20px;
  animation-delay: 0s;
}

.mascot-coqui {
  width: 135px;
  bottom: 36px;
  right: 10px;
  animation-delay: 0.8s;
  animation-name: floatMascotAlt;
}

.mascot-nutty {
  width: 110px;
  top: 24px;
  right: 48px;
  animation-delay: 1.6s;
}

@keyframes floatMascot {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes floatMascotAlt {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

.hero-tagline em {
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 760px) {
  .hero {
    padding: 36px 0 40px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .hero-text-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 32px !important;
  }
  
  .hero-tagline {
    text-align: center;
    margin: 0 auto 24px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--moss);
  color: var(--cream);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(63, 77, 46, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--moss);
  border-color: var(--moss);
}

.btn-ghost:hover {
  background: var(--moss);
  color: var(--cream);
}

.btn-text {
  background: none;
  border: none;
  color: var(--cacao-soft);
  font-size: 13.5px;
  padding: 6px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--moss);
}

.btn-whatsapp {
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn[disabled],
.btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============ SECTION GENERIC ============ */
section {
  padding: 88px 0;
}

@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.section-title.center {
  text-align: center;
}

.section-lead {
  color: var(--cacao-soft);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 46px;
}

.section-lead.center {
  text-align: center;
}

@media (max-width: 600px) {
  .section-lead {
    margin-bottom: 32px;
    font-size: 14.5px;
  }
}

/* ============ BUILDER ============ */
.builder {
  background: var(--paper);
  border-top: 1px solid rgba(63, 77, 46, 0.1);
  border-bottom: 1px solid rgba(63, 77, 46, 0.1);
}

.size-picker {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 98px;
  padding: 16px 8px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(63, 77, 46, 0.25);
  background: var(--cream);
  cursor: pointer;
  transition: all .2s ease;
}

.size-btn .n {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--moss);
  font-weight: 600;
}

.size-btn .l {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cacao-soft);
}

.size-btn:hover {
  border-color: var(--moss);
  transform: translateY(-3px);
}

.size-btn.active {
  background: var(--moss);
  border-color: var(--moss);
}

.size-btn.active .n,
.size-btn.active .l {
  color: var(--cream);
}

@media (max-width: 520px) {
  .size-picker {
    gap: 8px;
    margin-bottom: 36px;
  }
  .size-btn {
    width: 68px;
    padding: 10px 4px 8px;
  }
  .size-btn .n {
    font-size: 20px;
  }
  .size-btn .l {
    font-size: 9.5px;
  }
}

.builder-stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 900px) {
  .builder-stage {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.stage-left {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

@media (max-width: 900px) {
  .stage-left {
    position: static;
  }
}

.crate {
  position: relative;
  width: 370px;
  max-width: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, #d8bd8a, #c7a56d);
  border-radius: 14px;
  border: 2.5px solid #a9834f;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.14), var(--shadow-soft);
  padding: 32px 22px 22px;
  transition: width .4s ease, min-height .4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.crate::before {
  content: "";
  position: absolute;
  inset: 8px 10px;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, transparent 0 30px, rgba(90, 60, 20, 0.15) 30px 32px);
  opacity: 0.5;
}

.crate-lidtag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--moss);
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.crate-slots {
  width: 100%;
  display: grid;
  gap: 12px;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 0;
}

.crate.size-12 {
  width: 420px;
  max-width: 100%;
}

.crate.size-24 {
  width: 470px;
  max-width: 100%;
}

.crate.size-12 .crate-slots {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.crate.size-24 .crate-slots {
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

@media (max-width: 500px) {
  .crate {
    padding: 28px 14px 16px;
  }
  .crate.size-12 .crate-slots {
    grid-template-columns: repeat(3, 1fr);
  }
  .crate.size-24 .crate-slots {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.slot {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px dashed rgba(90, 60, 20, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

.slot.filled {
  border-style: solid;
  border-color: transparent;
  background: transparent;
  animation: dropIn .5s cubic-bezier(.2, 1.4, .4, 1);
}

.slot img,
.crate-char-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.slot img[src*="manu"],
.crate-char-img[src*="manu"] { transform: scale(0.85); }
.slot img[src*="nutty"],
.crate-char-img[src*="nutty"] { transform: scale(0.90); }
.slot img[src*="oryo"],
.crate-char-img[src*="oryo"] { transform: scale(1.05); }
.slot img[src*="senn"],
.crate-char-img[src*="senn"] { transform: scale(1.05); }
.slot img[src*="coqui"],
.crate-char-img[src*="coqui"] { transform: scale(1.12); }
.slot img[src*="coppy"],
.crate-char-img[src*="coppy"] { transform: scale(1.20); }

@keyframes dropIn {
  0% {
    transform: translateY(-140px) scale(0.4) rotate(-14deg);
    opacity: 0;
  }
  60% {
    transform: translateY(6px) scale(1.08) rotate(4deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1) rotate(0);
  }
}

.crate-count {
  font-size: 13.5px;
  color: var(--cacao-soft);
  letter-spacing: 0.02em;
}

.flavor-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 700px) {
  .flavor-picker {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.flavor-card {
  background: var(--cream);
  border: 1.5px solid rgba(63, 77, 46, 0.15);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.flavor-card .fc-icon {
  width: 170px;
  height: 170px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.flavor-char-img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}

.flavor-card h4 {
  font-family: var(--font-display);
  color: var(--moss);
  font-size: 19px;
  margin: 0;
}

.flavor-card .fc-sub {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
}

.flavor-card p {
  font-size: 12.5px;
  color: var(--cacao-soft);
  margin: 2px 0 8px;
  line-height: 1.45;
}

.fc-add {
  border: 1.5px solid var(--moss);
  color: var(--moss);
  background: transparent;
  padding: 9px 24px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  width: auto;
  max-width: 90%;
  margin: 4px auto 0;
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fc-add:hover {
  background: var(--moss);
  color: var(--cream);
}

.fc-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* --- Card Highlight when inside the crate --- */
.flavor-card {
  position: relative;
}

.flavor-card.selected-in-crate {
  border-color: var(--moss);
  background: var(--paper);
  box-shadow: 0 8px 24px -10px rgba(63, 77, 46, 0.35);
  transform: translateY(-2px);
}

.fc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--moss);
  color: var(--cream);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(63, 77, 46, 0.4);
  animation: badgePopIn 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  z-index: 10;
}

@keyframes badgePopIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


[hidden] {
  display: none !important;
}

@media (max-width: 600px) {
  .builder {
    padding: 24px 0 !important;
  }

  .builder .section-lead {
    display: none !important;
  }

  .builder .section-title {
    margin-bottom: 16px;
  }

  .size-picker {
    margin-bottom: 28px !important;
  }

  .stage-left {
    margin-top: 14px !important;
    gap: 8px !important;
  }

  .crate {
    width: 240px !important;
    min-height: 160px !important;
    padding: 20px 10px 8px !important;
    border-radius: var(--radius-sm) !important;
  }

  .crate.size-12 {
    width: 270px !important;
  }

  .crate.size-24 {
    width: 290px !important;
  }

  .crate::before {
    inset: 4px 6px !important;
  }

  .crate-lidtag {
    top: -12px !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
  }

  .crate-slots {
    gap: 6px !important;
    padding: 4px 0 !important;
  }


  .slot img,
  .crate-char-img {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2)) !important;
  }

  .flavor-picker {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .flavor-card {
    padding: 10px 4px;
    gap: 2px;
    border-radius: var(--radius-sm);
  }

  .flavor-card .fc-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
  }

  .flavor-char-img {
    max-width: 64px;
    max-height: 64px;
  }

  .flavor-card h4 {
    font-size: 13.5px;
    line-height: 1.1;
  }

  .flavor-card .fc-sub {
    font-size: 8.5px;
  }

  .flavor-card p {
    display: none !important; /* Hide description paragraph to save massive vertical space */
  }

  .fc-add {
    padding: 7px 8px;
    font-size: 11px;
    margin-top: 4px;
  }
}

@media (max-width: 380px) {
  .flavor-picker {
    gap: 6px;
  }
  .flavor-card {
    padding: 8px 3px;
  }
  .flavor-card .fc-icon {
    width: 64px;
    height: 64px;
  }
  .flavor-char-img {
    max-width: 56px;
    max-height: 56px;
  }
}


.order-bar {
  margin-top: 48px;
  padding: 22px 26px;
  background: var(--moss-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .order-bar {
    justify-content: center;
    text-align: center;
    padding: 18px 16px;
  }
}

.order-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .order-chips {
    justify-content: center;
  }
}

.chip {
  background: var(--paper);
  border: 1px solid rgba(63, 77, 46, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip b {
  color: var(--moss);
}

/* ============ CHARACTER CAROUSEL ============ */
.menu-section {
  background: var(--cream-stripe);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .menu-section {
    padding: 56px 0;
  }
}

.char-carousel-section {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.char-carousel-viewport {
  flex: 1;
  position: relative;
  height: 640px;
  overflow: visible;
}

.char-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Arrow buttons ── */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(63, 77, 46, 0.2);
  background: var(--paper);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all .2s ease;
  box-shadow: 0 4px 14px -6px rgba(58, 36, 23, 0.2);
  margin: 0 6px;
}

.carousel-arrow:hover {
  background: var(--moss);
  color: var(--cream);
  transform: scale(1.08);
}

/* ── Cards (Coverflow Slide Format) ── */
.ccard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  box-shadow: none;
  will-change: transform, opacity;

  transform: translate(-50%, -50%) translateX(0) scale(0.5);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .55s cubic-bezier(0.25, 1, 0.5, 1),
    opacity .4s ease,
    background .55s ease;
}

/* Coverflow layout translation offset positions */
.ccard[data-pos="0"] {
  transform: translate(-50%, -50%) translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  width: 340px;
  background: var(--char-bg-gradient);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 64px -20px rgba(58, 36, 23, 0.3);
  cursor: default;
}

.ccard[data-pos="1"] {
  transform: translate(-50%, -50%) translateX(320px) scale(0.74);
  opacity: 0.6;
  pointer-events: auto;
  z-index: 3;
}

.ccard[data-pos="-1"] {
  transform: translate(-50%, -50%) translateX(-320px) scale(0.74);
  opacity: 0.6;
  pointer-events: auto;
  z-index: 3;
}

.ccard[data-pos="2"] {
  transform: translate(-50%, -50%) translateX(560px) scale(0.54);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.ccard[data-pos="-2"] {
  transform: translate(-50%, -50%) translateX(-560px) scale(0.54);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.ccard[data-pos="3"],
.ccard[data-pos="-3"] {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* Glow ring behind mascot */
.ccard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
  transition: opacity .5s ease;
}

.ccard[data-pos="0"] .ccard-glow {
  opacity: 0.5;
}

/* Image area */
.ccard-img-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  padding: 0;
  margin-top: -24px;
  overflow: visible;
}

.ccard-img {
  height: 270px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform-origin: bottom center;
  transition: transform .45s cubic-bezier(0.34, 1.56, 0.64, 1), filter .3s ease;
}

/* Active card image: standard soft chocolate drop shadow */
.ccard[data-pos="0"] .ccard-img {
  height: 295px;
  filter: drop-shadow(0 20px 42px rgba(58, 36, 23, 0.32));
}

.ccard[data-pos="0"]:hover .ccard-img {
  transform: translateY(-14px) scale(1.06);
}

/* Inactive cards: white silhouette glow dropped directly on PNG alpha */
.ccard:not([data-pos="0"]) .ccard-img {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.95)) drop-shadow(0 4px 10px rgba(58, 36, 23, 0.12));
}

/* Card details (only expands for centered active card) */
.ccard-info {
  position: relative;
  z-index: 1;
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height .45s ease, opacity .35s ease, padding .35s ease;
}

.ccard[data-pos="0"] .ccard-info {
  max-height: 300px;
  opacity: 1;
  padding: 20px 24px 26px;
}

.ccard-sub {
  display: inline-block;
  padding: 3.5px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}

.ccard-name {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  line-height: 1;
}

.ccard-tag {
  font-family: var(--font-script);
  font-size: 16px;
  margin: 0;
  line-height: 1.3;
}

.ccard-desc {
  font-size: 13.5px;
  color: var(--cacao-soft);
  line-height: 1.6;
  margin: 0;
}

.ccard-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  width: 100%;
}

.ccard-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all .2s ease;
  border: 1.5px solid transparent;
}

.ccard-more:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.cdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(63, 77, 46, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .25s ease;
}

.cdot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--moss);
}

/* Responsive adjustments for Carousel */
@media (max-width: 700px) {
  .char-carousel-viewport {
    height: 500px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    margin: 0 2px;
  }

  .ccard[data-pos="0"] {
    width: min(260px, 80vw);
  }

  .ccard[data-pos="0"] .ccard-img-wrap {
    height: 200px;
  }

  .ccard[data-pos="0"] .ccard-img {
    height: 220px;
  }

  .ccard[data-pos="0"] .ccard-info {
    padding: 14px 18px 18px;
  }

  .ccard[data-pos="0"] .ccard-name {
    font-size: 24px;
  }

  .ccard[data-pos="0"] .ccard-tag {
    font-size: 13.5px;
  }

  .ccard[data-pos="0"] .ccard-desc {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .ccard[data-pos="0"] .ccard-more {
    padding: 9px 18px;
    font-size: 12.5px;
  }

  .ccard[data-pos="1"],
  .ccard[data-pos="-1"],
  .ccard[data-pos="2"],
  .ccard[data-pos="-2"] {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ============ CARE ============ */
.care {
  background: var(--paper);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .care-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.care-card {
  border: 1px solid rgba(63, 77, 46, 0.15);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
}

.care-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--moss);
}

.care-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.care-card p {
  font-size: 13px;
  color: var(--cacao-soft);
  line-height: 1.55;
  margin: 0;
}

.mascot-img {
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(58, 36, 23, 0.16));
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), filter .3s ease;
}

.care-seal {
  display: none;
}

/* ============ SOBRE NOSOTROS ============ */
.nosotros {
  background: var(--cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.nosotros::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, var(--cream-stripe) 0 50px, var(--cream) 50px 100px);
  opacity: 0.35;
  pointer-events: none;
}

.nosotros-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 860px) {
  .nosotros {
    padding: 56px 0;
  }
  .nosotros-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .nosotros-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-text .section-title {
    text-align: center;
  }
  .nosotros-values {
    max-width: 440px;
    margin: 0 auto;
  }
  .nosotros-values li {
    text-align: left;
  }
}

.nosotros-text .section-title {
  margin-bottom: 18px;
}

.nosotros-lead {
  font-size: 15.5px;
  color: var(--cacao-soft);
  line-height: 1.7;
  margin: 0 0 32px;
}

.nosotros-values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nosotros-values li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nv-icon {
  font-size: 26px;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid rgba(63, 77, 46, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 10px -4px rgba(58, 36, 23, 0.12);
}

.nosotros-values li strong {
  display: block;
  font-size: 15px;
  color: var(--moss);
  margin-bottom: 3px;
}

.nosotros-values li p {
  margin: 0;
  font-size: 13.5px;
  color: var(--cacao-soft);
  line-height: 1.5;
}

.nosotros-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nv-badge {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nv-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
  transform: rotate(-90deg);
  filter: drop-shadow(0 16px 36px rgba(58, 36, 23, 0.22));
  position: relative;
  z-index: 1;
}

.nv-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(63, 77, 46, 0.18);
  animation: pulsRing 4s ease-in-out infinite;
}

.nv-ring-2 {
  inset: -22px;
  border-color: rgba(185, 144, 47, 0.15);
  animation-delay: 0.8s;
}

@keyframes pulsRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

.nv-quote {
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--cacao-soft);
  text-align: center;
  line-height: 1.3;
  margin: 0;
}

/* ============ CTA CONTACTO ============ */
.cta-contact {
  background: var(--moss);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  text-align: center;
}

@media (max-width: 600px) {
  .cta-contact {
    padding: 56px 0;
  }
}

.cta-bg-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0 46px,
      transparent 46px 92px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--cream);
  margin: 0 0 18px;
  line-height: 1.1;
}

.cta-sub {
  color: rgba(248, 243, 230, 0.75);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
}

.btn-cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(0, 0, 0, 0.45);
}

@media (max-width: 480px) {
  .btn-cta-wa {
    padding: 13px 24px;
    font-size: 14.5px;
  }
}

.cta-social {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(248, 243, 230, 0.55);
  font-size: 13px;
}

.cta-social a {
  color: rgba(248, 243, 230, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-social a:hover {
  color: var(--cream);
}

/* ============ UBICACIÓN ============ */
.ubicacion {
  background: var(--paper);
  border-top: 1px solid rgba(63, 77, 46, 0.08);
  padding: 96px 0;
}

.ubicacion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .ubicacion {
    padding: 56px 0;
  }
  .ubicacion-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .ubi-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ubi-text .section-title {
    text-align: center;
  }
  .ubi-chips {
    justify-content: center;
  }
}

.ubi-lead {
  font-size: 15.5px;
  color: var(--cacao-soft);
  line-height: 1.7;
  margin: 0 0 24px;
}

.ubi-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ubi-chip {
  background: var(--cream);
  border: 1.5px solid rgba(63, 77, 46, 0.18);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13.5px;
  color: var(--cacao-soft);
}

.ubi-map {
  display: flex;
  justify-content: center;
}

.ubi-map-card {
  background: var(--cream);
  border: 1.5px solid rgba(63, 77, 46, 0.15);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.ubi-map-icon {
  width: 72px;
  height: 72px;
  color: var(--moss);
  animation: floatPin 3.5s ease-in-out infinite;
}

@keyframes floatPin {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.ubi-map-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--cacao);
}

.ubi-map-card small {
  font-size: 12.5px;
  color: var(--cacao-soft);
  letter-spacing: 0.03em;
}

/* ============ CHARACTER MODAL ============ */
.char-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(42, 30, 20, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

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

.char-modal {
  position: relative;
  width: 100%;
  max-width: 820px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 32px 80px -20px rgba(30, 18, 10, 0.45);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform .32s cubic-bezier(0.34, 1.2, 0.64, 1);
  max-height: 90vh;
}

.char-modal-overlay.open .char-modal {
  transform: translateY(0) scale(1);
}

@media (max-width: 640px) {
  .char-modal {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .modal-left {
    min-height: 240px;
  }
  .modal-right {
    padding: 28px 20px;
  }
  .modal-name {
    font-size: 32px;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cacao);
  transition: background .15s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.85);
}

.modal-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 16px 0;
  min-height: 340px;
}

.modal-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(64px);
  pointer-events: none;
}

.modal-char-img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 300px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(58, 36, 23, 0.3));
  animation: modalCharIn .45s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes modalCharIn {
  from {
    transform: translateY(30px) scale(0.85);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-right {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: var(--paper);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: var(--cacao-soft);
}

.modal-name {
  font-family: var(--font-display);
  font-size: 42px;
  margin: 0;
  line-height: 1;
  color: var(--cacao);
}

.modal-tag {
  font-family: var(--font-script);
  font-size: 21px;
  color: var(--gold);
  margin: 0;
  line-height: 1.3;
}

.modal-desc {
  font-size: 15px;
  color: var(--cacao-soft);
  line-height: 1.65;
  margin: 0;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.modal-add-btn {
  width: 100%;
}

.modal-close-link {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--cacao-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
}

.modal-close-link:hover {
  color: var(--cacao);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--moss);
  color: var(--cream);
  padding: 56px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-logo-img {
  width: 170px;
  height: auto;
  object-fit: contain;
  transform: rotate(-90deg);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 600px) {
  .site-footer {
    padding: 40px 0 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-links {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
}

.footer-fine {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 22px 0 0;
}

/* =========================================================
   COMPREHENSIVE MOBILE AND TABLET OVERRIDES (MAX-WIDTH: 600PX)
   ========================================================= */
@media (max-width: 600px) {
  /* Global section scaling */
  section {
    padding: 32px 0 !important;
  }

  .section-title {
    font-size: 21px !important;
    margin-bottom: 8px !important;
  }

  .section-lead {
    font-size: 13.5px !important;
    margin-bottom: 24px !important;
  }

  .eyebrow {
    font-size: 10px !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.12em !important;
  }

  p {
    font-size: 13px !important;
  }

  /* Single-row Box Size Selector */
  .size-picker {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .size-btn {
    flex: 1 !important;
    width: auto !important;
    max-width: 60px !important;
    min-width: 0 !important;
    padding: 8px 2px 6px !important;
    gap: 1px !important;
    border-radius: var(--radius-sm) !important;
  }

  .size-btn .n {
    font-size: 16px !important;
  }

  .size-btn .l {
    font-size: 7.5px !important;
    letter-spacing: 0 !important;
  }

  /* Single-row Location Chips */
  .ubi-chips {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .ubi-chip {
    padding: 4px 8px !important;
    font-size: 9.5px !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
  }

  .ubi-lead {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  /* Hero Section scaling */
  .hero {
    padding: 24px 0 28px !important;
  }

  .hero-main-scene {
    width: 280px !important;
    height: 280px !important;
    margin: 16px auto 28px !important;
  }
  
  .scene-circle {
    width: 200px !important;
    height: 200px !important;
  }
  
  .scene-logo {
    width: 140px !important;
  }
  
  .mascot-senn {
    width: 80px !important;
    bottom: 8px !important;
    left: 4px !important;
  }
  
  .mascot-coqui {
    width: 90px !important;
    bottom: 16px !important;
    right: -2px !important;
  }
  
  .mascot-nutty {
    width: 70px !important;
    top: 10px !important;
    right: 12px !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .hero-tagline {
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
  }

  .hero-ctas {
    gap: 8px !important;
  }

  .hero-ctas .btn {
    padding: 10px 18px !important;
    font-size: 12.5px !important;
  }

  /* Nosotros Section scaling */
  .nosotros {
    padding: 32px 0 !important;
  }

  .nosotros-lead {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  .nosotros-values {
    gap: 12px !important;
  }

  .nosotros-values li {
    gap: 10px !important;
  }

  .nv-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
  }

  .nosotros-values li strong {
    font-size: 13px !important;
    margin-bottom: 1px !important;
  }

  .nosotros-values li p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  .nv-badge {
    width: 140px !important;
    height: 140px !important;
  }

  .nv-logo {
    width: 100px !important;
  }

  .nv-quote {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  .nv-ring-2 {
    inset: -14px !important;
  }

  /* Care Section scaling */
  .care-card {
    padding: 16px 12px !important;
    border-radius: var(--radius-sm) !important;
  }

  .care-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 10px !important;
  }

  .care-card h3 {
    font-size: 14px !important;
    margin-bottom: 4px !important;
  }

  .care-card p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  /* Ubicación scaling */
  .ubi-map-card {
    padding: 24px 20px !important;
    border-radius: var(--radius-md) !important;
    gap: 10px !important;
    max-width: 280px !important;
  }

  .ubi-map-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .ubi-map-card p {
    font-size: 14px !important;
  }

  .ubi-map-card small {
    font-size: 11px !important;
  }

  .ubi-text a.btn {
    margin-top: 18px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
  }

  /* CTA Contacto scaling */
  .cta-contact {
    padding: 36px 0 !important;
  }

  .cta-title {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }

  .cta-sub {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 24px !important;
  }

  .btn-cta-wa {
    padding: 12px 22px !important;
    font-size: 14px !important;
  }

  /* Footer scaling */
  .site-footer {
    padding: 28px 0 16px !important;
  }

  .footer-logo-img {
    width: 130px !important;
  }

  .footer-brand p {
    font-size: 11px !important;
  }

  .footer-links {
    gap: 12px !important;
  }

  .footer-links a {
    font-size: 12px !important;
  }

  .footer-fine {
    font-size: 10.5px !important;
    margin-top: 16px !important;
  }

  /* Insignia compacta de sabores en móvil */
  .fc-badge {
    top: 6px !important;
    right: 6px !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 9.5px !important;
  }

  .fc-add {
    width: auto !important;
    max-width: 95% !important;
    margin: 4px auto 0 !important;
  }
}