/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --nav-height: 55px;
  --nav-bg: rgba(20, 10, 50, 0.75);
  --nav-blur: 12px;
  --color-cta: #f5a623;
  --color-cta-hover: #e09010;
  --color-headline: #f5a623;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --logo-height: calc(var(--nav-height) * 2.25);
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-display);
  overflow-x: hidden;
  position: relative;
}

/* ── NAVBAR ── */
.navbar {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(var(--nav-blur));
  -webkit-backdrop-filter: blur(var(--nav-blur));
  border-radius: 35px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s;
  overflow: visible;
}

.navbar__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  gap: 16px;
  overflow: visible;
  position: relative;
}

.navbar__logo {
  position: absolute;
  left: 0;
  transform: translateX(-40%);
  display: flex;
  align-items: center;
  overflow: visible;
  z-index: 10;
}

.navbar__logo img {
  height: var(--logo-height);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.navbar__menu {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  list-style: none;
}

.navbar__menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}

.navbar__menu a:hover { opacity: 1; color: var(--color-cta); }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

/* Burger animación cuando está abierto */
.navbar.is-open .navbar__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar.is-open .navbar__burger span:nth-child(2) {
  opacity: 0;
}
.navbar.is-open .navbar__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── HERO / CAROUSEL ── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel__ghost {
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  display: block;
}

.carousel__ghost picture {
  display: block;
  width: 100%;
}

.carousel__ghost img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.carousel__slide.active { opacity: 1; }

.carousel__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* Texto overlay por slide */
.carousel__slide-text {
  position: absolute;
  left: 12%;
  right: 58%;
  top: 25%;
  bottom: 28%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
}

.carousel__slide-title {
  font-family: 'Lilita One', var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 3px 14px rgba(10,20,80,0.6);
  line-height: 1.15;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.carousel__slide-sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  line-height: 1.4;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .carousel__slide-title { font-size: clamp(1.2rem, 2.6vw, 2.4rem); }
  .carousel__slide-sub   { font-size: clamp(0.75rem, 1.2vw, 1rem); }
}

@media (max-width: 768px) {
  .carousel__ghost img {
    aspect-ratio: 850 / 1474;
  }

  .carousel__slide-text {
    left: 16%;
    right: 16%;
    top: auto;
    bottom: calc(52px + 12%);
    justify-content: flex-end;
    text-align: center;
    align-items: center;
    overflow: visible;
  }

  .carousel__slide-title { font-size: clamp(0.85rem, 7vw, 2.6rem); }
  .carousel__slide-sub   { font-size: clamp(0.9rem, 4vw, 1.4rem); }
}

/* CTA — cuadrante inferior izquierdo, centrado */
.carousel__cta {
  position: absolute;
  left: 25%;
  top: 83%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hero__cta {
  display: inline-block;
  background: var(--color-cta);
  color: #4c1d95;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 900;
  text-decoration: none;
  padding: clamp(16px, 2.2vw, 22px) clamp(40px, 6vw, 60px);
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow:
    0 4px 0 #b45309,
    0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.hero__cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #b45309,
    0 12px 28px rgba(0,0,0,0.35);
}

.hero__cta:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #b45309, 0 4px 12px rgba(0,0,0,0.2);
}

/* Flechas */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel__arrow:hover { background: rgba(255,255,255,0.32); }
.carousel__arrow--prev { left: 20px; }
.carousel__arrow--next { right: 20px; }

/* Dots */
.carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot.active {
  background: var(--color-cta);
  border-color: var(--color-cta);
  transform: scale(1.35);
}

/* ── SECCIONES ── */
.secciones {
  background: url('assets/images/bg-sections.webp') center center / cover no-repeat;
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden; /* evita scroll horizontal por los personajes */
}

.sec {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.sec--right { justify-content: flex-end;   padding-right: 8%; }
.sec--left  { justify-content: flex-start; padding-left:  8%; }

.sec__card {
  width: 72vw;
  height: clamp(180px, 23vw, 340px);
  border-radius: clamp(40px, 5.5vw, 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 20px;
}

.sec--left .sec__text { margin-left: auto; text-align: right; padding: 30px 50px 30px 30px; }

.sec__card--yellow { background: #EFB81C; }
.sec__card--pink   { background: #F881C4; }
.sec__card--blue   { background: #4E99D4; }
.sec__card--blue .sec__text { padding-right: 60px; }

/* Imagen de caja — fuera de la pill, posicionada absolutamente al borde */
.sec__img {
  position: absolute;
  height: clamp(238px, 31.5vw, 455px);
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 5;
  bottom: -10%;
}

.sec__img--right        { right: clamp(55px, 8vw, 130px); }
.sec__img--left         { left: clamp(80px, 11vw, 150px); bottom: -15%; }
.sec__img--shark        { right: clamp(90px, 12vw, 165px); }
.sec__img--right:not(.sec__img--shark) { right: clamp(75px, 9vw, 150px); }

/* Texto */
.sec__text {
  flex: 0 0 60%;
  max-width: 60%;
  align-self: stretch;
  padding: 30px 30px 30px 50px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.12);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.sec__text p {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 3rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.sec__hl { color: #29267e; font-weight: 800; }

/* Personajes en los bordes de la ventana, alineados con la pill */
.sec__char {
  position: absolute;
  height: clamp(276px, 36.8vw, 524px);
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 10;
  bottom: clamp(calc(1rem - 15px), calc(1.5vw - 15px), calc(2rem - 15px));
  transform: translateY(3%);
}

.sec__char--left  { left: 0; }
.sec__char--right { right: 0; }

/* Dragon animado — pegado al borde izquierdo de la pastilla amarilla, mitad visible */
.sec__dragon {
  position: absolute;
  left: 2%;
  bottom: -5%;
  height: 112%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 5;
  transform: translateX(-45%) rotate(60deg);
  transform-origin: center center;
  transition: opacity 0.4s ease;
}

/* ── TIENDA ── */
.tienda {
  background:
    linear-gradient(160deg, rgba(45,10,110,0.8) 0%, rgba(26,5,69,0.8) 50%, rgba(45,10,110,0.8) 100%),
    url('assets/images/bg-tienda.webp') center center / cover no-repeat;
  padding: clamp(2.5rem, 5vw, 5rem) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 3.5vw, 3.5rem);
}

.tienda__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 900;
  color: var(--color-headline);
  text-align: center;
  line-height: 1.1;
}

.tienda__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  width: 100%;
  max-width: 1100px;
  align-items: start;
}

.tienda__card {
  background: #fff;
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  align-items: start;
  justify-items: center;
  gap: 0.6rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.tienda__badge {
  position: absolute;
  top: -14px;
  right: 10px;
  background: var(--color-cta);
  color: #4c1d95;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.3rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  width: clamp(64px, 7vw, 86px);
  height: clamp(64px, 7vw, 86px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 0 #b45309, 0 6px 16px rgba(0,0,0,0.2);
  z-index: 2;
}

.tienda__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.tienda__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tienda__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 900;
  color: #4E99D4;
  text-align: center;
}

.tienda__desc {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #555;
  text-align: center;
  line-height: 1.4;
}

.tienda__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}

.tienda__price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 900;
  color: var(--color-cta);
  margin-top: 0;
}

.tienda__price-old {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #999;
  text-decoration: line-through;
  margin-top: -0.2em;
  display: block;
}

.tienda__btn {
  display: inline-block;
  background: #3db54a;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 32px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  box-shadow: 0 3px 0 #267a30, 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.tienda__btn:hover {
  background: #35a040;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #267a30, 0 10px 20px rgba(0,0,0,0.2);
}

.tienda__btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #267a30, 0 3px 8px rgba(0,0,0,0.15);
}

.tienda__qty {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 700;
  color: #888;
  text-align: center;
}

.tienda__legal {
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .tienda__grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .tienda__name {
    font-size: 1.9rem;
  }
  .tienda__qty {
    font-size: 1rem;
  }
  .tienda__desc {
    font-size: 1.1rem;
  }
  .tienda__price {
    font-size: 2rem;
  }
  .tienda__price-old {
    font-size: 1.2rem;
  }
  .tienda__btn {
    font-size: 1rem;
  }
}

/* ── SOCIAL ── */
.social {
  background: #EFB81C;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4rem) 6%;
  gap: clamp(80px, 12vw, 200px);
  overflow: visible;
  z-index: 2;
}

.social__newsletter,
.social__redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.social__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: #1a0a5e;
  width: 100%;
  text-align: center;
}

.social__heading strong { font-weight: 900; }

.br-mobile { display: none; }
@media (max-width: 480px) { .br-mobile { display: inline; } }

.social__desc {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  color: #1a0a5e;
  line-height: 1.45;
}

.social__form {
  display: flex;
  align-items: stretch;
  max-width: 300px;
}

.social__input {
  flex: 1;
  padding: 10px 18px;
  border: none;
  border-radius: 999px 0 0 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  background: #fff;
}

.social__submit {
  background: linear-gradient(135deg, #f5a623 0%, #e07010 100%);
  border: none;
  padding: 0 16px;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social__submit:hover { background: linear-gradient(135deg, #e09010 0%, #c85e00 100%); }

.social__icons {
  display: flex;
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
}

.social__icon {
  width: clamp(52px, 6.5vw, 76px);
  height: clamp(52px, 6.5vw, 76px);
  border-radius: clamp(12px, 1.5vw, 18px);
  background: linear-gradient(135deg, #f5a623 0%, #e07010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.social__icon:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.social__char {
  position: absolute;
  right: 0;
  bottom: 0;
  height: clamp(160px, 22vw, 380px);
  width: auto;
  pointer-events: none;
  z-index: 10;
  transform: translate(40px, 30px) rotate(-45deg);
}



@media (max-width: 768px) {
  .social {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .social__newsletter,
  .social__redes {
    align-items: center;
    text-align: center;
  }

  .social__form {
    margin: 0 auto;
  }

  .social__char {
    display: none;
  }
}

/* ── FAQ ── */
.faq {
  background: #fff;
}

.faq__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem clamp(2rem, 6vw, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  color: #1a0a5e;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.faq__toggle:hover { color: #4E99D4; }

.faq__toggle-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.35s ease, opacity 0.2s;
}

.faq.is-open .faq__toggle-icon { transform: rotate(180deg); opacity: 1; }

.faq__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 clamp(2rem, 6vw, 8rem);
}

.faq.is-open .faq__list {
  max-height: 4000px;
  padding-bottom: 2rem;
}

.faq__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid #ede8ff;
}

.faq__item:first-child {
  border-top: 1px solid #ede8ff;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 700;
  color: #1a0a5e;
  text-align: left;
  transition: color 0.2s;
}

.faq__question:hover { color: #4E99D4; }

.faq__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-cta);
  color: #1a0a5e;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__item.is-open .faq__answer {
  max-height: 600px;
}

.faq__answer p {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: #555;
  line-height: 1.65;
  padding-bottom: 1.1rem;
}

/* ── FOOTER ── */
.footer__about {
  background: #13124a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 6vw, 8rem);
}

.footer__logo {
  height: clamp(90px, 12vw, 160px);
  width: auto;
  flex-shrink: 0;
}

.footer__bio-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}

.footer__bio-text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-weight: 400;
}

.footer__contact {
  background: var(--color-cta);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #13124a;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-form__row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}

.contact-form__field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #13124a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form__field input,
.contact-form__field textarea {
  background: #fff;
  border: 1px solid rgba(19,18,74,0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #13124a;
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(19,18,74,0.35);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: #13124a;
}

.contact-form__btn {
  margin-top: 1rem;
  background: #13124a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: #13124a;
  cursor: pointer;
  line-height: 1.4;
}

.contact-form__consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #13124a;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.contact-form__consent a {
  color: #13124a;
  font-weight: 700;
  text-underline-offset: 2px;
}

.contact-form__legal {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(19,18,74,0.55);
  margin-top: 0.75rem;
  line-height: 1.4;
}

.contact-form__btn:hover { opacity: 0.88; }

.contact-form__ok {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #13124a;
  margin-top: 1rem;
}
.contact-form__err {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #7a0000;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-form__row { flex-direction: column; }
  .footer__contact { text-align: center; }
  .contact-form__btn { display: block; margin: 1rem auto 0; }
}

.footer__bottom {
  background: #0a0920;
  padding: clamp(1.2rem, 2vw, 2rem) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer__links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__links span {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

.footer__disclaimer,
.footer__tags,
.footer__credit {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}

.footer__credit { color: rgba(255,255,255,0.3); }
.footer__credit a {
  color: inherit;
  text-decoration: none;
}
.footer__credit a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .footer__about {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 6%;
  }

  .footer__bio-text { font-size: 0.92rem; }
}

/* ── PROMO ── */
.promo {
  scroll-margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr;
  grid-template-areas: "left image";
  background: #4E99D4;
  min-height: clamp(200px, 22vw, 300px);
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
}

.promo__left {
  grid-area: left;
  padding: clamp(2rem, 4vw, 4rem) 1% clamp(2rem, 4vw, 4rem) 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}

.promo__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

.promo__sub {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  max-width: 70%;
}

.promo__cta {
  display: inline-block;
  margin: 0;
  background: var(--color-cta);
  color: #4c1d95;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 900;
  text-decoration: none;
  padding: 14px 44px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 4px 0 #b45309, 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.promo__cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #b45309, 0 12px 24px rgba(0,0,0,0.25);
}

.promo__cta:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #b45309, 0 4px 10px rgba(0,0,0,0.2);
}

.promo__right {
  grid-area: image;
  position: relative;
}

.promo__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 30px), calc(-50% - 20px));
  height: 155%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --nav-height: 48px; }

  /* Pill centrada */
  .navbar {
    position: absolute;
    top: 56px;
    width: 50%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  /* Pill abre: esquinas inferiores se aplanan para unirse al menú */
  .navbar.is-open {
    border-radius: 35px 35px 0 0;
  }

  /* Logo: vuelve a posición absolute dentro del nav pero sin overflow */
  .navbar__logo {
    position: absolute;
    left: 0;
    transform: translateX(-40%);
  }

  /* Menú: pegado a la pill, mismo estilo glass, oculto por defecto */
  .navbar__menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(var(--nav-blur));
    -webkit-backdrop-filter: blur(var(--nav-blur));
    border-radius: 0 0 20px 20px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.25s ease;
  }

  .navbar.is-open .navbar__menu {
    max-height: 400px;
    opacity: 1;
    /* padding-top empuja los links por debajo del logo */
    padding-top: calc((var(--logo-height) - var(--nav-height)) / 2 + 4px);
    padding-bottom: 16px;
  }

  .navbar__menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.82rem;
  }

  .navbar__burger { display: flex; }

  .carousel__cta {
    left: 50%;
    top: auto;
    bottom: 52px;
    transform: translateX(-50%);
  }

  .carousel__arrow {
    top: 65%;
  }

  .hero { height: auto; }

  .carousel__slide picture,
  .carousel__slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .secciones { gap: 0; padding-top: 1.5rem; padding-bottom: 1rem; }

  .sec--right,
  .sec--left {
    justify-content: center;
    padding: 0.75rem 5%;
  }

  .sec__card {
    width: 100%;
    height: 270px;
    border-radius: 40px;
    padding: 10px;
  }

  .sec__text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 16px 16px 16px 20px;
  }

  .sec--right .sec__text {
    padding-right: 8%;
  }

  .sec--left .sec__text {
    padding: 16px 20px 16px 8%;
  }

  .sec__char { display: none; }
  .sec__dragon { display: none; }
  .sec__img  { height: 92%; object-fit: contain; }
  .sec__img--shark { right: 30px; bottom: 0; }
  .sec__img--right:not(.sec__img--shark) { right: -20px; bottom: 0; height: 105%; }
  .sec__img--left  { left: 5px; bottom: 0; }

  .sec:has(.sec__card--yellow) .sec__text,
  .sec:has(.sec__card--blue)   .sec__text { flex: 0 0 60%; max-width: 60%; }

  .sec__text h2 { font-size: 0.9rem; }
  .sec__text p  { font-size: 0.80rem; max-width: 80%; }
  .sec--left .sec__text p { margin-left: auto; }

  .promo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "image"
      "left";
    align-items: center;
    row-gap: 0;
  }

  .promo__left {
    padding: 1.5rem 10% 2rem;
    width: 100%;
    margin: 0;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .promo__sub {
    padding: 0;
    text-align: center;
  }

  .promo__title {
    text-align: center;
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .br--desktop { display: none; }

  .promo__right {
    width: 85%;
    margin: 0 auto;
    height: clamp(160px, 42vw, 260px);
    z-index: 0;
  }

  .promo__img {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    width: 80%;
    display: block;
    margin: -40px auto 0;
  }

  .promo__cta {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    font-size: 1.1rem !important;
    padding: 16px 40px !important;
  }
}
