/* ==========================================================
   PALETA COQUETA · STYLE LIMPIO
   Se conserva el orden y la cascada visual original.
   Solo se retiraron declaraciones repetidas que ya eran
   sobrescritas por la misma regla más adelante.
========================================================== */

/* BASE */
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/satoshi.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thistails";
  src: url("../../fonts/Buckwheat.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Eyebrow";
  src: url("../../fonts/Eyebrow.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #efcec9;
  --coral: #d2482e;
  --yellow: #f6d345;
  --blue: #adb9df;
  --olive: #d8d698;
  --cream: #fffdf7;
  --paper: #ffffff;
  --ink: #3f435d;
  --muted: #6d7084;
  --line: rgba(63, 67, 93, 0.12);
  --soft-line: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 50px rgba(64, 55, 79, 0.13);
  --shadow-soft: 0 11px 26px rgba(64, 55, 79, 0.08);
  --radius-xl: 54px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
}

body.no-scroll,
body.splash-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-logo img,
.hero-showcase-logo img,
.responsibility-icon img,
.join-icon img,
.brand-principle-icon img,
.employment-card__icon img {
  object-fit: contain;
}
h1,
h2,
h3,
h4,
.hero-title {
  font-family: "Thistails", cursive;
  font-weight: 400;
}

p,
li,
label,
input,
textarea,
select,
button,
.nav-link,
.btn,
.eyebrow,
.section-title p,
.hero-text,
.hero-flavor-copy p,
.hero-flavor-copy span,
.stage-info p,
.stage-info span,
.carousel-heading span,
.season-card p,
.favorite-card p,
.branch-content p,
.community-card p,
.event-info p,
.philosophy-grid p,
.faq-item p,
.builder-result p,
.live-status p,
.footer p,
.footer-socials a {
  font-family: "Satoshi", Arial, sans-serif;
}

h1,
h2 {
  color: var(--coral);
  font-size: clamp(54px, 6vw, 90px);
  line-height: 0.88;
}

h3 {
  line-height: 0.98;
}

p {
  color: var(--muted);
}

strong {
  color: var(--coral);
}


::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--cream);
  border-radius: var(--radius-pill);
  background: var(--coral);
}

/* CURSOR Y PROGRESO */
@media (pointer: fine) {
  body.has-cursor,
  body.has-cursor * {
    cursor: none !important;
  }
}

.cursor-dot,
.cursor-ring {
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  transition: width 0.22s ease, height 0.22s ease, border-radius 0.22s ease, background 0.22s ease;
}

.cursor-ring.active {
  border-radius: 50%;
}

.cursor-ring.bow {
  border-radius: 24% 76% 22% 78%;
  transform: translate(-50%, -50%) rotate(45deg);
}


/* SPLASH */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash::before,
.splash::after {
  position: absolute;
  width: min(46vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.85;
}

.splash::before {
  top: -18%;
  left: -9%;
  background: var(--blue);
}

.splash::after {
  right: -11%;
  bottom: -22%;
  background: var(--pink);
}

.splash.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100% - 40px));
  text-align: center;
}

.splash-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
  padding: 16px;
  border: 2px solid var(--coral);
  border-radius: 48% 52% 50% 50%;
  background: var(--cream);
  box-shadow: 12px 12px 0 rgba(210, 72, 46, 0.12);
}

.splash-logo img {
  object-fit: contain;
}

.splash-loader {
  width: min(300px, 100%);
  height: 10px;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid rgba(210, 72, 46, .28);
  border-radius: 999px;
  background: rgba(210, 72, 46, .10);
}

.splash-loader span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--coral),
    #ef6f5a,
    var(--coral)
  );
  box-shadow: 0 0 12px rgba(210, 72, 46, .45);
  animation: splashLoad 2.6s cubic-bezier(.22, .8, .24, 1) forwards;
}

@keyframes splashLoad {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.splash-loading,
.splash-final p {
  font-size: 13px;
  font-weight: 700;
}

.splash-final h2 {
  margin-top: 14px;
  font-size: clamp(48px, 7vw, 76px);
}

#particles,
.ambient,
.floating-scene,
.scroll-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#particles {
  z-index: -3;
}

.ambient {
  z-index: -5;
  overflow: hidden;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.26;
}

.orb-1 {
  top: 8%;
  left: -120px;
  width: 350px;
  height: 350px;
  background: var(--pink);
}

.orb-2 {
  top: 43%;
  right: -140px;
  width: 390px;
  height: 390px;
  background: var(--blue);
}

.orb-3 {
  bottom: -130px;
  left: 36%;
  width: 330px;
  height: 330px;
  background: var(--yellow);
}

.mini-pop {
  position: absolute;
  display: block;
  width: 82px;
  height: 54px;
  opacity: 0.76;
  filter: drop-shadow(0 8px 10px rgba(64,55,79,.08));
  background:
    radial-gradient(ellipse 32px 22px at 22px 22px, transparent 0 47%, var(--coral) 49% 57%, transparent 59%),
    radial-gradient(ellipse 32px 22px at 60px 22px, transparent 0 47%, var(--coral) 49% 57%, transparent 59%),
    radial-gradient(circle at 41px 25px, var(--yellow) 0 9px, transparent 10px),
    linear-gradient(136deg, transparent 42%, var(--coral) 43% 48%, transparent 49%) 24px 31px / 26px 22px no-repeat,
    linear-gradient(44deg, transparent 42%, var(--coral) 43% 48%, transparent 49%) 33px 31px / 26px 22px no-repeat;
  animation: bowFloat 5.8s ease-in-out infinite;
}

.mini-pop-1 {
  top: 21%;
  left: 4%;
  transform: rotate(-14deg);
}

.mini-pop-2 {
  top: 64%;
  right: 6%;
  transform: rotate(12deg);
  animation-delay: -2s;
}

.mini-pop-3 {
  top: 42%;
  left: 74%;
  transform: scale(.72) rotate(10deg);
  animation-delay: -3.4s;
}

.scroll-layer {
  z-index: -2;
  overflow: hidden;
}

.scroll-pop,
.scroll-dot {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
}

.brand span {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
}

.brand span::before,
.brand span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 10px;
  border: 2px solid var(--coral);
  border-radius: 60% 40% 50% 50%;
}

.brand span::before {
  right: 12px;
  transform: translateY(-50%) rotate(18deg);
}

.brand span::after {
  left: 12px;
  transform: translateY(-50%) rotate(-18deg);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--pink);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 43px;
  height: 43px;
  color: #fff;
  font-size: 20px;
}

/* NAVEGACIÓN LATERAL */
.section-dots {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 6000;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.section-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  background: var(--cream);
  transition: height .25s ease, background .25s ease, border-radius .25s ease;
}

.section-dot.active {
  height: 30px;
  border-radius: var(--radius-pill);
  background: var(--coral);
}

/* ESTRUCTURA GENERAL */
.section {
  display: flex;
  padding: 92px 24px;
}

.section > .container {
  position: relative;
  width: min(1080px, 100%);
  margin: auto;
}

.section::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  pointer-events: none;
}

.section::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

#inicio::after {
  background-size: 28px 28px;
}

#contacto::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  background: radial-gradient(circle at 15px -3px, transparent 14px, var(--coral) 15px) repeat-x;
  background-size: 30px 30px;
}

.container::after {
  z-index: -1;
  content: "";
  position: absolute;
  pointer-events: none;
}

#marca .container::after,
#eventos .container::after,
#comunidad .container::after {
  top: 3%;
  right: 0;
  width: 126px;
  height: 92px;
  opacity: .72;
  transform: rotate(13deg);
  background:
    radial-gradient(ellipse 47px 32px at 33px 31px, transparent 0 42%, var(--coral) 43% 50%, transparent 51%),
    radial-gradient(ellipse 47px 32px at 91px 31px, transparent 0 42%, var(--coral) 43% 50%, transparent 51%),
    radial-gradient(circle at 62px 36px, var(--yellow) 0 12px, transparent 13px),
    linear-gradient(135deg, transparent 40%, var(--coral) 41% 49%, transparent 50%) 41px 48px / 29px 30px no-repeat,
    linear-gradient(45deg, transparent 40%, var(--coral) 41% 49%, transparent 50%) 57px 48px / 29px 30px no-repeat;
  animation: bowFloat 5.4s ease-in-out infinite;
}

/* TEXTO Y BOTONES */
.eyebrow {
  font-family: "Eyebrow";
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.section-title h2 {
  margin-bottom: 16px;
}

.section-title p:last-child {
  margin: auto;
}

.hero-text {
  max-width: 500px;
  margin-top: 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn::after {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 22%;
  height: 200%;
  content: "";
  transform: rotate(24deg);
  background: rgba(255,255,255,.46);
  transition: left .35s ease;
}

.btn:hover::after {
  left: 112%;
}

.btn:hover {
  box-shadow: 0 9px 0 rgba(63,67,93,.13);
  transform: translateY(-3px);
}

.btn.primary {
  color: #fff;
  background: var(--coral);
}

.btn.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.btn.glass {
  color: var(--coral);
  border-color: rgba(210,72,46,.2);
  background: rgba(255,255,255,.7);
}

.btn.small {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 11px;
}

.btn:disabled {
  color: rgba(63,67,93,.55);
  background: rgba(255,255,255,.48);
  box-shadow: none;
}

.hero-buttons,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
/* HERO */
#inicio {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
}

.hero-content h1 {
  color: var(--ink);
}

.hero-content h1 span {
  display: block;
  color: var(--coral);
}

.hero-visual {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  perspective: 1200px;
}

/* FOTO + LOGO + FRASES */
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-showcase-bg {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(76%, 360px);
  height: 380px;

  overflow: hidden;
  border: 8px solid rgba(255, 253, 247, .96);
  border-radius: 42px;

  background: var(--cream);
  box-shadow: 12px 16px 0 rgba(63, 67, 93, .10);

  transform: translate(-50%, -50%) rotate(-3deg);
  animation: heroFloatPhoto 6s ease-in-out infinite;
}

.hero-showcase-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-showcase-tag {
  position: absolute;
  z-index: 5;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 17px;
  border-radius: 999px;

  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;

  background: rgba(255, 253, 247, .96);
  box-shadow: 0 9px 18px rgba(63, 67, 93, .10);

  animation: heroTagFloat 5.5s ease-in-out infinite;
}

.hero-showcase-tag-1 {
  top: 40px;
  left: 190px;
  transform: rotate(-10deg);
}

.hero-showcase-tag-2 {
  top: 180px;
  right: 8px;
  transform: rotate(3deg);
  animation-delay: -1.4s;
}


.hero-showcase-tag-4 {
  right: 2px;
  bottom: 64px;
  transform: rotate(-6deg);
  animation-delay: -3.3s;
}
.hero-showcase-logo--outside {
  position: absolute;
  bottom: 22px;
  left: 18px;
  z-index: 7;

  width: min(145px, 31%);

  transform: rotate(-10deg);
  animation: heroLogoOutsideFloat 5s ease-in-out infinite;
}

.hero-showcase-logo--outside img {
  display: block;
  width: 120%;
  height: auto;
  object-fit: contain;

  filter: drop-shadow(0 14px 18px rgba(63, 67, 93, .20));
}

.hero-showcase-tag-3 {
  top: 150px;
  bottom: auto;
  left: 1px;
  transform: rotate(4deg);
  animation-delay: -2.4s;
}

@keyframes heroLogoOutsideFloat {
  0%,
  100% {
    transform: rotate(-10deg) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateY(-9px);
  }
}

.live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.live-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(210, 72, 46, .13);
  animation: blink 1.8s ease-in-out infinite;
}

.live-status p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
}

#inicio::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;

  width: 100%;
  height: 26px;

  content: "";
  pointer-events: none;

  background:
    radial-gradient(
      circle at 13px 0,
      var(--paper) 0 12px,
      transparent 12.8px
    ) 0 0 / 26px 26px repeat-x;
}

@keyframes heroFloatPhoto {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-3deg);
  }

  50% {
    transform: translate(-50%, calc(-50% - 9px)) rotate(1deg);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, calc(-50% - 7px)) scale(1.04);
  }
}

@keyframes heroTagFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}
#inicio .hero-visual {
  width: min(100%, 500px) !important;
  max-width: 500px !important;
  min-width: 0 !important;
  margin-left: auto !important;
  background: transparent !important;
}

#inicio .hero-3d-card {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 480px !important;
  height: 480px !important;
}

#inicio .hero-showcase {
  width: 100% !important;
  min-height: 480px !important;
  height: 480px !important;
}

#inicio .hero-showcase-bg {
  width: min(76%, 365px) !important;
  height: 382px !important;
}

#inicio .hero-showcase-logo {
  width: min(145px, 31%) !important;
}
/* SABORES */
.wide-banner {
  display: none;
}

.flavor-layout {
  display: grid;
  grid-template-columns: minmax(300px,.8fr) minmax(380px,1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: stretch;
}

.flavor-list {
  display: grid;
  align-content: center;
  gap: 9px;
}

.flavor-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 61px;
  padding: 9px 12px;
  border: 1px solid rgba(63,67,93,.12);
  border-radius: 11px;
  color: var(--ink);
  text-align: left;
  transition: transform .22s ease, box-shadow .22s ease;
}

.flavor-item:nth-child(1),
.flavor-item:nth-child(3),
.flavor-item:nth-child(5),
.flavor-item:nth-child(7) {
  background: #fff0ee;
}

.flavor-item:nth-child(2),
.flavor-item:nth-child(4),
.flavor-item:nth-child(6) {
  background: #edf0fc;
}

.flavor-item > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  background: rgba(255,255,255,.72);
}

.flavor-item h3 {
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.flavor-item p {
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.35;
}

.flavor-item:hover,
.flavor-item.active {
  box-shadow: var(--shadow-soft);
  transform: translateX(7px);
}

.flavor-stage::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  opacity: .52;
}

.stage-glow {
  opacity: .42;
}

.stage-image img {
  transition: transform .42s cubic-bezier(.2,.85,.24,1.2);
}

.flavor-stage.is-zooming .stage-image img {
  transform: scale(1.14);
}

.stage-info p {
  margin-bottom: 6px;
}
/* TARJETA DEL SABOR SELECCIONADO */
.flavor-stage {
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 88%, rgba(246, 211, 69, .62) 0 88px, transparent 89px),
    radial-gradient(circle at 96% 5%, rgba(210, 72, 46, .48) 0 118px, transparent 119px),
    linear-gradient(135deg, #fff8f7 0%, #fffdf7 72%);
  box-shadow: 0 18px 42px rgba(63, 67, 93, .10);
}

/* Círculo decorativo amarillo */
.flavor-stage::before {
  position: absolute;
  right: -38px;
  bottom: -48px;
  z-index: -1;
  width: 170px;
  height: 170px;
  content: "";
  border-radius: 50%;
  background: rgba(246, 211, 69, .42);
}

/* Brillo suave detrás de la imagen */
.stage-glow {
  position: absolute;
  top: 72px;
  right: 52px;
  z-index: 0;
  width: 235px;
  height: 300px;
  border-radius: 50%;
  background: rgba(239, 206, 201, .34);
  filter: blur(4px);
}

/* CONTENEDOR VERTICAL DE LA IMAGEN */
.stage-image {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: min(42%, 285px);
  height: 388px;
  padding: 10px;

  overflow: hidden;
  border: 7px solid rgba(255, 253, 247, .96);
  border-radius: 112px 112px 28px 28px;

  background: rgba(255, 255, 255, .48);
  box-shadow:
    14px 18px 0 rgba(210, 72, 46, .10),
    0 18px 32px rgba(63, 67, 93, .10);

  transform: rotate(3deg);
}

/* IMAGEN DEL SABOR */
.stage-image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;

  border-radius: 92px 92px 18px 18px;
  transform: none !important;
}

/* INFORMACIÓN DEL SABOR */
.stage-info {
  position: absolute;
  bottom: 42px;
  left: 40px;
  z-index: 4;

  width: min(78%, 600px);
}

/* ETIQUETA */
.stage-info p {
  display: table;
  width: fit-content;
  margin: 0 0 11px;
  padding: 8px 12px;

  border-radius: 999px;
  color: var(--coral);

  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;

  background: rgba(255, 253, 247, .92);
  box-shadow: 0 8px 18px rgba(63, 67, 93, .08);
}

/* NOMBRE: QUEDA POR ENCIMA DE LA FOTO */
.stage-info h3 {
  position: relative;
  z-index: 5;

  display: inline-block;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 10px 18px 13px;

  border-radius: 19px;
  color: var(--coral);

  font-family: "Thistails", cursive;
  font-size: 54px;
  font-weight: 400;
  line-height: .9;

  background: rgba(255, 253, 247, .90);
  box-shadow: 0 14px 30px rgba(63, 67, 93, .10);
}

/* DESCRIPCIÓN */
.stage-info span {
  display: block;
  width: min(420px, 82%);
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}


.hero-3d-card .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.05);
}

/* Pequeño acercamiento al pasar encima */
.hero-3d-card .main-image:hover img {
  transform: scale(1.14);
}



/* Botón a la izquierda */
.hero-3d-card .palette-click {
  position: absolute;
  top: 138px;
  bottom: auto;
  left: 38px;
  z-index: 6;

  width: auto;
  height: auto;
  padding: 11px 16px;

  border: 1px solid rgba(255, 255, 255, .70);
  border-radius: 999px;

  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-weight: 800;

  background: rgba(255, 255, 255, .12);
  box-shadow: none;
  transform: none;
}



.hero-3d-card .palette-click::after {
  display: block;
  content: "Click para cambiar";
  font-size: 13px;
}


/* Nombre del sabor abajo a la derecha */
.hero-flavor-copy {
  position: absolute;
  text-align: center;
}

.hero-flavor-copy p {
  display: none;
}

.hero-flavor-copy h3 {
  margin-bottom: 7px;
  color: #fff;
  line-height: .95;
  text-shadow: 0 5px 12px rgba(63, 67, 93, .16);
}

.hero-flavor-copy span {
  display: block;
  color: rgba(255, 255, 255, .88);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

/* Nombre pequeño del sabor */
.hero-3d-card .badge-2 {
  right: 30px;
  bottom: 24px;
  z-index: 7;
}
/* CREA TU PALETA 
.builder-grid {
  display: grid;
  grid-template-columns: minmax(330px,.85fr) minmax(390px,1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.builder-copy {
  display: grid;
  place-items: center;
}

.builder-orbit {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border: 1px dashed rgba(210,72,46,.4);
  border-radius: 50%;
  animation: orbitTurn 24s linear infinite;
}

.builder-orbit::before,
.builder-orbit::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px dashed rgba(63,67,93,.16);
  border-radius: 50%;
}

.builder-orbit::after {
  inset: 29%;
}

.builder-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 142px;
  height: 224px;
  border: 8px solid #fff;
  border-radius: 82px 82px 28px 28px;
  background: linear-gradient(155deg, var(--pink), var(--yellow), var(--coral));
  box-shadow: var(--shadow);
  transform: translate(-50%,-50%) rotate(-8deg);
  transition: transform .35s ease, background .35s ease;
}

.builder-preview.is-changing {
  transform: translate(-50%,-50%) rotate(3deg) scale(1.09);
}

.preview-stick {
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 32px;
  height: 90px;
  border-radius: 0 0 14px 14px;
  background: #bd8f65;
  transform: translateX(-50%);
}

.preview-shine {
  position: absolute;
  top: 32px;
  left: 27px;
  width: 20px;
  height: 78px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.45);
}

.ingredient {
  position: absolute;
  display: grid;
  width: 96px;
  min-height: 44px;
  padding: 9px;
  place-items: center;
  border: 1px solid rgba(63,67,93,.11);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,253,247,.92);
  box-shadow: var(--shadow-soft);
  animation: orbitCounter 24s linear infinite;
}

.ingredient-1 { top: 3%; left: 50%; transform: translateX(-50%); }
.ingredient-2 { top: 46%; right: -4%; }
.ingredient-3 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.ingredient-4 { top: 46%; left: -4%; }

.builder-note {
  margin-top: 58px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.tiny-bow {
  color: var(--yellow);
  font-size: 20px;
}

.builder-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  border: 1px solid rgba(210,72,46,.16);
  border-radius: var(--radius-lg);
  background: rgba(255,253,247,.84);
  box-shadow: var(--shadow);
}

.builder-form fieldset {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(63,67,93,.1);
  border-radius: 15px;
}

.builder-form legend {
  padding: 0 6px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 25px;
}

.builder-form label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  background: #fff;
}

.builder-form input {
  accent-color: var(--coral);
}

.builder-result {
  padding: 12px 15px;
  border-radius: 14px;
  background: var(--pink);
}

.builder-result p {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
*//* TEMPORADA */


.carousel-heading {
  margin-bottom: 18px;
}

.carousel-heading h3 {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: clamp(34px, 3.5vw, 52px);
}

.carousel-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.season-strip,
.favorites-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.season-card,
.favorite-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(63,67,93,.1);
  background: #fff;
  scroll-snap-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}

.season-card:hover,
.favorite-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-7px) rotate(-1deg);
}

.season-card img,
.favorite-card img {
  height: 204px;
}

.season-card h4,
.favorite-card h4 {
  padding: 15px 15px 4px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 29px;
  line-height: 1;
}

.season-card p,
.favorite-card p {
  padding: 0 15px 15px;
  font-size: 12px;
}

/* MARCA */
.brand-story-block {
  gap: clamp(40px,8vw,100px);
}

.brand-story-block h2,
#marca .section-title h2 {
  color: var(--coral);
}

.brand-story-block > p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--ink);
}

.soft-quote {
  width: fit-content;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid rgba(210,72,46,.2);
  border-radius: var(--radius-pill);
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,253,247,.7);
}

.soft-quote.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.brand-orbit-3d {
  position: relative;
  display: grid;
  width: min(100%, 470px);
  height: 490px;
  place-items: center;
  perspective: 1000px;
}

.orbit-core {
  width: 260px;
  height: 340px;
  overflow: hidden;
  border-radius: 48px;
  transform: rotate(-4deg) rotateY(-8deg);
}

.orbit-word {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(210, 72, 46, .28);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,253,247,.8);
  animation: wordFloat 4.5s ease-in-out infinite;
}

.orbit-word-1 { top: 8%; left: 3%; transform: rotate(-10deg); }
.orbit-word-2 { top: 22%; right: 0; animation-delay: -1.1s; }
.orbit-word-3 { bottom: 14%; left: 0; animation-delay: -2.2s; }
.orbit-word-4 { right: 4%; bottom: 3%; animation-delay: -3.2s; }



.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.philosophy-grid article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(210, 72, 46, .28);
  background: rgba(255, 253, 247, .88);
  transition: transform .25s ease, background .25s ease;
}

.philosophy-grid article:hover {
  background: var(--cream);
  transform: translateY(-7px) rotate(1deg);
}

.philosophy-grid h3 {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 36px;
}

.philosophy-grid p {
  color: var(--ink);
  font-size: 12px;
}

/* EVENTOS */
#eventos .section-title h2 {
  color: var(--blue);
}

.event-interactive {
  display: grid;
  grid-template-columns: minmax(240px,.66fr) minmax(400px,1fr);
  gap: clamp(26px,5vw,70px);
  align-items: center;
}

.event-menu {
  display: grid;
}

.event-tab {
  min-height: 51px;
  padding: 10px 15px;
  border: 1px solid rgba(210,72,46,.16);
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255,253,247,.74);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.event-tab:hover,
.event-tab.active {
  color: #fff;
  background: var(--coral);
  transform: translateX(7px);
}

.event-stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 8px solid rgba(255,253,247,.86);
  background: var(--pink);
  box-shadow: var(--shadow);
}

.event-stage::after {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 74px;
  height: 74px;
  content: "✦";
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--coral);
  font-size: 37px;
  background: var(--yellow);
  transform: rotate(-12deg);
}

.event-image {
  position: absolute;
  inset: 0;
}

.event-image img {
  transition: transform .42s cubic-bezier(.2,.85,.24,1.2);
}

.event-stage.is-zooming .event-image img {
  transform: scale(1.13);
}

.event-info {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  background: rgba(255,253,247,.86);
  backdrop-filter: blur(12px);
}

.event-info p {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-info h3 {
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 49px;
}

.event-info span {
  color: var(--muted);
  font-size: 13px;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 22px;
}

.services-row article {
  display: grid;
  min-height: 116px;
  padding: 16px;
  place-items: center;
  border: 1px dashed rgba(173,185,223,.42);
  border-radius: 16px;
  text-align: center;
  background: rgba(255,253,247,.5);
  transition: transform .25s ease;
}

.services-row article:hover {
  transform: rotate(-2deg) translateY(-5px);
}

.services-row h3 {
  color: var(--blue);
  font-size: 28px;
}

/* SUCURSALES */
.branch-two-list {
  display: grid;
  gap: 48px;
}

.branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(210,72,46,.14);
  border-radius: 28px;
  background: rgba(255,253,247,.9);
  box-shadow: var(--shadow-soft);
}

.branch-card-right .branch-image {
  order: 2;
}

.branch-card-right .branch-content {
  order: 1;
}

.branch-image {
  min-height: 320px;
  overflow: hidden;
}

.branch-image img,
.zoom-scroll img {
  transition: transform .55s cubic-bezier(.2,.85,.24,1.1);
}

.branch-card:hover .branch-image img,
.zoom-scroll.in-view img {
  transform: scale(1.08);
}

.branch-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.branch-content h3 {
  margin-bottom: 17px;
  color: var(--coral);
  font-size: clamp(37px, 4vw, 54px);
}

.branch-content ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.branch-content li {
  color: var(--muted);
  font-size: 13px;
}

.branch-content .btn {
  width: fit-content;
  margin-top: 22px;
}

.disabled-note {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

/* MERCH */
.gallery-3d-wrapper {
  display: grid;
  height: 580px;
  overflow: hidden;
  place-items: center;
  perspective: 1300px;
  touch-action: pan-y;
}

.gallery-3d {
  --carousel-angle: 0deg;
  position: relative;
  cursor: grab;
}

.gallery-3d.is-dragging {
  cursor: grabbing;
}

.gallery-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 6px solid rgba(255,253,247,.9);
  border-radius: 25px;
  background: var(--cream);
  box-shadow: 0 16px 30px rgba(63,67,93,.2);
  backface-visibility: hidden;
  transform: rotateY(calc((var(--i) * 45deg) + var(--carousel-angle))) translateZ(420px);
  transition: filter .25s ease, opacity .25s ease;
}

.gallery-card:hover {
  filter: saturate(1.15);
}

.merch-info {
  padding: 16px;
}

.merch-info h3 {
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 33px;
}

.merch-info p {
  font-size: 12px;
}

/* COMUNIDAD */
.community-grid {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(360px,.85fr);
  gap: clamp(38px,7vw,94px);
  align-items: center;
}

#comunidad h2 {
  color: var(--coral);
}

.responsibility-icons {
  display: grid;
}

.responsibility-icons article:hover {
  background: var(--cream);
}

.responsibility-icons span {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  background: var(--pink);
  animation: iconWiggle 4.5s ease-in-out infinite;
}

.responsibility-icons article:nth-child(2n) span {
  animation-delay: -2s;
}

.responsibility-icons h3 {
  color: var(--ink);
  font-weight: 900;
}

.community-card {
  overflow: hidden;
  border: 8px solid rgba(255,253,247,.8);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.community-image {
  height: 300px;
}

.community-copy {
  padding: 25px;
}

.community-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(44px,4vw,58px);
}

/* CONTACTO */
.contact-stack {
  display: grid;
  gap: 72px;
}

.contact-form-area {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(390px,.85fr);
  gap: clamp(34px,7vw,96px);
  align-items: center;
}

.contact-form-area .section-title {
  margin: 0;
  text-align: left;
}

.contact-form-area .section-title p:last-child {
  margin-left: 0;
}

.form {
  display: grid;
  gap: 11px;
  padding: 29px;
  border: 1px solid rgba(210,72,46,.2);
  border-radius: 26px;
  background: rgba(255,253,247,.74);
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  outline: 0;
  border: 1px solid rgba(63,67,93,.14);
  border-radius: 12px;
  color: var(--ink);
  font-size: 13px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(210,72,46,.1);
}

textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-support-block {
  display: grid;
  grid-template-columns: minmax(220px,.55fr) minmax(360px,1fr);
  gap: 44px;
  align-items: center;
}

.contact-image {
  height: 300px;
  overflow: hidden;
  border: 8px solid rgba(255,253,247,.8);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.contact-support-block > .soft-quote {
  grid-column: 1 / -1;
  margin-top: -12px;
}

.faq-container {
  padding-top: 65px;
  border-top: 1px dashed rgba(210,72,46,.43);
}

.faq-list {
  display: grid;
  gap: 11px;
  width: min(860px,100%);
  margin: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(210,72,46,.16);
  border-radius: 15px;
  background: rgba(255,253,247,.72);
}

.faq-item summary {
  position: relative;
  padding: 17px 54px 17px 18px;
  color: var(--ink);
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "+";
  color: var(--coral);
  font-size: 28px;
  transform: translateY(-50%);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 18px 18px;
  font-size: 13px;
}


.footer p {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  opacity: 0;
  background: rgba(63,67,93,.42);
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-card {
  width: min(420px,100%);
  padding: 34px;
  border: 5px solid var(--cream);
  border-radius: 28px;
  text-align: center;
  background: var(--pink);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 12px;
  font-size: 57px;
}

.modal-card p {
  margin-bottom: 18px;
}

.reveal {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
}

.click-spark {
  position: fixed;
  z-index: 99997;
  width: 10px;
  height: 10px;
  border-radius: 45% 55% 55% 45%;
  pointer-events: none;
  background: var(--yellow);
  animation: sparkOut .65s ease-out forwards;
}


@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes bowFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -17px; }
}

@keyframes blink {
  50% { transform: scale(.55); opacity: .45; }
}

@keyframes orbitTurn {
  to { rotate: 360deg; }
}

@keyframes orbitCounter {
  to { rotate: -360deg; }
}

@keyframes wordFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes iconWiggle {
  0%,100% { transform: rotate(0) scale(1); }
  45% { transform: rotate(13deg) scale(1.08); }
  70% { transform: rotate(-7deg); }
}

@keyframes sparkOut {
  to {
    opacity: 0;
    transform: translate(var(--spark-x),var(--spark-y)) rotate(150deg) scale(.2);
  }
}

body {
  background: var(--blue);
  font-family: "Satoshi", "Elms Sans", Arial, sans-serif;
}

.mini-pop,
.scroll-layer,
.palette-shine {
  display: none !important;
}

.header {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  z-index: 99999 !important;
  width: 100%;
  padding: 22px 22px 14px;
  background: var(--cream);
  transform: none !important;
}


.navbar {
  width: min(1320px, 100%);
  min-height: 66px;
  margin: 0 auto;
  border: 0;
  border-bottom: 1px solid rgba(63,67,93,.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand.brand-logo {
  display: flex;
  align-items: center;
  min-width: 150px;
  padding: 0;
}

.brand.brand-logo img {
  display: block;
  width: auto;
  height: 80px;
  object-fit: contain;
}

.brand span,
.brand::before,
.brand::after {
  display: none !important;
}

.nav-links {
  gap: clamp(8px, 1.15vw, 20px);
}

.nav-link {
  position: relative;
  padding: 11px 0;
  border-radius: 0;
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: transparent !important;
  transform: none !important;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .24s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--coral);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-btn {
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 8px 0 rgba(210,72,46,.11);
}

/* LÍNEA DE PROGRESO SUPERIOR */
.scroll-progress-track {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100000;

  width: 100%;
  height: 10px;
  padding: 2px;

  background: rgba(255, 255, 255, .96);
  box-shadow:
    0 2px 8px rgba(63, 67, 93, .12),
    0 1px 0 rgba(210, 72, 46, .18);

  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.scroll-progress {
  width: 0;
  height: 100%;

  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 7px rgba(210, 72, 46, .35);

  transition: width .08s linear;
}

/* No mostrar progreso mientras aparece el splash */
body.splash-active .scroll-progress-track {
  visibility: hidden;
  opacity: 0;
}

.floating-scene {
  position: fixed;
  inset: 0;
  z-index: 8;
  overflow: hidden;
  pointer-events: none;
}

.floating-bow {
  position: absolute;
  display: block;
  width: clamp(44px, 6vw, 96px);
  opacity: .90;
  filter: drop-shadow(0 12px 18px rgba(63,67,93,.12));
  will-change: transform;
}

.floating-bow img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: bowFloatSpin 7s ease-in-out infinite;
}

.bow-1 { top: 17%; left: 4%; width: clamp(42px, 5vw, 72px); }
.bow-2 { top: 38%; right: 5%; width: clamp(46px, 6vw, 88px); }
.bow-3 { top: 57%; left: 6%; width: clamp(42px, 5.3vw, 74px); }
.bow-4 { top: 72%; right: 7%; width: clamp(44px, 5.6vw, 84px); }
.bow-5 { top: 28%; left: 75%; width: clamp(36px, 4.4vw, 68px); }
.bow-6 { top: 87%; left: 21%; width: clamp(42px, 5vw, 78px); }
.bow-7 { top: 48%; left: 87%; width: clamp(38px, 4.7vw, 70px); }
.bow-8 { top: 11%; left: 52%; width: clamp(34px, 4.3vw, 62px); }
.bow-9 { top: 66%; left: 49%; width: clamp(36px, 4.4vw, 66px); }
.bow-10 { top: 92%; right: 24%; width: clamp(34px, 4.2vw, 62px); }
.bow-2 img { animation-delay: -1.8s; }
.bow-3 img { animation-delay: -3.2s; }
.bow-4 img { animation-delay: -4.4s; }
.bow-5 img { animation-delay: -2.4s; }
.bow-6 img { animation-delay: -5.1s; }
.bow-7 img { animation-delay: -.9s; }
.bow-8 img { animation-delay: -4s; }
.bow-9 img { animation-delay: -2.9s; }
.bow-10 img { animation-delay: -5.9s; }

.section,
.footer {
  isolation: isolate;
}

.section > .container,
.footer-inner {
  z-index: 2;
}

#inicio::after,
#contacto::after,
.section::before,
.section::after,
.container::after {
  content: none !important;
  display: none !important;
}


#inicio { background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(173, 186, 223, 0.16) 12px 32px), #fff; }
#sabores { background: var(--paper); }
#crea { background: linear-gradient(145deg, #fffaf6, #f8e7e4); }
#temporada { background: #f8ebea; }
#marca { background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(173, 186, 223, 0.16) 12px 32px), #fff; }
#eventos { background: #fffdf8; }
#sucursales { background: #fffdf8; }
#merch { background: #eff2fb; }
#comunidad { background: #fffdf8; }
#contacto { background: #f5e2e1; }

.section-title::after {
  display: block;
  width: 80px;
  height: 3px;
  margin: 22px auto 0;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--pink), transparent);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title p:last-child {
  max-width: 620px;
}

h1,
h2 {
  letter-spacing: .01em;
}

p {
  font-size: 16px;
}

.btn {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(430px, .88fr);
  gap: 110px;
}

.hero-content h1 {
  max-width: 680px;
}


.hero-3d-card::before {
  border-radius: inherit;
  opacity: .27;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent 45%), repeating-linear-gradient(120deg, rgba(255,255,255,.09) 0 2px, transparent 2px 19px);
}

.hero-3d-card::after {
  width: 150px;
  height: 150px;
  border-color: rgba(255,255,255,.34);
}

.main-image {
  position: absolute;
  top: 42px;
  right: 38px;
  z-index: 3;
  display: block;
  width: min(90%, 330px);
  height: 285px;
  padding: 0;
  overflow: hidden;
  border: 7px solid rgba(255,253,247,.96);
  border-radius: 26px;
  background: transparent;
  box-shadow: 12px 14px 0 rgba(63,67,93,.12);
  cursor: pointer;
  transform: rotate(4deg) translateZ(52px);
  transition: transform .35s cubic-bezier(.2,.85,.2,1), box-shadow .35s ease;
}

.main-image:hover {
  box-shadow: 18px 22px 0 rgba(63,67,93,.15);
  transform: rotate(0deg) translate3d(-4px,-8px,70px) scale(1.02);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-flavor-copy {
  right: 34px;
  bottom: 34px;
  left: 36px;
  width: min(84%, 430px);
  z-index: 3;
  transform: translateZ(42px);
}

.hero-flavor-copy p,
.hero-flavor-copy span,
.hero-flavor-copy h3 {
  color: #fff;
}

.hero-flavor-copy h3 {
  font-size: clamp(46px, 4.4vw, 74px);
}

.floating-badge {
  border-color: rgba(255,255,255,.36);
  background: rgba(63,67,93,.16);
}
.badge-1 { top: 128px; left: 40px; }
.badge-2 { right: 30px; bottom: 28px; }

.hero-flavor-buttons {
  right: auto;
  bottom: 26px;
  left: 36px;
  z-index: 4;
}

.hero-flavor-dot {
  border-color: rgba(255,255,255,.65);
  background: transparent;
}
.hero-flavor-dot.active { background: var(--yellow); }



#temporada .section-title,
#temporada .carousel-heading {
  text-align: center;
}

.dual-carousel-layout {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.carousel-block {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(63,67,93,.10);
  border-radius: 28px;
  background: rgba(246,233,102,.83);
  box-shadow: var(--shadow-card);
}

.season-strip,
.favorites-strip {
  justify-content: center;
  padding: 6px 0 14px;
}

.season-card,
.favorite-card {
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(63,67,93,.08);
}

.brand-story-block {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  column-gap: clamp(42px, 8vw, 130px);
  row-gap: 28px;
  align-items: start;
}

.brand-story-block > .eyebrow { grid-column: 1; margin-bottom: 0; }
.brand-story-block > h2 { grid-column: 2; grid-row: 1 / span 2; margin-top: -5px; }
.brand-story-block > p:not(.eyebrow) { grid-column: 1; max-width: 560px; }
.brand-story-block > p:nth-of-type(3) { grid-column: 2; }

.brand-principles {
  grid-column: 1 / -1;
}
.brand-principle-card .eyebrow { margin-bottom: 5px; }
.brand-principle-card h3 { margin-bottom: 8px; color: var(--coral); font-size: 28px; }
.brand-principle-card p:last-child { font-size: 13px; }

.brand-story-block > .soft-quote { grid-column: 2; justify-self: start; }
.brand-story-visual { grid-column: 1 / -1; margin-top: 20px; }
.brand-orbit-3d { max-width: 620px; margin: 0 auto; }
.orbit-core { border: 7px solid rgba(255,253,247,.92); box-shadow: 16px 20px 0 rgba(210,72,46,.12), var(--shadow-card); animation: orbitCardFloat 6s ease-in-out infinite; }
.orbit-word { box-shadow: var(--shadow-card); }

.philosophy-area { margin-top: 118px; }
.philosophy-grid article { border-radius: 18px; }

.event-stage,
.branch-card,
.community-card,
.form { box-shadow: var(--shadow-card); }
.event-stage { border-radius: 28px; }
.event-menu { gap: 10px; }
.event-tab { border-radius: 999px; }

#merch .section-title { margin-bottom: 30px; }
.gallery-3d-wrapper,
.merch-carousel {
  position: relative;
  height: 610px;
  padding: 34px 0 142px;
  overflow: visible !important;
  perspective: 1400px;
}

.gallery-3d {
  width: 238px;
  height: 338px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: gallerySpin 30s linear infinite;
  will-change: transform;
}
.gallery-3d:hover { animation-play-state: running !important; }

.gallery-card,
.gallery-card:nth-child(odd),
.gallery-card:nth-child(even) {
  overflow: hidden;
  border: 5px solid rgba(255,253,247,.95);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(63,67,93,.19);
  transform: rotateY(calc(var(--i) * 45deg)) translateZ(405px) !important;
}

.gallery-card > img { height: 202px; }
.merch-info { min-height: 132px; }

.responsibility-icons {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.responsibility-icons article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  min-height: 84px;
  padding: 12px 16px;
  border: 1px solid rgba(63,67,93,.13);
  border-radius: 18px;
  background: rgba(255,253,247,.58);
  box-shadow: none;
  transition: transform .28s ease, border-color .28s ease;
}
.responsibility-icons article:hover { border-color: rgba(210,72,46,.26); transform: translateY(-5px); }
.responsibility-icons .responsibility-icon {
  display: grid;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(63, 67, 93, .18);
  border-radius: 50%;
  background: transparent;
}
.responsibility-icons .responsibility-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.responsibility-icons h3 { font-family: "Satoshi", Arial, sans-serif; font-size: 15px; }

.footer {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 56px 18px 28px;
  background: var(--blue);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-logo img { display: block; width: auto; height: 120px; object-fit: contain; }
.footer-socials { display: flex; align-items: center; gap: 15px; }
.footer-socials a { display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; background: transparent; transition: transform .24s ease; }
.footer-socials a:hover { background: transparent; transform: translateY(-4px) rotate(-5deg); }
.footer-socials img { width: 22px; height: 22px; object-fit: contain; }
.tilt { transform-style: preserve-3d; }
.reveal.visible { transform: translate3d(0, 0, 0); }

@keyframes bowFloatSpin {
  0%,100% { transform: translate3d(0,0,0) rotate(-7deg) scale(1); }
  50% { transform: translate3d(0,-15px,0) rotate(7deg) scale(1.04); }
}
@keyframes heroDetailFloat {
  0%,100% { margin-top: 0; }
  50% { margin-top: -12px; }
}
@keyframes orbitCardFloat {
  0%,100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-12px); }
}
@keyframes gallerySpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .floating-bow img,
  .orbit-core,
  .gallery-3d { animation: none !important; }
}



#temporada > .container {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

#temporada .section-title,
#temporada .dual-carousel-layout,
#temporada .carousel-block,
#temporada .carousel-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#temporada .dual-carousel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(42px, 6vw, 74px);
  width: 100%;
  max-width: 1080px;
}

#temporada .carousel-block {
  width: 100%;
  max-width: 1080px;
  padding: clamp(26px, 4.4vw, 48px) clamp(16px, 3.4vw, 40px) clamp(38px, 5vw, 58px);
  border: 1px solid rgba(63, 67, 93, .11);
  border-radius: 30px;
  background: rgba(255, 253, 247, .90);
  box-shadow: 0 18px 42px rgba(63, 67, 93, .10);
}

#temporada .carousel-heading {
  max-width: 520px;
  margin-bottom: 22px;
}

#temporada .carousel-heading .eyebrow,
#temporada .carousel-heading h3,
#temporada .carousel-heading span {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.orbit-carousel {
  --orbit-radius: 355px;
  position: relative;
  width: 100%;
  height: 440px;
  margin: 0 auto;
  overflow: visible;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}

.orbit-carousel--season {
  --orbit-radius: 390px;
}

.orbit-carousel--favorites {
  --orbit-radius: 322px;
  height: 410px;
  perspective-origin: 50% 42%;
}

.orbit-track {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}

.orbit-track--season {
  animation: seasonOrbitSpin 32s linear infinite;
}

.orbit-track--favorites {
  animation: favoritesOrbitSpin 38s linear infinite;
}

.orbit-carousel.is-engaged .orbit-track--season {
  animation-duration: 20s;
}

.orbit-carousel.is-engaged .orbit-track--favorites {
  animation-duration: 24s;
}

.orbit-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 252px;
  min-height: 318px;
  margin-left: -126px;
  overflow: hidden;
  border: 4px solid rgba(255, 253, 247, .95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 34px rgba(63, 67, 93, .18);
  backface-visibility: hidden;
  transform: rotateY(calc(var(--i) * var(--step))) translateZ(var(--orbit-radius));
  transform-style: preserve-3d;
}

.orbit-card:hover {
  box-shadow: 0 26px 46px rgba(63, 67, 93, .24);
}

.orbit-card img {
  height: 178px;
  object-fit: cover;
}

.orbit-card h4 {
  padding: 15px 15px 5px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 30px;
  line-height: 1;
}

.orbit-card p {
  padding: 0 15px 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.orbit-carousel--favorites .orbit-card {
  width: 272px;
  min-height: 300px;
  margin-left: -136px;
  border-color: rgba(255, 253, 247, .98);
  border-radius: 24px;
  box-shadow: 0 18px 32px rgba(210, 72, 46, .14);
}

.orbit-carousel--favorites .orbit-card img {
  height: 160px;
}

.orbit-pedestal {
  position: absolute;
  right: 50%;
  bottom: 2px;
  width: min(560px, 78%);
  height: 74px;
  border: 1px solid rgba(63, 67, 93, .11);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255,255,255,.92), rgba(239,206,201,.42) 56%, transparent 70%);
  box-shadow: 0 20px 38px rgba(63, 67, 93, .11);
  transform: translateX(50%) rotateX(67deg);
}

.orbit-carousel--favorites .orbit-pedestal {
  bottom: 6px;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255,255,255,.9), rgba(246,211,69,.30) 54%, transparent 72%);
}

@keyframes seasonOrbitSpin {
  from { transform: rotateX(-9deg) rotateY(0deg); }
  to { transform: rotateX(-9deg) rotateY(360deg); }
}

@keyframes favoritesOrbitSpin {
  from { transform: rotateX(8deg) rotateY(360deg); }
  to { transform: rotateX(8deg) rotateY(0deg); }
}

.hero-3d-card::after {
  display: none;
}

.hero-3d-card {
  overflow: hidden;
}



#temporada .carousel-block {
  overflow: hidden;
}

#temporada .orbit-carousel {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 340px;
  margin: 0 auto;
  padding: 18px 0 26px;
  overflow: hidden;
  perspective: none;
  perspective-origin: center;
}

#temporada .orbit-track {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  height: auto;
  transform: none;
  transform-style: flat;
  will-change: transform;
}

#temporada .orbit-track--season,
#temporada .orbit-carousel.is-engaged .orbit-track--season {
  animation: seasonHorizontalRight 34s linear infinite;
}

#temporada .orbit-track--favorites,
#temporada .orbit-carousel.is-engaged .orbit-track--favorites {
  animation: favoritesHorizontalLeft 30s linear infinite;
}

#temporada .orbit-card,
#temporada .orbit-carousel--favorites .orbit-card {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 238px;
  width: 238px;
  margin-left: 0;
  border: 1px solid rgba(63, 67, 93, 0.137);
  border-radius: 21px;
  box-shadow: 0 18px 30px rgba(63, 67, 93, .13);
  backface-visibility: visible;
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease;
}

#temporada .orbit-card:nth-child(4n + 1) {
  transform: perspective(850px) rotateY(5deg) rotateZ(-.8deg) translateY(7px);
}

#temporada .orbit-card:nth-child(4n + 2) {
  transform: perspective(850px) rotateY(1deg) translateY(0);
}

#temporada .orbit-card:nth-child(4n + 3) {
  transform: perspective(850px) rotateY(-1deg) translateY(2px);
}

#temporada .orbit-card:nth-child(4n + 4) {
  transform: perspective(850px) rotateY(-5deg) rotateZ(.8deg) translateY(8px);
}

#temporada .orbit-card:hover {
  z-index: 5;
  box-shadow: 0 26px 42px rgba(210, 72, 46, .20);
  transform: perspective(900px) translateY(-11px) rotateY(0) rotateZ(0) scale(1.025);
}

#temporada .orbit-card h4 {
  padding: 15px 15px 5px;
  font-size: 29px;
}

#temporada .orbit-card p {
  padding: 0 15px 16px;
  font-size: 12px;
}

#temporada .orbit-pedestal {
  display: none;
}

@keyframes seasonHorizontalRight {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@keyframes favoritesHorizontalLeft {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }
}

.cursor-dot::before {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  width: 7px;
  height: 19px;
  border-radius: 0 0 5px 5px;
  background: #bd8f65;
  transform: translateX(-50%);
}

.cursor-dot::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 5px;
  height: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
}

.cursor-ring {
  width: 48px;
  height: 48px;
  border: 1px dashed rgba(210, 72, 46, .58);
  border-radius: 50%;
  opacity: 1;
  animation: cursorOrbit 4s linear infinite;
}

.cursor-ring.active {
  width: 62px;
  height: 62px;
  background: rgba(246, 211, 69, .16);
}

/* ==========================================================
   AJUSTES FINALES POR SECCIÓN
   Se conserva el orden de la cascada original.
========================================================== */

/* PUNTITOS AL HACER CLICK */
.paleta-particle {
  position: fixed;
  z-index: 999999;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--particle-color);
  box-shadow: 0 0 10px var(--particle-color);
  transform: translate(-50%, -50%);
  animation: paletaParticles .72s cubic-bezier(.15, .75, .25, 1) forwards;
}

@keyframes cursorOrbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes paletaParticles {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(
      calc(-50% + var(--move-x)),
      calc(-50% + var(--move-y))
    ) scale(.15);
  }
}
.cursor-dot {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: url("../img/cursor-paleta.png") center / contain no-repeat;
  box-shadow: none;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.cursor-dot::before,
.cursor-dot::after {
  display: none;
}

.footer::before {
  content: "" !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block !important;
  width: 100%;
  height: 30px;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15px 30px,
      var(--blue) 0 14px,
      #f5e2e1 14.5px
    ) 0 0 / 30px 30px repeat-x;
}

.footer::after {
  content: "" !important;
  position: absolute;
  top: 29px;
  left: 0;
  z-index: 1;
  display: block !important;
  width: 100%;
  height: 18px;
  pointer-events: none;
  background: var(--blue);
}

html,
body {
  margin: 0;
}

body > header.header {
  display: block !important;
  width: 100% !important;
  padding: 8px 14px 8px !important;
  transform: none !important;
  transition: none !important;
}

body.splash-active > .header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body > .header {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility .35s ease;
}

.cursor-dot,
.cursor-ring {
  position: fixed !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;
}

.splash {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(173, 185, 223, .30) 0 22px,
      transparent 22px 44px
    ),
    var(--cream);
}

.splash::before,
.splash::after {
  display: none !important;
  content: none !important;
}

body > header.header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 9990 !important;

  width: 100%;
  overflow: visible !important;
  isolation: isolate;

  padding: 0 22px;
  background: var(--blue);
}

body > header.header .navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 10px 4px 0px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body > header.header::after {
  content: "" !important;
  position: absolute !important;
  top: calc(100% - 1px) !important;
  right: 0 !important;
  left: 0 !important;

  z-index: 1 !important;
  display: block !important;
  width: 100%;
  height: 28px;

  pointer-events: none;
  background:
    radial-gradient(
      circle at 13px 0,
      var(--blue) 0 12px,
      transparent 12.8px
    ) 0 0 / 26px 28px repeat-x;

  transform: none !important;
}

body {
  padding-top: 94px;
}

#inicio .marquee,
#inicio .marquee-top {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: block;
  width: 100%;
  height: 58px;
  overflow: hidden;
  pointer-events: none;
  background: #f5d1cc;
  clip-path: none;
  transform: none;
  box-shadow: none;
}

#inicio .marquee::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  z-index: 2;
  height: 1px;
}

#inicio .marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: marqueeLoop 65s linear infinite;
  will-change: transform;
}

#inicio .marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
}

#inicio .marquee span {
  display: inline-block;
  flex: 0 0 auto;
  margin-right: 42px;

  color: rgba(210, 72, 46, .70);
  font-family: "Thistails", cursive;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

@keyframes marqueeLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.auto-rail {
  width: 100%;
  margin-top: 26px;
  overflow: hidden;
  border-top: 1px solid rgba(63, 67, 93, .14);
  border-bottom: 1px solid rgba(63, 67, 93, .14);
  background: rgba(255, 255, 255, .38);
}

.auto-rail div {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 46px;
  animation: ticker 30s linear infinite;
}

.auto-rail span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 12px 30px;
  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

#temporada .orbit-card,
#temporada .orbit-carousel--favorites .orbit-card {
  overflow: hidden;
  background: var(--cream);
}

/* Fondo distinto para cada paleta */
#temporada .orbit-card:nth-child(6n + 1) {
  background: linear-gradient(180deg, #fff7ed 0%, #fffdf7 66%);
}

#temporada .orbit-card:nth-child(6n + 2) {
  background: linear-gradient(180deg, #f8eef0 0%, #fffdf7 66%);
}

#temporada .orbit-card:nth-child(6n + 3) {
  background: linear-gradient(180deg, #eef1fa 0%, #fffdf7 66%);
}

#temporada .orbit-card:nth-child(6n + 4) {
  background: linear-gradient(180deg, #fff8d8 0%, #fffdf7 66%);
}

#temporada .orbit-card:nth-child(6n + 5) {
  background: linear-gradient(180deg, #eef5df 0%, #fffdf7 66%);
}

#temporada .orbit-card:nth-child(6n) {
  background: linear-gradient(180deg, #fdeceb 0%, #fffdf7 66%);
}

#temporada .orbit-card img,
#temporada .orbit-carousel--favorites .orbit-card img {
  width: 100%;
  height: 218px;
  padding: 14px 14px 0;
  object-fit: contain;
  object-position: center bottom;
}

#temporada .orbit-card,
#temporada .orbit-carousel--favorites .orbit-card {
  min-height: 350px;
}

#temporada .orbit-card h4 {
  margin-top: 4px;
  padding-top: 14px;
}

/* MISIÓN, VISIÓN Y VALORES */
.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.brand-principle-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  min-height: 154px;
  padding: 24px 28px;
  border: 1px solid rgba(210, 72, 46, .28);
  border-radius: 24px;
  background: rgba(255, 253, 247, .88);
  box-shadow: 0 14px 32px rgba(63, 67, 93, .06);

  transition: transform .28s ease, box-shadow .28s ease;
}

.brand-principle-card:hover {
  box-shadow: 0 20px 38px rgba(210, 72, 46, .12);
  transform: translateY(-6px);
}

.brand-principle-icon {
  display: grid;
  align-self: center;
  width: 82px;
  height: 102px;
  place-items: center;

  border: 1px solid rgba(210, 72, 46, .28);
  border-radius: 50%;
  background: transparent;
}

.brand-principle-icon img {
  display: block;
  width: 54px;
  height: 76px;
  object-fit: contain;
}

/* SECCIONES MÁS COMPACTAS */
html body .section {
  height: auto !important;
  align-items: flex-start !important;
}

html body .section > .container {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Reduce el espacio entre título y contenido */
html body .section-title {
  margin-bottom: 34px !important;
}

/* Hero conserva presencia, pero ya no ocupa toda la pantalla */
html body #inicio {
  min-height: 610px !important;
  padding-top: 92px !important;
  padding-bottom: 96px !important;
}

/* ==========================================================
   PÁGINA INTERNA: EMPLEO Y FRANQUICIAS
========================================================== */
.join-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  background: rgba(63, 67, 93, .42);
  backdrop-filter: blur(10px);
  transition: opacity .3s ease, visibility .3s ease;
}

.join-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.join-overlay__sheet {
  position: relative;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100vh - 40px));
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 34px;
  background: var(--cream);
  box-shadow: 0 32px 80px rgba(63, 67, 93, .28);
}

.join-overlay__top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(63, 67, 93, .10);
  background: rgba(255, 253, 247, .96);
  backdrop-filter: blur(14px);
}

.join-overlay__top .eyebrow {
  margin: 0;
}

.join-overlay__close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(210, 72, 46, .20);
  border-radius: 50%;
  color: var(--coral);
  font-size: 31px;
  line-height: 1;
  background: rgba(239, 206, 201, .44);
  transition: transform .2s ease, background .2s ease;
}

.join-overlay__close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

.join-overlay__tabs {
  position: sticky;
  top: 68px;
  z-index: 19;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(63, 67, 93, .08);
  background: rgba(255, 253, 247, .94);
}

.join-overlay__tab {
  min-height: 40px;
  padding: 9px 18px;
  border: 1px solid rgba(63, 67, 93, .13);
  border-radius: 999px;
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  background: transparent;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.join-overlay__tab.active,
.join-overlay__tab:hover {
  color: #fff;
  background: var(--coral);
  transform: translateY(-2px);
}

.join-overlay__content {
  display: none;
  padding: 48px;
}

.join-overlay__content.active {
  display: block;
}

.join-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  min-height: 390px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border-radius: 30px;
}

.join-detail-hero--empleo {
  border: 1px solid rgba(63, 67, 93, .11);
  background: radial-gradient(circle at 88% 84%, rgba(239, 206, 201, .68) 0 120px, transparent 121px), linear-gradient(135deg, #fff8f7, #fffdf7)
}

.join-detail-hero--franquicias {
    border: 1px solid rgba(63, 67, 93, .11);
  background:
    radial-gradient(circle at 88% 84%, rgba(239, 206, 201, .68) 0 120px, transparent 121px),
    linear-gradient(135deg, #fff8f7, #fffdf7);
}

.join-detail-hero h2 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: clamp(50px, 5.6vw, 82px);
  line-height: .9;
}

.join-detail-hero p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 16px;
}

.join-detail-hero__image {
  position: relative;
  display: grid;
  min-height: 290px;
  place-items: center;
  overflow: hidden;
  border: 6px solid rgba(255, 253, 247, .95);
  border-radius: 28px;
  background: rgba(255, 253, 247, .54);
  box-shadow: 14px 18px 0 rgba(210, 72, 46, .10);
  transform: rotate(3deg);
}

.join-detail-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.join-detail-heading {
  max-width: 730px;
  margin: 58px auto 30px;
  text-align: center;
}

.join-detail-heading h3 {
  color: var(--coral);
  font-size: clamp(37px, 4vw, 58px);
  line-height: .95;
}

.join-detail-heading--models {
  margin-top: 62px;
}
/* ==========================================================
   SECCIÓN ÚNETE A NOSOTROS
========================================================== */
#unete.join-section {
  position: relative;
  overflow: hidden;
  padding: 78px 24px 72px !important;
  background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(239, 206, 201, 0.16) 12px 32px), #fff; 
}


#unete .container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

#unete .section-title {
  max-width: 700px;
  margin: 0 auto 38px !important;
  text-align: center;
}

#unete .section-title h2 {
  margin: 0 0 14px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400;
  line-height: .9;
}

#unete .section-title > p:last-child {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

#unete .join-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

#unete .join-card {
  position: relative;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: start;
  min-height: 276px;
  padding: 32px !important;
  overflow: hidden;

  border: 1px solid rgba(210, 72, 46, .13);
  border-radius: 30px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 18px 38px rgba(63, 67, 93, .09);

  transition: transform .28s ease, box-shadow .28s ease;
}

#unete .join-card:hover {
  box-shadow: 0 25px 45px rgba(210, 72, 46, .15);
  transform: translateY(-7px);
}

#unete .join-card-decoration {
  position: absolute;
  right: -72px;
  bottom: -78px;
  z-index: 0;
  display: block !important;
  width: 194px;
  height: 194px;
  border-radius: 50%;
  pointer-events: none;
}

#unete .join-icon {
  position: relative;
  z-index: 2;
  display: grid !important;
  width: 84px;
  height: 104px;
  place-items: center;

  border: 1px solid rgba(210, 72, 46, .26);
  border-radius: 50%;
  background: rgba(255, 253, 247, .78);
}

#unete .join-icon img {
  display: block;
  width: 58px;
  height: 72px;
  object-fit: contain;
}

#unete .join-copy {
  position: relative;
  z-index: 2;
}

#unete .join-copy .eyebrow {
  margin: 0 0 7px;
  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#unete .join-copy h3 {
  margin: 0 0 12px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(48px, 4.4vw, 64px);
  font-weight: 400;
  line-height: .88;
}

#unete .join-copy > p:not(.eyebrow) {
  max-width: 375px;
  margin: 0 0 22px;
  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

#unete .join-copy .btn,
#unete .join-copy button {
  position: relative;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;

  border: 0;
  border-radius: 999px;

  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;

  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

#unete .join-card-empleo .btn,
#unete .join-card-empleo button {
  color: #fff;
  background: var(--coral);
}

#unete .join-card-franquicias .btn,
#unete .join-card-franquicias button {
  color: var(--ink);
  background: var(--yellow);
}

#unete .join-copy .btn:hover,
#unete .join-copy button:hover {
  box-shadow: 0 9px 0 rgba(63, 67, 93, .12);
  transform: translateY(-3px);
}
.employment-grid,
.franchise-trends {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.employment-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  min-height: 135px;
  padding: 20px;
  border: 1px solid rgba(63, 67, 93, .11);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(63, 67, 93, .06);
}

.employment-card__icon,
.franchise-trend__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(210, 72, 46, .25);
  border-radius: 50%;
  background: transparent;
}

.employment-card__icon img,
.franchise-trend__icon img {
  width: 45px;
  height: 50px;
  object-fit: contain;
}

.employment-card h4,
.franchise-trend h4,
.franchise-model h4 {
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 34px;
  font-weight: 400;
  line-height: .95;
}

.employment-card p,
.franchise-trend p,
.franchise-model p {
  margin-top: 7px;
  font-size: 14px;
}

.franchise-trends {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.franchise-trend {
  min-height: 250px;
  padding: 28px 22px;
  border: 1px solid rgba(63, 67, 93, .10);
  border-radius: 24px;
  text-align: center;
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(63, 67, 93, .06);
  transition: transform .25s ease;
}

.franchise-trend:hover {
  transform: translateY(-7px);
}

.franchise-trend__icon {
  margin: 0 auto 18px;
}

.franchise-note {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 38px auto 0;
  padding: 22px 26px;
  border-radius: 20px;
  background: rgba(239, 206, 201, .55);
}

.franchise-note span {
  align-self: center;
  width: 70px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
}

.franchise-note p {
  color: var(--ink);
  font-weight: 700;
}

.franchise-models {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.franchise-model {
  min-height: 348px;
  overflow: hidden;
  border: 1px solid rgba(63, 67, 93, .11);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(63, 67, 93, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.franchise-model:hover {
  box-shadow: 0 24px 40px rgba(63, 67, 93, .14);
  transform: translateY(-8px);
}

.franchise-model__image {
  display: grid;
  height: 164px;
  place-items: center;
  background: rgba(173, 185, 223, .22);
}

.franchise-model:nth-child(2) .franchise-model__image {
  background: rgba(246, 211, 69, .25);
}

.franchise-model:nth-child(3) .franchise-model__image {
  background: rgba(239, 206, 201, .52);
}

.franchise-model:nth-child(4) .franchise-model__image {
  background: rgba(216, 214, 152, .35);
}

.franchise-model__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.franchise-model__copy {
  position: relative;
  padding: 23px 18px 21px;
}

.franchise-model__copy > span {
  position: absolute;
  top: -24px;
  left: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 3px solid var(--cream);
  border-radius: 50%;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  background: var(--paper);
}

.franchise-model__copy h4 {
  margin: 9px 0 7px;
}

.franchise-model__copy strong {
  display: block;
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
}

body.join-overlay-open {
  overflow: hidden;
}
.event-info-window {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  background: rgba(63, 67, 93, .52);
  transition: opacity .25s ease, visibility .25s ease;
}

.event-info-window.is-open {
  visibility: visible;
  opacity: 1;
}

.event-info-window__box {
  width: min(900px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(63, 67, 93, .32);
}

.event-card--clickable,
[data-event-info] {
  cursor: pointer;
}

/* ==========================================================
   FILOSOFÍA: FICHAS Y VENTANAS
========================================================== */
.philosophy-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.philosophy-action-card {
  min-height: 190px;
  padding: 25px 20px;
  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 24px;
  cursor: pointer;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 12px 25px rgba(63, 67, 93, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.philosophy-action-card:hover {
  border-color: rgba(210, 72, 46, .38);
  box-shadow: 0 22px 38px rgba(63, 67, 93, .13);
  transform: translateY(-7px);
}

.philosophy-action-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.philosophy-action-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.philosophy-action-card h3 {
  margin-bottom: 9px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(36px, 3.2vw, 49px);
  font-weight: 400;
  line-height: .92;
}

.philosophy-action-card p {
  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

/* VENTANA */
.philosophy-window {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  background: rgba(63, 67, 93, .48);
  backdrop-filter: blur(10px);
  transition: opacity .28s ease, visibility .28s ease;
}

.philosophy-window.is-open {
  visibility: visible;
  opacity: 1;
}

.philosophy-window__box {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 34px 86px rgba(63, 67, 93, .30);
}

.philosophy-window__close {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 18px 18px -62px auto;
  border: 1px solid rgba(210, 72, 46, .25);
  border-radius: 50%;
  color: var(--coral);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 8px 18px rgba(63, 67, 93, .10);
  transition: transform .2s ease, background .2s ease;
}

.philosophy-window__close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

.philosophy-window__content {
  display: none;
  padding: 76px 48px 48px;
}

.philosophy-window__content.active {
  display: block;
}

.philosophy-window__content h2 {
  margin-bottom: 18px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(62px, 7vw, 94px);
  font-weight: 400;
  line-height: .85;
}

.philosophy-window__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.philosophy-window__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.philosophy-window__points > div {
  min-height: 180px;
  padding: 24px 20px;
  border: 1px solid rgba(63, 67, 93, .11);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(63, 67, 93, .06);
}

.philosophy-window__points > div:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(173, 185, 223, .30), transparent 70%),
    var(--paper);
}

.philosophy-window__points > div:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(246, 211, 69, .27), transparent 70%),
    var(--paper);
}

.philosophy-window__points > div:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(239, 206, 201, .58), transparent 70%),
    var(--paper);
}

.philosophy-window__points span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.philosophy-window__points p {
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body.philosophy-window-open {
  overflow: hidden;
}
/* VIDEO Y ELEMENTOS VISUALES: FILOSOFÍA */
.philosophy-window__visual {
  position: relative;
  min-height: 280px;
  margin: 0 0 34px;
  overflow: hidden;
  border: 6px solid rgba(255, 253, 247, .92);
  border-radius: 28px;
  background: var(--blue);
  box-shadow: 14px 18px 0 rgba(63, 67, 93, .10);
}

.philosophy-window__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(63, 67, 93, .16), transparent 48%),
    linear-gradient(180deg, transparent 50%, rgba(63, 67, 93, .20));
}

.philosophy-window__visual::after {
  position: absolute;
  right: -54px;
  bottom: -56px;
  z-index: 2;
  width: 180px;
  height: 180px;
  content: "";
  border-radius: 50%;
  background: rgba(246, 211, 69, .55);
}

.philosophy-window__visual video {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.philosophy-window__visual--cuidarte {
  background: #adb9df;
}

.philosophy-window__visual--consentirte {
  background: #efcec9;
}

.philosophy-window__visual--disfrutar {
  background: #f6d345;
}

.philosophy-window__visual--celebrarte {
  background: #d8d698;
}

.philosophy-window__visual-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid rgba(255, 253, 247, .70);
  border-radius: 999px;
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(63, 67, 93, .18);
  backdrop-filter: blur(8px);
}

.philosophy-window__visual-badge {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  max-width: 240px;
  color: var(--cream);
  font-family: "Thistails", cursive;
  font-size: clamp(31px, 4vw, 48px);
  line-height: .88;
  text-align: right;
  text-shadow: 0 5px 14px rgba(63, 67, 93, .25);
}
/* FICHAS VISUALES: SERVICIOS PARA EVENTOS */
#eventos .services-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

#eventos .event-service-card {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(63, 67, 93, .10);
  border-radius: 22px;
  cursor: pointer;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(63, 67, 93, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

#eventos .event-service-card:hover {
  box-shadow: 0 22px 38px rgba(63, 67, 93, .17);
  transform: translateY(-8px);
}

#eventos .event-service-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

#eventos .event-service-card:hover img {
  transform: scale(1.09);
}

#eventos .event-service-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(63, 67, 93, .02) 20%,
      rgba(63, 67, 93, .70) 100%
    );
}

#eventos .event-service-card__content {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 2;
}

#eventos .event-service-card__content span {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 253, 247, .90);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#eventos .event-service-card__content h3 {
  margin: 0;
  color: #fff;
  font-family: "Thistails", cursive;
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 400;
  line-height: .9;
  text-shadow: 0 4px 12px rgba(63, 67, 93, .32);
}

#eventos .event-service-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}
/* VENTANAS VISUALES PARA SERVICIOS DE EVENTOS */
.event-info-window__content {
  display: none;
  padding: 78px 44px 42px;
}

.event-info-window__content.active {
  display: block;
}

.event-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
  gap: 38px;
  align-items: center;
}

.event-detail-copy h2 {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(54px, 5.8vw, 82px);
  font-weight: 400;
  line-height: .88;
}

.event-info-window__lead {
  max-width: 570px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.event-detail-list {
  display: grid;
  gap: 12px;
}

.event-detail-list > div {
  padding: 15px 17px;
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  background: rgba(239, 206, 201, .34);
}

.event-detail-list > div:nth-child(2) {
  border-left-color: var(--yellow);
  background: rgba(246, 211, 69, .18);
}

.event-detail-list > div:nth-child(3) {
  border-left-color: var(--blue);
  background: rgba(173, 185, 223, .22);
}

.event-detail-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-detail-list p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.event-detail-gallery {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  border: 6px solid rgba(255, 253, 247, .95);
  border-radius: 28px;
  background: var(--blue);
  box-shadow: 14px 18px 0 rgba(63, 67, 93, .11);
}

.event-detail-gallery--one img {
  width: 100%;
  height: 355px;
  object-fit: cover;
  object-position: center;
}

.event-detail-gallery--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(239, 206, 201, .65);
}

.event-detail-gallery--two img {
  width: 100%;
  height: 339px;
  object-fit: cover;
}

.event-detail-gallery--two img:first-child {
  border-radius: 18px 6px 6px 18px;
}

.event-detail-gallery--two img:nth-child(2) {
  border-radius: 6px 18px 18px 6px;
}

.event-detail-gallery__tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(255, 253, 247, .76);
  border-radius: 999px;
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  background: rgba(63, 67, 93, .26);
  backdrop-filter: blur(8px);
}

.event-info-window__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 28px 30px;
  border-radius: 24px;
  background: var(--blue);
}

.event-info-window__cta .eyebrow {
  margin-bottom: 7px;
  color: var(--yellow);
}

.event-info-window__cta h3 {
  color: var(--cream);
  font-family: "Thistails", cursive;
  font-size: clamp(37px, 4vw, 56px);
  font-weight: 400;
  line-height: .9;
}

.event-info-window__cta .btn {
  flex: 0 0 auto;
  color: #fff;
  background: var(--coral);
}
/* ==========================================================
   RESPONSABILIDAD: VENTANAS INTERNAS
========================================================== */
.responsibility-card--clickable {
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.responsibility-card--clickable:hover {
  border-color: rgba(63, 67, 93, .22);
  box-shadow: 0 18px 34px rgba(63, 67, 93, .10);
  transform: translateY(-6px);
}

.responsibility-card--clickable:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.responsibility-window {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 22px;
  overflow-y: auto;
  opacity: 0;
  background: rgba(63, 67, 93, .48);
  backdrop-filter: blur(10px);
  transition: opacity .28s ease, visibility .28s ease;
}

.responsibility-window.is-open {
  visibility: visible;
  opacity: 1;
}

.responsibility-window__box {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 34px 86px rgba(63, 67, 93, .30);
}

.responsibility-window__close {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 18px 18px -62px auto;
  border: 1px solid rgba(63, 67, 93, .18);
  border-radius: 50%;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 8px 18px rgba(63, 67, 93, .10);
  transition: transform .2s ease, background .2s ease;
}

.responsibility-window__close:hover {
  background: #f1f1ed;
  transform: rotate(90deg);
}

.responsibility-window__content {
  display: none;
  padding: 78px 46px 46px;
}

.responsibility-window__content.active {
  display: block;
}

.responsibility-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 42px;
  align-items: center;
}

.responsibility-detail__copy h2 {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 400;
  line-height: .86;
}

.responsibility-detail__lead {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.responsibility-detail__list {
  display: grid;
  gap: 13px;
}

.responsibility-detail__list > div {
  padding: 16px 18px;
  border: 1px solid rgba(63, 67, 93, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.responsibility-detail__list span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.responsibility-detail__list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.responsibility-detail__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 28px;
  background: #f4f1ec;
  box-shadow: 14px 18px 0 rgba(63, 67, 93, .08);
}

.responsibility-detail__media img,
.responsibility-detail__media video {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.responsibility-detail__media--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}

.responsibility-detail__media--double img {
  height: 374px;
  border-radius: 20px;
}

.responsibility-detail__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(20, 23, 35, .34) 100%);
}

.responsibility-detail__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 240px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 253, 247, .65);
  border-radius: 999px;
  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-align: right;
  background: rgba(63, 67, 93, .34);
  backdrop-filter: blur(8px);
}

body.responsibility-window-open {
  overflow: hidden;
}

/* ==========================================================
   SABORES: HISTORIA, PRESENTACIÓN Y ENVOLTURAS
========================================================== */

.flavor-stage {
  position: relative;
}

/* BOTÓN EN EL ESPACIO VACÍO */
.flavor-story-trigger {
  position: absolute;
  top: 50px;
  left: 42px;
  z-index: 8;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 220px;
  padding: 15px 17px;

  border: 1px solid rgba(210, 72, 46, .18);
  border-radius: 20px;

  color: var(--ink);
  text-align: left;
  cursor: pointer;

  background: rgba(255, 253, 247, .88);
  box-shadow: 0 12px 26px rgba(63, 67, 93, .08);
  backdrop-filter: blur(10px);

  transition: transform .25s ease, box-shadow .25s ease;
}

.flavor-story-trigger:hover {
  box-shadow: 0 18px 34px rgba(63, 67, 93, .14);
  transform: translateY(-5px);
}

.flavor-story-trigger span {
  margin-bottom: 5px;

  color: var(--coral);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.flavor-story-trigger strong {
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: 31px;
  font-weight: 400;
  line-height: .9;
}

.flavor-story-trigger small {
  margin-top: 8px;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* MODAL */
.flavor-story-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: grid;
  visibility: hidden;
  place-items: center;

  padding: 22px;
  overflow-y: auto;

  opacity: 0;
  background: rgba(63, 67, 93, .50);
  backdrop-filter: blur(10px);

  transition: opacity .28s ease, visibility .28s ease;
}

.flavor-story-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.flavor-story-sheet {
  position: relative;

  width: min(1080px, 100%);
  max-height: calc(100vh - 44px);

  overflow-y: auto;

  border: 1px solid rgba(63, 67, 93, .12);
  border-radius: 30px;

  background: var(--cream);
  box-shadow: 0 34px 86px rgba(63, 67, 93, .32);
}

.flavor-story-close {
  position: sticky;
  top: 18px;
  z-index: 20;

  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;

  margin: 18px 18px -62px auto;

  border: 1px solid rgba(63, 67, 93, .16);
  border-radius: 50%;

  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;

  background: rgba(255, 253, 247, .96);
  box-shadow: 0 8px 18px rgba(63, 67, 93, .10);

  transition: transform .2s ease, background .2s ease;
}

.flavor-story-close:hover {
  background: #f2f0eb;
  transform: rotate(90deg);
}

.flavor-story-content {
  padding: 78px 46px 46px;
}

.flavor-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
  gap: 46px;
  align-items: center;
}

/* COLUMNA DE TEXTO */
.flavor-story-copy h2 {
  margin: 0 0 18px;

  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(60px, 6vw, 92px);
  font-weight: 400;
  line-height: .84;
}

.flavor-story-reason {
  max-width: 610px;
  margin-bottom: 26px;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

.flavor-story-block {
  margin-top: 21px;
}

.flavor-story-block > span {
  display: block;
  margin-bottom: 9px;

  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.flavor-story-block ul {
  display: grid;
  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.flavor-story-block li {
  position: relative;

  padding: 10px 13px 10px 30px;

  border: 1px solid rgba(63, 67, 93, .10);
  border-radius: 14px;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 13px;

  background: rgba(255, 255, 255, .56);
}

.flavor-story-block li::before {
  position: absolute;
  top: 14px;
  left: 13px;

  width: 8px;
  height: 8px;

  content: "";
  border-radius: 50%;
  background: var(--coral);
}

.flavor-story-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-story-chips span {
  padding: 8px 12px;

  border: 1px solid rgba(63, 67, 93, .14);
  border-radius: 999px;

  color: var(--ink);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;

  background: rgba(255, 255, 255, .72);
}

.flavor-story-note {
  margin-top: 17px;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

/* CARRUSEL: PALETA Y ENVOLTURA */
.flavor-story-presentation {
  min-width: 0;
}

.flavor-wrapper-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;

  margin-bottom: 16px;
}

.flavor-wrapper-heading .eyebrow {
  margin-bottom: 5px;
}

.flavor-wrapper-heading h3 {
  color: var(--coral);
  font-family: "Thistails", cursive;
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 400;
  line-height: .9;
}

.flavor-wrapper-heading > span {
  flex: 0 0 auto;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.wrapper-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
}

.wrapper-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;

  border: 1px solid rgba(63, 67, 93, .15);
  border-radius: 50%;

  color: var(--ink);
  font-size: 20px;
  cursor: pointer;

  background: var(--paper);
  transition: transform .2s ease, background .2s ease;
}

.wrapper-arrow:hover:not(:disabled) {
  background: #f2f0eb;
  transform: translateY(-3px);
}

.wrapper-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.wrapper-viewport {
  overflow: hidden;

  border: 1px solid rgba(63, 67, 93, .10);
  border-radius: 28px;

  background: #fbfaf6;
  box-shadow: 14px 18px 0 rgba(63, 67, 93, .08);
}

.wrapper-track {
  display: flex;
  width: 100%;
}

.wrapper-slide {
  position: relative;

  display: grid;
  flex: 0 0 100%;
  min-height: 410px;
  place-items: center;

  padding: 24px;
  overflow: hidden;

  background: #fff;
}

.wrapper-slide--palette {
  background:
    radial-gradient(
      circle at 84% 84%,
      rgba(216, 214, 152, .42) 0 105px,
      transparent 106px
    ),
    #fbfaf6;
}

.wrapper-slide img {
  width: 100%;
  height: 355px;

  object-fit: contain;
  object-position: center;
}

.wrapper-slide__label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;

  padding: 8px 12px;

  border: 1px solid rgba(255, 253, 247, .70);
  border-radius: 999px;

  color: #fff;
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;

  background: rgba(63, 67, 93, .32);
  backdrop-filter: blur(8px);
}

.flavor-presentation-note {
  margin-top: 13px;

  color: var(--muted);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

body.flavor-story-open {
  overflow: hidden;
}
/* PALETAS CLICABLES EN TEMPORADA Y FAVORITOS */
.orbit-card .flavor-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;

  border: 0;
  outline: 0;

  line-height: 0;
  cursor: pointer;
  background: transparent;
}

.orbit-card .flavor-card-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: transform .35s ease;
}

.orbit-card .flavor-card-trigger:hover img {
  transform: scale(1.07);
}

.orbit-card .flavor-card-trigger:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -4px;
  border-radius: 18px;
}

/*nuevo style*/
/* REPARAR IMAGEN DE LA SECCIÓN MARCA */
#marca .brand-story-visual {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 20px;
}

#marca .brand-orbit-3d {
  position: relative;
  display: grid !important;
  width: min(100%, 470px) !important;
  height: 490px !important;
  margin: 0 auto !important;
  place-items: center;
  perspective: 1000px;
}

#marca .orbit-core > img {
  display: block !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;

  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;

  object-fit: cover !important;
  object-position: center !important;

  transform: none !important;
}

#marca .orbit-word {
  z-index: 3;
}
/* MARCA: IMAGEN HORIZONTAL EN ESCRITORIO */
@media (min-width: 701px) {
  #marca .brand-orbit-3d {
    width: min(100%, 620px) !important;
    height: 470px !important;
  }

  #marca .orbit-core {
    width: min(100%, 700px) !important;
    min-width: 0 !important;
    max-width: 480px !important;
    height: 320px !important;
    min-height: 520px !important;
    max-height: 320px !important;
    border-radius: 38px !important;
    transform: rotate(0deg) rotateY(-6deg) !important;
  }

  #marca .orbit-core > img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center 56% !important;
  }

  #marca .orbit-word-1 {
    top: 9%;
    left: 2%;
  }

  #marca .orbit-word-2 {
    top: 18%;
    right: 0;
  }

  #marca .orbit-word-3 {
    bottom: 16%;
    left: 1%;
  }

  #marca .orbit-word-4 {
    right: 3%;
    bottom: 7%;
  }
}
/* MARCA: FOTO HORIZONTAL EN ESCRITORIO */
@media (min-width: 701px) {
  #marca .brand-orbit-3d {
    width: min(100%, 760px) !important;
    height: 460px !important;
  }

  #marca .orbit-core {
    width: min(100%, 650px) !important;
    min-width: 0 !important;
    max-width: 650px !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    aspect-ratio: 16 / 9 !important;

    border-radius: 38px !important;
  }

  #marca .orbit-core > img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;
  }

  #marca .orbit-word-1 {
    top: 8%;
    left: 0;
  }

  #marca .orbit-word-2 {
    top: 20%;
    right: -10%;
  }

  #marca .orbit-word-3 {
    bottom: 15%;
    left: 0;
  }

  #marca .orbit-word-4 {
    right: 0;
    bottom: 7%;
  }
}
/* IMÁGENES EN VENTANA DE EMPLEO Y FRANQUICIAS */
.join-detail-hero__image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 28px;

  background-color: #fffdf7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  box-shadow: 14px 18px 0 rgba(210, 72, 46, .10);
}

/* FOTO PARA EMPLEO */
[data-join-content="empleo"] .join-detail-hero__image {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 253, 247, .05),
      rgba(210, 72, 46, .10)
    ),
    url("../img/empleo.png");
}

/* FOTO PARA FRANQUICIAS */
[data-join-content="franquicias"] .join-detail-hero__image {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 253, 247, .05),
      rgba(173, 185, 223, .15)
    ),
    url("../img/franquicias.png");
}