:root {
  --bg: #070707;
  --bg2: #0e0e0e;
  --bg3: #161616;
  --red: #e10600;
  --red2: #ff2d22;
  --ink: #f4f4f4;
  --mute: #9a9a9a;
  --line: rgba(225, 6, 0, 0.32);
  --display: "Exo 2", sans-serif;
  --body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
em { font-style: normal; color: var(--red); }

.shell { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(225,6,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,6,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
}

.cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none; z-index: 2; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(225,6,0,0.14), transparent 70%);
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  body.is-pointer .cursor-glow { opacity: 1; }
}

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 40; padding: 0.85rem 0;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
}
.nav.is-on {
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.nav__brand img { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; }
.nav__brand span {
  font-family: var(--display); font-weight: 800; letter-spacing: .08em; font-size: .95rem;
}
.nav__menu { display: none; gap: 1.6rem; }
.nav__menu a { color: var(--mute); font-weight: 500; font-size: .92rem; }
.nav__menu a:hover { color: #fff; }
.nav__wa {
  display: inline-flex; padding: .62rem 1.1rem; background: var(--red); color: #fff;
  font-weight: 700; font-size: .86rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.nav__wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(225,6,0,.4); }
.nav__burger { display: grid; gap: 6px; padding: .4rem; z-index: 2; }
.nav__burger i { display: block; width: 22px; height: 2px; background: #fff; }
@media (min-width: 880px) {
  .nav__menu { display: flex; }
  .nav__burger { display: none; }
}
.nav__sheet {
  display: none; position: absolute; inset: 100% 0 auto; padding: .5rem 1.25rem 1.4rem;
  background: rgba(10,10,10,.97); border-bottom: 1px solid var(--line);
}
.nav__sheet.is-open { display: block; }
.nav__sheet a {
  display: block; padding: .85rem 0; color: var(--mute);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* HERO */
.hero {
  position: relative; z-index: 1; min-height: 100svh;
  display: grid; align-items: center; padding: 7.5rem 0 4rem; overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; opacity: .55; pointer-events: none; }
.hero__wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(225,6,0,.22), transparent 60%),
    linear-gradient(105deg, rgba(7,7,7,.94) 0%, rgba(7,7,7,.55) 48%, rgba(7,7,7,.25) 100%),
    linear-gradient(to top, #070707 0%, transparent 40%);
}
.hero__layout {
  position: relative; z-index: 2;
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) {
  .hero__layout { grid-template-columns: 1.1fr .9fr; }
}
.hero__kicker {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red2); font-weight: 600; margin-bottom: 1.1rem;
  opacity: 0; animation: up .8s var(--ease) .05s forwards;
}
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 7rem); line-height: .88;
  letter-spacing: -.03em; margin-bottom: 1.1rem;
}
.hero__word { display: block; opacity: 0; animation: brand .95s var(--ease) forwards; }
.hero__word--red { color: var(--red); animation-delay: .1s; }
.hero__word:nth-child(2) { animation-delay: .22s; }
.hero__tag {
  font-family: var(--display); font-weight: 650; font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  margin-bottom: .7rem; max-width: 18ch;
  opacity: 0; animation: up .85s var(--ease) .4s forwards;
}
.hero__lead {
  color: var(--mute); font-weight: 300; font-size: 1.05rem; max-width: 34rem; margin-bottom: 1.7rem;
  opacity: 0; animation: up .85s var(--ease) .5s forwards;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: .8rem;
  opacity: 0; animation: up .85s var(--ease) .6s forwards;
}
.hero__mark {
  display: none; place-items: center; position: relative;
  opacity: 0; animation: up 1s var(--ease) .35s forwards;
}
@media (min-width: 960px) { .hero__mark { display: grid; } }
.hero__mark img {
  width: min(300px, 70%); position: relative; z-index: 1; border-radius: 50%;
  filter: drop-shadow(0 24px 60px rgba(225,6,0,.35));
  animation: float 5.5s ease-in-out infinite;
  object-fit: contain;
}
.hero__orbit {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(225,6,0,.25);
  box-shadow: 0 0 80px rgba(225,6,0,.12), inset 0 0 60px rgba(225,6,0,.06);
  animation: spin 28s linear infinite;
}
.hero__orbit::before {
  content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); top: 12%; left: 50%; box-shadow: 0 0 16px var(--red);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .95rem 1.4rem; font-weight: 700; font-size: .95rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s, color .25s;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(225,6,0,.4); }
.btn--line { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.btn--line:hover { border-color: var(--red); color: var(--red2); }
.btn--full { width: 100%; }
.btn--lg { padding: 1.1rem 1.75rem; }

/* TICKER */
.ticker {
  position: relative; z-index: 1; overflow: hidden;
  border-block: 1px solid var(--line); background: var(--bg2); padding: .9rem 0;
}
.ticker__track {
  display: flex; gap: 2.2rem; width: max-content;
  animation: slide 30s linear infinite;
  font-family: var(--display); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; font-size: .86rem; color: var(--red);
}
.ticker__track span:nth-child(even) { color: var(--mute); }

/* BLOCKS */
.block { position: relative; z-index: 1; padding: 5.2rem 0; }
.block--dark { background: var(--bg2); }
.block__head { margin-bottom: 2.4rem; }
.eyebrow {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: .7rem;
}
.block h2, .finale h2, .panel h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.05;
  letter-spacing: -.03em; margin-bottom: .8rem;
}
.lede { color: var(--mute); font-weight: 300; font-size: 1.05rem; max-width: 36rem; }

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* PRICES */
.price-grid { display: grid; gap: 1.15rem; }
@media (min-width: 860px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price {
  position: relative; display: flex; flex-direction: column; gap: .85rem;
  padding: 1.7rem 1.4rem 1.4rem; border-radius: 16px;
  background: linear-gradient(165deg, #1a1a1a, #0c0c0c);
  border: 1px solid rgba(225,6,0,.16);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.price:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.55); }
.price--hot {
  border-color: var(--red);
  background: linear-gradient(165deg, #2b1010, #120808);
  box-shadow: 0 22px 50px rgba(225,6,0,.16);
}
.price__flag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--red); color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: .28rem .55rem; border-radius: 999px;
}
.price__name { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.price__mb {
  font-family: var(--display); font-weight: 800; font-size: 2.7rem; line-height: 1; color: var(--red);
}
.price__mb span { font-size: .4em; color: var(--mute); margin-left: .15rem; }
.price__rs { font-family: var(--display); font-weight: 800; font-size: 1.9rem; }
.price__rs b { font-size: 1.15em; }
.price__rs sup { font-size: .55em; }
.price__rs small { font-size: .4em; color: var(--mute); margin-left: .2rem; font-weight: 600; }
.price ul { list-style: none; color: var(--mute); font-size: .92rem; flex: 1; margin: .3rem 0 .6rem; }
.price li {
  padding: .4rem 0 .4rem 1rem; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.price li::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 2px;
  background: var(--red); transform: translateY(-50%);
}
.note { margin-top: 1.25rem; font-size: .82rem; color: var(--mute); opacity: .85; }

/* COVERAGE */
.split { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1.1fr .9fr; } }
.addr { font-style: normal; color: var(--mute); line-height: 1.7; margin-top: 1.2rem; }
.bairros {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem;
}
.bairros li {
  padding: 1.4rem 1rem; text-align: center; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(225,6,0,.05);
  font-family: var(--display); font-weight: 800; font-size: 1.2rem;
}

/* HOURS PANEL */
.panel {
  display: grid; gap: 1.6rem; align-items: center;
  padding: 2rem; border-radius: 18px; border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(225,6,0,.14), transparent 50%),
    var(--bg2);
}
@media (min-width: 800px) { .panel { grid-template-columns: 1.15fr .85fr; } }
.contacts { display: grid; gap: .7rem; }
.contacts a {
  display: block; padding: .85rem 1rem; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08); font-weight: 600;
  transition: border-color .25s, color .25s;
}
.contacts a:hover { border-color: var(--red); color: var(--red2); }

/* FINALE */
.finale {
  position: relative; z-index: 1; padding: 5.5rem 0; text-align: center; overflow: hidden;
  background: var(--bg2);
}
.finale__glow {
  position: absolute; width: 55vw; height: 55vw; max-width: 560px; max-height: 560px;
  left: 50%; top: 42%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(225,6,0,.25), transparent 65%);
  animation: pulse 6s ease-in-out infinite; pointer-events: none;
}
.finale__inner { position: relative; z-index: 1; }
.finale h2 { margin-inline: auto; max-width: 10ch; }
.finale .lede { margin-inline: auto; margin-bottom: 1.7rem; }
.finale__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

/* FOOT */
.foot {
  position: relative; z-index: 1; border-top: 1px solid var(--line);
  padding: 1.8rem 0; background: #050505;
}
.foot__row {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  color: var(--mute); font-size: .88rem;
}
.foot__brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--display); font-weight: 700; font-size: .85rem; letter-spacing: .04em; }
.foot__brand img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.foot__links { display: flex; gap: 1.1rem; font-weight: 600; color: var(--red); }

.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.35);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.06); }
.fab svg { width: 28px; height: 28px; }

@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes brand {
  from { opacity: 0; transform: translateY(42px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .cursor-glow { display: none; }
}
