:root {
  --blue: #0758d8;
  --blue-dark: #07357f;
  --sky: #17b7ff;
  --yellow: #ffd21c;
  --orange: #ff8b13;
  --pink: #ff4fa3;
  --purple: #7b2cff;
  --green: #39b54a;
  --cream: #fff7dc;
  --white: #ffffff;
  --ink: #132340;
  --muted: #5b6680;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(9, 31, 84, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 8%, rgba(255, 210, 28, 0.45), transparent 28%),
    radial-gradient(circle at 85% 6%, rgba(255, 79, 163, 0.32), transparent 28%),
    linear-gradient(180deg, #eaf7ff 0%, #fff8df 46%, #fff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a,
input {
  font: inherit;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.bubble-one {
  width: 230px;
  height: 230px;
  background: var(--yellow);
  left: -60px;
  top: 170px;
}

.bubble-two {
  width: 310px;
  height: 310px;
  background: var(--sky);
  right: -120px;
  top: 640px;
  animation-delay: 1.2s;
}

.bubble-three {
  width: 180px;
  height: 180px;
  background: var(--pink);
  left: 42%;
  top: 1220px;
  animation-delay: 2.1s;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -22px, 0) scale(1.04); }
}

.entry {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(5, 26, 74, 0.55), rgba(5, 26, 74, 0.72)),
    url("../assets/group-turminha.webp") center/cover;
  z-index: 1000;
  transition: opacity .35s ease, visibility .35s ease;
}

.entry.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-card {
  width: min(980px, 100%);
  border: 3px solid rgba(255, 255, 255, 0.65);
  border-radius: 38px;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  text-align: center;
  backdrop-filter: blur(12px);
}

.entry h1 {
  margin: 4px 0 12px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--blue);
  text-shadow: 0 5px 0 var(--yellow);
}

.entry-text {
  max-width: 700px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.08rem;
}

.entry-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-card {
  border: 0;
  border-radius: 26px;
  padding: 24px;
  min-height: 190px;
  cursor: pointer;
  color: var(--white);
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}

.choice-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  right: -48px;
  top: -52px;
}

.choice-card:hover,
.choice-card:focus-visible {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 28px 70px rgba(9, 31, 84, 0.28);
}

.choice-card.kids {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}

.choice-card.adults {
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.choice-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.22);
  font-size: 1.8rem;
}

.choice-card strong,
.choice-card small {
  display: block;
  position: relative;
  z-index: 1;
}

.choice-card strong {
  font-size: 1.35rem;
}

.choice-card small {
  margin-top: 8px;
  opacity: .92;
}

.skip-entry {
  margin-top: 22px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 50px rgba(9, 31, 84, 0.13);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: var(--blue-dark);
  line-height: .86;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--yellow);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a,
.portal-btn,
.cart-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.nav a:hover,
.portal-btn:hover,
.cart-btn:hover {
  background: rgba(7, 88, 216, .1);
}

.cart-btn {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(7, 88, 216, .22);
}

.cart-btn:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.section {
  width: min(var(--max), calc(100% - 28px));
  margin: 64px auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: 34px;
  align-items: center;
  padding-top: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 950;
  color: var(--pink);
}

.hero h2,
.section-head h2,
.video-copy h2,
.adult-hero h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 70px);
  line-height: .95;
  letter-spacing: -0.06em;
  color: var(--blue-dark);
}

.hero p,
.section-head p,
.video-copy p,
.adult-hero p,
.info-card p,
.product-card p,
.character-card p,
.package-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  font-size: 1.12rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  min-height: 48px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn.primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #552a00;
  box-shadow: 0 16px 32px rgba(255, 139, 19, .25);
}

.btn.secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(7, 88, 216, .23);
}

.btn.ghost {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7, 88, 216, .16);
  color: var(--blue-dark);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats span {
  padding: 12px;
  border: 1px solid rgba(7, 88, 216, .13);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.25rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 8px solid rgba(255,255,255,.82);
  transform: rotate(1deg);
}

.floating-card {
  position: absolute;
  right: 22px;
  bottom: -18px;
  max-width: 260px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 42px rgba(9, 31, 84, .22);
  border: 1px solid rgba(255,255,255,.75);
}

.floating-card span,
.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card span {
  font-size: 1.9rem;
}

.floating-card small {
  color: var(--muted);
  margin-top: 4px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
  padding: 14px 0;
  transform: rotate(-1deg);
  box-shadow: 0 14px 36px rgba(7, 53, 127, .22);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 30px;
  font-weight: 950;
  animation: marquee 22s linear infinite;
}

.ticker span {
  color: var(--yellow);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.section-panel,
.video-section,
.adult-section {
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-card {
  padding: 26px;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 210, 28, .38);
  font-size: 1.9rem;
}

.info-card h3,
.character-card h3,
.package-card h3,
.product-card h3,
.store-toolbar h3 {
  margin: 18px 0 8px;
  color: var(--blue-dark);
  letter-spacing: -0.03em;
}

.section-panel,
.video-section,
.adult-section {
  padding: clamp(22px, 4vw, 42px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head p:not(.eyebrow) {
  max-width: 450px;
  margin: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(7, 88, 216, .09);
  color: var(--blue-dark);
  font-weight: 900;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--blue);
  color: var(--white);
}

.filter-row.compact {
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.character-card,
.package-card,
.product-card,
.video-card {
  border: 1px solid rgba(7, 88, 216, .10);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(9, 31, 84, .09);
}

.character-card {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.character-card:hover,
.package-card:hover,
.product-card:hover,
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(9, 31, 84, .14);
}

.character-card img,
.package-card img,
.product-card img,
.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.character-card h3,
.package-card h3,
.product-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 210, 28, .36);
  color: #784200;
  font-size: .82rem;
  font-weight: 900;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(7, 53, 127, .94), rgba(7, 88, 216, .86)),
    url("../assets/truck-turminha.webp") center/cover;
  color: var(--white);
}

.video-copy h2,
.video-copy p:not(.eyebrow) {
  color: var(--white);
}

.video-copy .eyebrow {
  color: var(--yellow);
}

.video-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.video-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-weight: 900;
}

.video-form input {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  outline: none;
}

.video-form input:focus {
  border-color: var(--yellow);
}

.form-note {
  font-size: .88rem;
  color: rgba(255,255,255,.74);
}

.video-wall {
  display: grid;
  gap: 16px;
}

.video-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
}

.video-frame,
.placeholder-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  background: #071b43;
}

.placeholder-video {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.placeholder-video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.placeholder-video span {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 210, 28, .95);
  color: var(--blue-dark);
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.video-card .card-body p {
  margin: 6px 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}

.adult-section {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,223,.84));
}

.adult-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0 28px;
}

.adult-hero p:not(.eyebrow) {
  max-width: 650px;
}

.store-area.locked .store-toolbar,
.store-area.locked .product-grid {
  filter: blur(4px);
  opacity: .45;
  pointer-events: none;
  user-select: none;
}

.store-area.unlocked .store-toolbar,
.store-area.unlocked .product-grid {
  animation: reveal .35s ease both;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.store-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.store-toolbar h3,
.store-toolbar p {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card p {
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 950;
}

.add-btn {
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--green);
  font-size: 1.3rem;
  font-weight: 950;
  cursor: pointer;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 94vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  box-shadow: -18px 0 60px rgba(0,0,0,.22);
  transform: translateX(105%);
  transition: transform .28s ease;
  z-index: 900;
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(7, 88, 216, .12);
  padding-bottom: 14px;
}

.cart-header h2 {
  margin: 0;
  color: var(--blue-dark);
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(7, 88, 216, .1);
  color: var(--blue-dark);
  font-size: 1.6rem;
  font-weight: 950;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 0;
}

.empty-cart {
  padding: 30px 18px;
  border: 2px dashed rgba(7, 88, 216, .22);
  border-radius: 20px;
  text-align: center;
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 88, 216, .1);
}

.cart-line img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-line h4,
.cart-line p {
  margin: 0;
}

.cart-line p {
  color: var(--muted);
  font-size: .9rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-controls button {
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 210, 28, .28);
  color: var(--blue-dark);
}

.cart-total strong {
  font-size: 1.35rem;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(4, 17, 47, .52);
}

.media-modal {
  width: min(980px, calc(100% - 32px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.media-modal::backdrop {
  background: rgba(4, 17, 47, .68);
  backdrop-filter: blur(5px);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
  background: rgba(255,255,255,.9);
}

.modal-shell {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.modal-shell img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #071b43;
}

.modal-info {
  padding: 18px 22px 22px;
}

.modal-info h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.55rem;
}

.modal-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  width: min(var(--max), calc(100% - 28px));
  margin: 48px auto 30px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-radius: 24px;
  background: var(--blue-dark);
  color: var(--white);
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
}

.footer a {
  color: var(--yellow);
  font-weight: 900;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1200;
  max-width: min(520px, calc(100% - 28px));
  transform: translate(-50%, 20px);
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero,
  .video-section {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .cards-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .adult-hero,
  .store-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a,
  .portal-btn,
  .cart-btn {
    text-align: left;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 720px) {
  .entry-actions,
  .intro-grid,
  .cards-grid,
  .gallery-grid,
  .product-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .entry-card {
    max-height: 94vh;
    overflow: auto;
  }

  .section {
    margin: 42px auto;
  }

  .hero h2,
  .section-head h2,
  .video-copy h2,
  .adult-hero h2 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .floating-card {
    position: static;
    margin: -18px 18px 0;
  }

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

  .choice-card {
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
