﻿:root {
  /* Base do tema (roxo/amarelo) */
  --bg: #2b0b4f;
  /* fundo profundo */
  --bg-deep: #1a062f;
  /* mais profundo */

  /* Superfícies (cards/papel) */
  --card: #fff3cf;
  /* creme */
  --card-soft: #ffe7a3;
  /* creme mais quente */

  /* Texto */
  --ink: #231133;
  /* roxo bem escuro (em vez de preto chapado) */
  --muted: rgba(35, 17, 51, 0.70);

  /* Acentos */
  --accent-purple: #a855f7;
  /* roxo vivo */
  --accent-purple-deep: #6d28d9;
  /* roxo forte */
  --accent-yellow: #fbbf24;
  /* amarelo */
  --accent-yellow-soft: #fff1b8;
  /* amarelo claro */

  /* Mantendo compatibilidade com seus nomes antigos */
  --accent-blue: var(--accent-purple-deep);
  --accent-blue-soft: var(--accent-purple);
  --accent-orange: var(--accent-yellow);

  --radius-lg: 22px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.38);
  --scroll-offset: 120px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  color: var(--ink);
  min-height: 100vh;
  padding-top: 88px;
}

header {
  position: fixed;
  left: 0;
  right: 0;
}

@media (max-width: 700px) {
  body {
    padding-top: 76px;
  }
}

/* Dá folga para âncoras rolarem abaixo do header fixo */
section[id],
.section-frame {
  scroll-margin-top: var(--scroll-offset);
}


main {
  display: block;
}

.hero-layout {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 18px 12px;
  display: grid;
  grid-template-columns: minmax(0, 3.1fr) minmax(0, 2.4fr);
  column-gap: 26px;
  row-gap: 6px;
}

.hero {
  padding-top: 16px;
  position: relative;
}

/* Raios de fundo em azul + amarelo */
.hero-layout::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 75%;
  border-radius: var(--radius-lg);

  background:
    linear-gradient(140deg, rgba(168, 85, 247, 0.55), transparent 50%),
    linear-gradient(200deg, rgba(251, 191, 36, 0.55), transparent 50%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 55%);

  opacity: 0.9;
  z-index: -1;
  filter: blur(1px);
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-logo-main {
  max-width: 260px;
  width: 65%;
  margin-bottom: 12px;
  filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.7));
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #000;
}

.hero-logo-main img {
  display: block;
  width: 100%;
  height: auto;
}

.pill-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(239, 246, 255, 0.96);
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  padding: 4px 14px;
  color: var(--muted);
  margin: 0 auto 12px;
  width: fit-content;
}

.pill-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff, var(--accent-blue-soft));
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.18);
}

h1 {
  font-size: clamp(1.95rem, 2.6vw, 2.5rem);
  line-height: 1.08;
  margin-bottom: 10px;
  text-transform: uppercase;

  color: #fff6d8;

  text-shadow:
    0 2px 0 rgba(0, 0, 0, .35),
    0 10px 26px rgba(0, 0, 0, .55);
}


.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.hero-title .title-text {
  white-space: normal;
}

.hero-title .highlight-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.hero-wordmark-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  animation: floatLogo 6.5s ease-in-out infinite;
}

.hero-wordmark {
  display: block;
  width: clamp(240px, 32vw, 360px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  margin-top: 0;
  object-fit: contain;
  border-radius: 16px;
}

.hero-title .bolt {
  width: clamp(38px, 6vw, 56px);
  height: auto;
}

.hero-title .bolt-small {
  width: clamp(32px, 5vw, 48px);
}

h1 span.highlight {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.14em;

  /* destaque amarelo */
  color: var(--accent-yellow);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .30),
    0 12px 30px rgba(0, 0, 0, .45);
}

.subtitle {
  color: rgba(255, 246, 216, 0.92);
  font-size: 0.96rem;
  max-width: 32rem;
  margin-bottom: 16px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.event-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.event-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(239, 246, 255, 0.96);
}

.price-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  text-align: center;
}

.price-current {
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.05;
  color: #f9fafb;
  padding: 6px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9b5de5, #c026d3);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.55);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.price-label {
  font-size: 0.82rem;
  color: rgba(255, 246, 216, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.price-note {
  color: rgba(255, 246, 216, 0.75);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.hero-cta-row small {
  color: rgba(255, 246, 216, 0.82);
  font-size: 0.82rem;
}

/* faixa de raios SVG animados */
.lightning-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.bolt {
  width: 34px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.45));
  opacity: 0.9;
  animation: boltFloat 2.8s ease-in-out infinite, boltFlash 1.7s ease-in-out infinite;
}

.bolt-small {
  width: 26px;
}

.bolt-blue {
  fill: var(--accent-yellow);
}

.bolt-yellow {
  fill: var(--accent-yellow);
}

.lightning-row svg:nth-child(2) {
  animation-delay: 0.25s;
}

.lightning-row svg:nth-child(3) {
  animation-delay: 0.5s;
}

.spotlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.84rem;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(239, 246, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.18);
  margin-bottom: 18px;
}

.spotlight-icon {
  font-size: 1.4rem;
  color: var(--accent-yellow);
}

.spotlight strong {
  color: var(--accent-blue);
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 0.84rem;
}

.highlights-list li {
  list-style: none;
  padding: 9px 11px;
  border-radius: 14px;
  background: rgba(239, 246, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.highlights-list li span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 700px) {
  .highlights-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-cta-row .btn-primary {
    display: none;
  }
}

/* Card de compra, estilo ingresso */
.card {
  background: radial-gradient(circle at top, var(--card-soft), var(--card));
  border-radius: var(--radius-lg);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
  animation: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-logo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.6);
  margin-bottom: 14px;
  width: 100%;
  background: var(--card);
  aspect-ratio: 723 / 913; /* mesma proporção do abadá preto para alinhar alturas */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sales-closed-banner {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  background: #b91c1c;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  display: block;
}

.sales-closed-note {
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px dashed var(--ink);
  background: var(--card-soft);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.74rem;
}

.stock-sold-out .sales-closed-note {
  display: block;
}

.stock-sold-out #form-abada {
  opacity: 0.5;
  pointer-events: none;
}

.card-logo img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}


.card-note {
  margin-top: -10px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(35, 17, 51, 0.75);
  text-align: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.card-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.lot-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--accent-yellow-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.72rem;
}

.stock-tag {
  color: var(--accent-blue-soft);
  font-weight: 600;
  display: none;
}

.stock-low .stock-tag {
  display: block;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
}

label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

input,
select {
  margin-top: 4px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.2);
  background: #f9fafb;
  color: var(--ink);
  font-size: 0.9rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.7);
}

.form-row-inline {
  display: flex;
  gap: 10px;
}

.form-field {
  flex: 1;
}

.form-field input,
.form-field select {
  width: 100%;
}

.hero-info-block {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.open-event-note {
  display: block;
  padding: 6px 10px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: rgba(255, 246, 216, 0.92);
  box-shadow: none;
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 920px;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.open-event-note .icon {
  font-size: 1.1rem;
}

.open-event-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .form-row-inline {
    flex-direction: column;
  }
}

.checkout-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}

.size-guide-row {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.size-guide-link:hover {
  color: var(--accent-purple-deep);
  filter: brightness(1.05);
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  background: rgba(239, 246, 255, 0.9);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-note .icon {
  font-size: 0.9rem;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.secure-note span.icon {
  font-size: 0.9rem;
}

.btn-buy {
  width: 100%;
  margin-top: 10px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-weight: 900;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.85),
    0 16px 32px rgba(15, 23, 42, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-buy:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.05);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.7);
}

.btn-buy:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.65);
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

.payment-pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: #f9fafb;
}

/* Seções de conteúdo */
.section-frame {
  max-width: 1080px;
  margin: 24px auto;
  padding: 16px 14px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  background: rgba(239, 246, 255, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  margin-top: 14px;
}

.carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-item {
  min-width: 100%;
  padding: 16px;
}

.carousel-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.carousel-nav button {
  pointer-events: all;
  border: 2px solid var(--ink);
  background: var(--card);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.carousel-nav button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.sponsor-card {
  display: grid;
  place-items: center;
  gap: 12px;
}

.sponsor-logo {
  max-width: 260px;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.22));
}

.sponsor-btn {
  padding: 8px 16px;
}

.sponsors-section {
  text-align: left;
  display: grid;
  gap: 14px;
}

.sponsor-featured {
  display: grid;
  gap: 8px;
  margin: 6px auto 10px;
  justify-items: center;
}

.sponsor-label {
  font-size: 0.9rem;
  color: rgba(255, 246, 216, 0.86);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
}

.sponsor-invite {
  color: rgba(255, 246, 216, 0.9);
  font-weight: 600;
  margin-bottom: 6px;
}

.logo-wrap {
  width: 360px;
  height: 220px;
  border-radius: 18px;
  border: 4px solid rgba(0, 0, 0, .72);
  background: rgba(255, 255, 255, .92);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

.logo-wrap-master {
  width: min(520px, 90%);
  height: 240px;
  border-width: 0;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .55);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-wrap-master img {
  object-fit: contain;
  transform: translateY(-6px);
}

.sponsor-featured-logo {
  width: 220px;
  min-height: 150px;
  height: auto;
  border-radius: 16px;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle at 30% 30%, #fff, #e5e7eb);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
}

.sponsor-featured-logo-wide {
  width: clamp(240px, 48vw, 560px);
  min-height: 120px;
  height: 200px;
  padding: 6px 18px;
  
}

.sponsor-featured-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-featured-logo-wide img {
  width: auto;
  height: 240px;
  transform: translateY(-25px);
}

.sponsor-featured-name {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff6d8;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.sponsors-carousel,
.sponsors-static {
  background: rgba(239, 246, 255, 0.95);
  border: 2px solid rgba(15, 23, 42, 0.18);
  border-radius: 24px;
  padding: 10px 12px 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.sponsors-carousel .carousel-track {
  align-items: center;
}

.sponsors-carousel .carousel-item {
  padding: 8px 10px 12px;
}

.sponsor-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 0;
  justify-items: center;
}

.sponsor-tile {
  display: grid;
  gap: 6px;
  place-items: center;
}

.sponsor-logo-box {
  width: 190px;
  height: 170px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.sponsor-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.sponsor-logo-plain {
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 16px;
}

.sponsor-logo-plain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.sponsor-logo-cabana img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.sponsor-tile-main .sponsor-logo-featured {
  width: 180px;
  height: 180px;
}

.sponsor-tile-main .sponsor-logo-featured img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-logo-teacher img {
  transform: scale(1.50);
}

.sponsor-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-name {
  display: none;
}

.sponsor-cta {
  margin-top: 10px;
  display: grid;
  place-items: center;
}

.attraction-cta {
  margin-top: 16px;
  display: grid;
  place-items: center;
}

.sponsor-featured-logo img:not([style*='none']) ~ .sponsor-placeholder,
.sponsor-logo-box img:not([style*='none']) ~ .sponsor-placeholder {
  display: none;
}

.sponsors-mobile {
  display: none;
}

@media (max-width: 900px) {
}

@media (max-width: 700px) {
  .sponsors-desktop {
    display: none;
  }
  .sponsors-mobile {
    display: block;
  }
  .sponsor-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsor-logo-box {
    width: 150px;
    height: 140px;
  }
  .logo-wrap-master {
    width: 100%;
    height: 260px;
  }
}

@media (max-width: 520px) {
  .logo-wrap {
    width: 300px;
    height: 190px;
  }

  .logo-wrap-master {
    width: min(320px, 96%);
    height: 200px;
  }
}

.attraction-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 320px auto;
  column-gap: 16px;
  row-gap: 8px;
  align-items: stretch;
}

.attraction-info,
.attraction-video {
  min-height: 0;
  height: 100%;
  max-height: 340px;
}

.attraction-video {
  display: grid;
  place-items: center;
  background: rgba(239, 246, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  padding: 10px;
}

.attraction-info {
  background: rgba(239, 246, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  padding: 14px 30px;
  display: grid;
  gap: 8px;
  text-align: left;
  align-items: start;
  grid-template-rows: auto auto 1fr;
  height: 100%;
  overflow: auto;
}

.attraction-logo {
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.25));
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.danones-info .attraction-logo {
  margin-top: 40px;
}

.attraction-logo.logo-rounded {
  width: 120px;
  height: 120px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 16px;
  background: #000000;
  border: 1px solid rgba(15, 23, 42, 0.14);
  padding: 8px;
  box-sizing: border-box;
}

.attraction-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-align: center;
}

.attraction-info p {
  color: var(--muted);
  font-size: 0.92rem;
}

.attraction-video iframe,
.attraction-video img {
  width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 260px;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  background: #0b1020;
  object-fit: contain;
}

.band-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  min-height: 0;
}

.band-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  min-width: 170px;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.40);
  color: #fff6d8;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.band-socials a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.band-socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

@media (max-width: 540px) {
  .band-socials {
    min-height: auto;
    gap: 12px;
  }

  .band-socials a {
    min-width: 0;
    flex: 1 1 140px;
  }
}

.video-thumb {
  display: block;
  position: relative;
  min-height: 240px;
  border: 2px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  background: #000;
  padding: 0;
  cursor: pointer;
  appearance: none;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

@media (max-width: 800px) {
  .attraction-slide {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .attraction-info,
  .attraction-video {
    min-height: 0;
    max-height: none;
  }

  .attraction-video iframe,
  .attraction-video img {
    min-height: 200px;
  }
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.local-photo {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.local-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.local-photo {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.photo-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.65);
  z-index: 50;
  padding: 24px;
  box-sizing: border-box;
  overflow: auto;
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal-content {
  position: relative;
  max-width: min(90vw, 1200px);
  max-height: calc(100vh - 120px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  background: #000;
  box-sizing: border-box;
}

.photo-modal img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  display: block;
  background: #000;
}

.photo-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
}

.photo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
}

.photo-modal-nav.prev {
  left: 10px;
}

.photo-modal-nav.next {
  right: 10px;
}

.local-cta {
  margin-top: 12px;
  display: grid;
  place-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff6d8;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  box-shadow: none;
  letter-spacing: 0.04em;
}

.social-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.local-social-text {
  color: rgba(255, 246, 216, 0.92);
  font-weight: 700;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .local-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.section::before {
  content: "";
  position: absolute;
  inset: 10px 10px auto;
  height: 95%;
  border-radius: var(--radius-lg);

  background:
    linear-gradient(140deg, rgba(168, 85, 247, 0.55), transparent 25%),
    linear-gradient(200deg, rgba(251, 191, 36, 0.55), transparent 35%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 25%);

  opacity: 0.9;
  z-index: -1;
  filter: blur(1px);
}

.section h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: #fff6d8;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 10px 26px rgba(0, 0, 0, 0.55);
}

.section > p {
  font-size: 0.95rem;
  color: rgba(255, 246, 216, 0.92);
  max-width: 40rem;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.grid-retirada {
  align-items: stretch;
  column-gap: 8px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.retirada-card {
  display: grid;
  gap: 12px;
}

.retirada-card ul {
  margin: 0;
}

.retirada-section + .retirada-section {
  padding-top: 10px;
  border-top: 1px dashed rgba(15, 23, 42, 0.18);
}

.map-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 240px;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.info-card {
  background: rgba(239, 246, 255, 0.96);
  border-radius: 18px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  font-size: 0.86rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.faq-item {
  cursor: pointer;
}

.faq-item summary {
  list-style: none;
  font-size: 0.98rem;
  color: var(--accent-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-answer {
  margin-top: 6px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

@media (min-width: 701px) {
  .faq-item {
    cursor: default;
  }

  .faq-item summary {
    cursor: default;
    pointer-events: none;
  }

  .faq-item summary::after {
    content: '';
  }

  .faq-item:not([open]) > :not(summary) {
    display: block;
  }

  .faq-item > .faq-answer,
  .faq-item:not([open]) > .faq-answer {
    display: block !important;
    margin-top: 6px;
  }
}

.info-card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: var(--accent-blue);
}

.info-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.info-card li {
  margin-bottom: 4px;
}

/* Animações */
@keyframes skyShift {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 0%;
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes boltFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes boltFlash {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}
