/* ═══════════════ BRAVE & FREE MIAMI — Miami Neon Nightlife ═══════════════ */
:root {
  --ink: #0c0714;          /* deep purple-black */
  --ink-2: #140b22;
  --purple: #8e44ec;       /* wrap purple */
  --purple-deep: #5b21b6;
  --teal: #34e3c2;         /* wrap teal */
  --orange: #ff9f1c;
  --hot: #ff3d6e;
  --cream: #f6f1e7;
  --txt: #e9e4f2;
  --txt-dim: #a99fc0;
  --font-display: 'Anton', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-body: 'Familjen Grotesk', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* grain overlay */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ buttons ═══ */
::selection { background: var(--purple); color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .1em;
  padding: 1.05rem 2.1rem; border-radius: 2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: #1fae54; color: #fff; }
.btn-wa:hover { background: #25c560; }
.btn-wa.small { padding: .7rem 1.3rem; font-size: .85rem; }
.btn-ghost { border: 2px solid var(--teal); color: var(--teal); }
.btn-ghost:hover { background: rgba(52,227,194,.1); box-shadow: 0 8px 30px rgba(52,227,194,.2); }
.btn-solid { background: var(--purple); color: #fff; }
.btn-solid:hover { background: #9d5cf0; box-shadow: 0 8px 30px rgba(142,68,236,.4); }

/* ═══ nav ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem 2rem;
  background: linear-gradient(to bottom, rgba(12,7,20,.92), rgba(12,7,20,.75));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(142,68,236,.25);
}
.nav-brand { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.nav-logo { height: 44px; }
.brand-tag { font-family: var(--font-display); font-size: .55rem; letter-spacing: .45em; color: var(--teal); margin-top: 3px; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em;
  color: var(--txt-dim); transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-nav { padding: .6rem 1.2rem; font-size: .8rem; }
.lang-switch { display: flex; border: 1px solid rgba(169,159,192,.35); border-radius: 4px; overflow: hidden; }
.lang-switch button {
  background: none; border: none; color: var(--txt-dim); cursor: pointer;
  font-family: var(--font-display); font-size: .7rem; letter-spacing: .05em;
  padding: .45rem .6rem; transition: all .2s;
}
.lang-switch button.active { background: var(--teal); color: var(--ink); }

/* ═══ hero ═══ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(52,227,194,.12), transparent 60%),
    linear-gradient(to top, var(--ink) 4%, rgba(12,7,20,.88) 32%, rgba(12,7,20,.25) 65%, rgba(12,7,20,.55) 100%);
}
.hero-inner { position: relative; padding: 0 2rem 5.5rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-banner {
  position: relative; display: inline-flex; align-items: stretch; margin-bottom: 1.8rem;
  background: rgba(12,7,20,.74); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(246,241,231,.22); border-radius: 2px; overflow: hidden;
  box-shadow: 0 14px 44px rgba(12,7,20,.55);
  transform: rotate(-1.2deg);
  transition: border-color .25s, transform .25s;
}
.hero-banner:hover { border-color: var(--teal); transform: rotate(-1.2deg) translateY(-2px); }
.hb-flag { display: flex; flex-direction: column; width: 12px; }
.hb-flag i { flex: 1; }
.hb-flag i:nth-child(1) { background: #b3273a; }
.hb-flag i:nth-child(2) { background: var(--cream); }
.hb-flag i:nth-child(3) { background: #2e4a9e; }
.hb-main { display: flex; flex-direction: column; justify-content: center; padding: .55rem 1.2rem .6rem; }
.hb-main b {
  font-family: var(--font-display); font-weight: 400; font-size: 1.05rem;
  letter-spacing: .12em; color: var(--cream); line-height: 1.15;
}
.hb-main em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 1.05rem; color: var(--teal); letter-spacing: .01em; line-height: 1.2;
}
.hb-cta {
  display: flex; align-items: center; padding: 0 1.15rem; margin: .5rem 0;
  border-left: 1px dashed rgba(246,241,231,.35);
  font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em;
  color: var(--orange); white-space: nowrap;
}
@media (max-width: 560px) {
  .hb-cta { display: none; }
  .hb-main b { font-size: .92rem; }
  .hb-main em { font-size: .95rem; }
}
.hero-title { font-family: var(--font-display); font-weight: 400; line-height: .95; }
.hero-title .line { display: block; font-size: clamp(3rem, 9vw, 7.5rem); letter-spacing: .01em; color: var(--cream); text-shadow: 0 2px 30px rgba(12,7,20,.85); }
.hero-title .accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  text-transform: lowercase; letter-spacing: 0;
  color: var(--teal); font-size: clamp(3.2rem, 9.5vw, 8rem);
}
.hero-sub { max-width: 540px; color: var(--txt-dim); font-size: 1.15rem; margin: 1.4rem 0 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-meta span { font-family: var(--font-display); font-size: .75rem; letter-spacing: .18em; color: var(--teal); opacity: .85; }

/* ═══ marquee ═══ */
.marquee {
  background: linear-gradient(90deg, var(--purple-deep), var(--purple), var(--purple-deep));
  border-top: 1px solid rgba(52,227,194,.4); border-bottom: 1px solid rgba(52,227,194,.4);
  overflow: hidden; padding: .85rem 0; transform: rotate(-1.2deg) scale(1.02); margin: -1rem 0 0;
  position: relative; z-index: 3;
}
.marquee-track { display: flex; white-space: nowrap; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: 1rem; letter-spacing: .2em; color: var(--cream); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ═══ sections common ═══ */
section { padding: 8.5rem 2rem; max-width: 1240px; margin: 0 auto; }
.section-head { margin-bottom: 4rem; }
.kicker {
  font-family: var(--font-body); font-weight: 600; font-size: .85rem;
  letter-spacing: .3em; color: var(--txt-dim); margin-bottom: 1.1rem; text-transform: uppercase;
}
.kicker::before { content: '( '; color: var(--teal); letter-spacing: 0; }
.kicker::after { content: ' )'; color: var(--teal); letter-spacing: 0; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 400; line-height: .95;
  font-size: clamp(2.6rem, 6vw, 5rem); color: var(--cream);
}
.section-sub { max-width: 560px; color: var(--txt-dim); margin-top: 1.4rem; font-size: 1.1rem; }

/* ═══ world cup ═══ */
.worldcup { position: relative; }
.worldcup::before {
  content: ''; position: absolute; top: 10%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(142,68,236,.16), transparent 70%); pointer-events: none;
}
.match-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.2rem; }
.match {
  position: relative; background: linear-gradient(165deg, rgba(26,16,44,.9), rgba(12,7,20,.95));
  border: 1px solid rgba(246,241,231,.09);
  border-radius: 16px; padding: 1.8rem; display: flex; flex-direction: column; gap: .6rem;
  backdrop-filter: blur(6px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.match:hover { transform: translateY(-5px); border-color: var(--teal); box-shadow: 0 16px 44px rgba(52,227,194,.12); }
.m-date { font-family: var(--font-display); color: var(--txt-dim); font-size: .85rem; letter-spacing: .15em; }
.m-date b { display: block; font-size: 3rem; color: var(--teal); line-height: 1; font-weight: 400; }
.m-teams { font-weight: 700; font-size: 1.06rem; color: var(--cream); }
.m-note { color: var(--txt-dim); font-size: .92rem; flex: 1; }
.m-cta { font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em; color: var(--orange); transition: color .2s, letter-spacing .2s; }
.m-cta:hover { color: var(--teal); letter-spacing: .18em; }
.match.hot { border: 2px solid transparent; background:
  linear-gradient(var(--ink-2), var(--ink-2)) padding-box,
  linear-gradient(120deg, #009c3b, #ffdf00, var(--hot)) border-box; }
.match.hot .m-date b { color: #ffdf00; }
.m-flag {
  position: absolute; top: -13px; right: 14px; transform: rotate(-2deg);
  font-family: var(--font-display); font-size: .65rem; letter-spacing: .12em;
  background: #ffdf00; color: var(--ink); padding: .32rem .7rem; border-radius: 2px;
}
.match.cta-card { justify-content: center; align-items: flex-start; gap: 1.2rem; background: linear-gradient(140deg, rgba(142,68,236,.18), rgba(52,227,194,.08)); }
.cta-card-txt { color: var(--txt); font-size: .98rem; }
.wc-disclaimer { color: var(--txt-dim); opacity: .55; font-size: .78rem; margin-top: 2.2rem; }
.scarcity { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--orange); margin-top: 1.1rem; }

/* ═══ tours: destaque + faixas editoriais ═══ */
.tour-feature {
  display: grid; grid-template-columns: 1.12fr 1fr; min-height: 460px;
  background: linear-gradient(165deg, rgba(26,16,44,.85), var(--ink-2));
  border: 1px solid rgba(246,241,231,.09); border-radius: 20px; overflow: hidden;
  margin-bottom: 1rem;
}
.tf-media { overflow: hidden; }
.tf-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform .6s ease; }
.tour-feature:hover .tf-media img { transform: scale(1.04); }
.tf-body { padding: 3.2rem 3.4rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.tour-tag {
  display: inline-block; transform: rotate(-2deg); margin-bottom: 1.3rem;
  font-family: var(--font-display); font-size: .68rem; letter-spacing: .12em;
  background: var(--teal); color: var(--ink); padding: .35rem .75rem; border-radius: 2px;
}
.tf-body h3, .tr-body h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: .02em; color: var(--cream); }
.tf-body h3 { font-size: clamp(2rem, 3.6vw, 3.2rem); line-height: 1; }
.tf-line { font-family: var(--font-serif); font-style: italic; font-size: 1.45rem; color: var(--teal); margin: .5rem 0 1rem; }
.tf-desc { color: var(--txt-dim); max-width: 46ch; }
.tf-body .btn { margin-top: 1.8rem; }

.tour-row {
  display: grid; grid-template-columns: 390px 1fr; gap: 3.2rem; align-items: center;
  padding: 2.8rem 0; border-bottom: 1px solid rgba(246,241,231,.09);
}
.tour-row:last-of-type { border-bottom: none; }
.tour-row.alt .tr-media { order: 2; }
.tr-media { overflow: hidden; border-radius: 14px; border: 1px solid rgba(246,241,231,.09); }
.tr-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .5s ease; }
.tour-row:hover .tr-media img { transform: scale(1.05); }
.tr-type {
  aspect-ratio: 16/10; display: flex; flex-direction: column; justify-content: center;
  padding: 2.4rem 2.6rem; position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 85% 110%, rgba(142,68,236,.32), transparent 65%),
    radial-gradient(ellipse 60% 50% at 8% -10%, rgba(52,227,194,.14), transparent 60%),
    linear-gradient(160deg, #18102a, var(--ink-2));
}
.tr-type-label {
  font-family: var(--font-display); font-size: .78rem; letter-spacing: .3em;
  color: var(--txt-dim); margin-bottom: 1rem;
}
.tr-type-line {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.4rem, 3.6vw, 3.5rem); line-height: 1.08; color: var(--teal);
  text-wrap: balance;
}
.tr-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.tour-link { display: inline-block; margin-top: 1.1rem; font-family: var(--font-display); font-size: .8rem; letter-spacing: .12em; color: #2fe070; }
.tour-link:hover { color: var(--teal); }

/* ═══ experience ═══ */
.experience { position: relative; }
.experience::before {
  content: ''; position: absolute; bottom: 0; left: -12%; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(52,227,194,.1), transparent 70%); pointer-events: none;
}
.exp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.exp-text h2 {
  font-family: var(--font-display); font-weight: 400; line-height: .95;
  font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--cream);
}
.exp-list { list-style: none; margin-top: 2.6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.exp-list li { padding-left: 1.4rem; border-left: 2px solid var(--teal); }
.exp-list b { display: block; font-family: var(--font-display); font-weight: 400; letter-spacing: .06em; font-size: 1.1rem; color: var(--cream); }
.exp-list span { color: var(--txt-dim); font-size: .97rem; }
.exp-photos { position: relative; display: flex; flex-direction: column; justify-content: center; }
.exp-photos img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 18px;
  border: 1px solid rgba(246,241,231,.1); box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transform: rotate(-1.6deg);
}

/* ═══ how ═══ */
.how { position: relative; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; counter-reset: step; }
.steps li { background: linear-gradient(165deg, rgba(26,16,44,.8), var(--ink-2)); border: 1px solid rgba(246,241,231,.07); border-radius: 16px; padding: 1.9rem; }
.steps b { font-family: var(--font-serif); font-style: italic; font-size: 2.8rem; font-weight: 400; color: var(--teal); opacity: .75; }
.steps h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; letter-spacing: .04em; color: var(--cream); margin: .6rem 0 .4rem; }
.steps p { color: var(--txt-dim); font-size: .94rem; }

.hero-bg::after, .band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: .11; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══ vibe band (full-bleed) ═══ */
.vibe { padding: 4rem 0; max-width: none; }
.band { position: relative; width: 100vw; height: 58vh; min-height: 420px; overflow: hidden; }
.band > img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.band-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink) 2%, rgba(12,7,20,.78) 22%, rgba(12,7,20,.12) 55%, rgba(12,7,20,.45) 100%);
}
.band-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-width: 1240px; margin: 0 auto; padding: 0 2rem 3.5rem;
}
.band-text h2 {
  font-family: var(--font-display); font-weight: 400; line-height: .95;
  font-size: clamp(2.6rem, 6vw, 5rem); color: var(--cream);
  text-shadow: 0 2px 30px rgba(12,7,20,.85);
}

/* ═══ faq ═══ */
.faq-list { max-width: 760px; }
.faq-list details { border-bottom: 1px solid rgba(169,159,192,.2); padding: 1.2rem 0; }
.faq-list summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 400; font-size: 1.15rem;
  letter-spacing: .04em; color: var(--cream); list-style: none; position: relative; padding-right: 2rem;
}
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--teal); font-size: 1.4rem; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { color: var(--txt-dim); padding-top: .8rem; max-width: 640px; }

/* ═══ final ═══ */
.final { text-align: center; padding-bottom: 5rem; }
.final-logo { max-width: 420px; margin: 0 auto 1rem; }
.final h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 7vw, 5.5rem); color: var(--cream); line-height: .95; }
.final p { color: var(--txt-dim); max-width: 480px; margin: 1.2rem auto 2.2rem; font-size: 1.1rem; }
.final .hero-ctas { justify-content: center; }

/* ═══ footer ═══ */
.footer {
  text-align: center; padding: 4.5rem 2rem 3rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(142,68,236,.5), rgba(52,227,194,.5), transparent) 1;
}
.footer-logo { height: 88px; margin: 0 auto 1.6rem; }
.footer-nav { display: flex; justify-content: center; gap: 2.2rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.footer-nav a { font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em; color: var(--txt-dim); transition: color .2s; }
.footer-nav a:hover { color: var(--teal); }
.footer p { color: var(--txt-dim); opacity: .7; font-size: .85rem; }

/* ═══ whatsapp float ═══ */
.wa-float {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%; background: #1fae54;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 34px rgba(31,174,84,.5);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 34px rgba(31,174,84,.5), 0 0 0 0 rgba(31,174,84,.45); }
  50% { box-shadow: 0 10px 34px rgba(31,174,84,.5), 0 0 0 16px rgba(31,174,84,0); }
}

/* ═══ reveal animations (JS adds .js; sem JS, tudo visível) ═══ */
body.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
body.js .reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .34s; } .d5 { transition-delay: .44s; } .d6 { transition-delay: .54s; }
@media (prefers-reduced-motion: reduce) {
  body.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  .marquee-track { animation-duration: 60s; }
}

/* ═══ responsive ═══ */
@media (max-width: 900px) {
  .hero-veil {
    background:
      radial-gradient(ellipse 80% 60% at 75% 20%, rgba(52,227,194,.10), transparent 60%),
      linear-gradient(to top, var(--ink) 6%, rgba(12,7,20,.94) 40%, rgba(12,7,20,.55) 70%, rgba(12,7,20,.6) 100%);
  }
  .nav { padding: .7rem 1rem; }
  .nav-links { display: none; }
  .hero-inner { padding: 0 1.2rem 4rem; }
  section { padding: 4.5rem 1.2rem; }
  .exp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tour-feature { grid-template-columns: 1fr; min-height: 0; }
  .tf-media img { height: 260px; }
  .tf-body { padding: 2rem 1.6rem 2.4rem; }
  .tour-row, .tour-row.alt { grid-template-columns: 1fr; gap: 1.4rem; padding: 2.2rem 0; }
  .tour-row.alt .tr-media { order: 0; }
  .exp-photos img { width: 100%; }
  .gal-grid .g-wide { height: 260px; }
  .final-logo { max-width: 300px; }
}
@media (max-width: 520px) {
  .brand-tag { display: none; }
  .btn-nav { display: none; }
  .hero-meta { gap: .8rem; flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
}
