/* ===========================
   OXTE EN QUE MASSA — KITS DE FESTA
   Dark Premium | Vermelho + Amarelo + Teal
   =========================== */

:root {
  --red:        #D42B2B;
  --red-dark:   #B01F1F;
  --yellow:     #F5A623;
  --yellow-dark:#D4880A;
  --teal:       #2A9D8F;

  --bg:         #0D0D11;
  --bg2:        #13131A;
  --bg3:        #1A1A24;
  --surface:    #1E1E2A;
  --surface2:   #252535;
  --border:     rgba(255,255,255,.07);
  --border2:    rgba(255,255,255,.13);

  --white:      #FFFFFF;
  --text:       #EAEAF4;
  --text-muted: #8888A8;
  --text-dim:   #50506A;

  --shadow-sm:  0 2px 12px rgba(0,0,0,.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.65);
  --glow-red:   0 0 40px rgba(212,43,43,.2);
  --glow-yellow:0 0 40px rgba(245,166,35,.15);

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 99px;
  font-family: 'Nunito', sans-serif; font-size: .95rem; font-weight: 800;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.15rem; }
.btn-primary {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 20px rgba(212,43,43,.4);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,43,43,.5); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--red); color: var(--white);
  text-align: center; padding: 9px 24px;
  font-size: .82rem; font-weight: 800;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar-sep { opacity: .5; }
.topbar i { color: #a8ffce; }

/* ===== NAVBAR ===== */
.header {
  position: fixed; top: 36px; left: 0; width: 100%; z-index: 1000;
  background: rgba(13,13,17,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { top: 0; }
.navbar {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 46px; width: 46px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 2px rgba(212,43,43,.35), var(--glow-red);
  transition: var(--transition);
}
.logo-img:hover { transform: rotate(-5deg) scale(1.08); }
.nav-brand { display: flex; flex-direction: column; }
.brand-name { font-size: .95rem; font-weight: 900; color: var(--white); line-height: 1.2; }
.brand-sub  { font-size: .7rem; color: var(--text-muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 99px;
  font-weight: 700; font-size: .88rem; color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--surface2); }
.nav-cta { font-size: .85rem; padding: 10px 20px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text); border-radius: 99px; transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 140px 24px 80px;
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.g1 { width: 500px; height: 500px; background: rgba(212,43,43,.1); top: -100px; right: -80px; }
.g2 { width: 350px; height: 350px; background: rgba(245,166,35,.07); bottom: -60px; left: -60px; }
.g3 { width: 250px; height: 250px; background: rgba(42,157,143,.06); top: 40%; left: 35%; }

.hero-content { max-width: 580px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.1); color: var(--yellow);
  border: 1px solid rgba(245,166,35,.22);
  padding: 7px 16px; border-radius: 99px;
  font-size: .8rem; font-weight: 800; margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 6px var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 900; line-height: 1.12;
  color: var(--white); margin-bottom: 20px;
}
.highlight { color: var(--red); }
.hero-desc {
  font-size: 1.08rem; color: var(--text-muted); font-weight: 600;
  margin-bottom: 28px; line-height: 1.75; max-width: 500px;
}
.hero-desc strong { color: var(--white); }
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px; padding: 14px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); width: fit-content;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 800; color: var(--text-muted); }
.trust-item i { color: var(--yellow); font-size: .78rem; }
.trust-divider { width: 1px; height: 28px; background: var(--border2); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex; align-items: center;
  justify-content: center; z-index: 2; flex-shrink: 0;
}
.hero-img-wrap {
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border2);
  box-shadow: var(--shadow-lg), var(--glow-red);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; animation: float 5s ease-in-out infinite;
}
.hero-logo-big { width: 260px; height: 260px; object-fit: cover; border-radius: 50%; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-float {
  position: absolute;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 9px 15px;
  font-size: .8rem; font-weight: 800; color: var(--text);
  box-shadow: var(--shadow-md); white-space: nowrap;
  animation: float 5s ease-in-out infinite;
}
.f1 { top: 5px;  left: -90px;  animation-delay: .5s;  border-left: 3px solid var(--red); }
.f2 { top: 38%;  right: -95px; animation-delay: 1s;   border-left: 3px solid var(--teal); }
.f3 { bottom: 10px; left: -75px; animation-delay: 1.5s; border-left: 3px solid var(--yellow); }
.f4 { bottom: 28%; right: -90px; animation-delay: 2s; border-left: 3px solid #25D366; }

/* ===== MARQUEE ===== */
.marquee-wrap { background: var(--red); padding: 12px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 28px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span { color: rgba(255,255,255,.9); font-weight: 800; font-size: .9rem; white-space: nowrap; }
.marquee-track .dot { opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(212,43,43,.15); color: var(--red);
  border: 1px solid rgba(212,43,43,.22);
  padding: 6px 18px; border-radius: 99px;
  font-size: .75rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 900; line-height: 1.2;
  color: var(--white); margin-bottom: 14px;
}
.section-desc { color: var(--text-muted); font-size: 1rem; font-weight: 600; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== PROBLEMA / SOLUÇÃO ===== */
.problem-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-grid {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.problem-col {
  flex: 1; min-width: 280px; max-width: 420px;
  padding: 36px 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.problem-col.pain { background: rgba(212,43,43,.06); border-color: rgba(212,43,43,.15); }
.problem-col.solution { background: rgba(37,211,102,.06); border-color: rgba(37,211,102,.15); }
.col-icon { font-size: 2rem; margin-bottom: 14px; }
.problem-col.pain .col-icon { color: #ff6b6b; }
.problem-col.solution .col-icon { color: #25D366; }
.problem-col h3 { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 20px; }
.problem-col ul { display: flex; flex-direction: column; gap: 12px; }
.problem-col li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 700; color: var(--text-muted);
}
.problem-col.pain li i { color: #ff6b6b; font-size: .85rem; }
.problem-col.solution li i { color: #25D366; font-size: .85rem; }
.problem-col.solution li { color: var(--text); }
.problem-arrow {
  font-size: 2rem; color: var(--yellow);
  flex-shrink: 0;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(6px); opacity: .6; }
}

/* ===== KITS SECTION ===== */
.kits-section { background: var(--bg3); }
.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  align-items: start;
}
.kit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.kit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border2);
}

/* Kit Destaque */
.kit-featured {
  background: linear-gradient(160deg, #1e1e2e 0%, #1a1a28 100%);
  border: 2px solid var(--red);
  box-shadow: 0 0 0 1px rgba(212,43,43,.15), var(--glow-red);
  transform: scale(1.03);
}
.kit-featured:hover { transform: scale(1.03) translateY(-6px); }
.kit-popular-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  padding: 6px 22px; border-radius: 0 0 14px 14px;
  font-size: .75rem; font-weight: 900; letter-spacing: .04em;
  white-space: nowrap;
}

/* Kit Premium */
.kit-premium {
  background: linear-gradient(160deg, #1e1b2e 0%, #18152a 100%);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 1px rgba(245,166,35,.12), var(--glow-yellow);
}
.kit-premium-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: #111;
  padding: 6px 22px; border-radius: 0 0 14px 14px;
  font-size: .75rem; font-weight: 900; letter-spacing: .04em;
  white-space: nowrap;
}

.kit-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.kit-featured .kit-header,
.kit-premium .kit-header { padding-top: 44px; }
.kit-emoji { font-size: 2.6rem; margin-bottom: 10px; }
.kit-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  margin-bottom: 8px;
}
.kit-people {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 99px;
  font-size: .8rem; color: var(--text-muted); font-weight: 700;
}
.kit-featured .kit-people { background: rgba(212,43,43,.12); border-color: rgba(212,43,43,.2); color: #ff9999; }
.kit-premium .kit-people  { background: rgba(245,166,35,.1);  border-color: rgba(245,166,35,.2); color: var(--yellow); }
.kit-people strong { color: var(--white); }
.kit-people i { color: var(--teal); }

.kit-body { padding: 24px 28px; flex: 1; }
.kit-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.kit-items li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.kit-featured .kit-items li { background: rgba(212,43,43,.05); border-color: rgba(212,43,43,.1); }
.kit-premium .kit-items li  { background: rgba(245,166,35,.05); border-color: rgba(245,166,35,.1); }
.kit-item-icon { font-size: 1.6rem; flex-shrink: 0; }
.kit-items li div { display: flex; flex-direction: column; }
.kit-items strong { font-size: .9rem; color: var(--white); font-weight: 900; }
.kit-items span   { font-size: .75rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.kit-calc {
  display: flex; align-items: center; gap: 8px;
  font-size: .77rem; color: var(--text-muted); font-weight: 700;
  padding: 9px 14px; border-radius: 99px;
  background: rgba(42,157,143,.08); border: 1px solid rgba(42,157,143,.15);
  color: var(--teal);
}
.kit-calc i { font-size: .75rem; }

.kit-footer {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--border);
}
.kit-price-wrap { margin-bottom: 16px; }
.kit-price-label { font-size: .72rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 4px; }
.kit-price {
  font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.kit-featured .kit-price { color: #ff8080; }
.kit-premium .kit-price  { color: var(--yellow); }
.kit-price span { font-size: 1.4rem; font-weight: 900; }
.kit-price-per { font-size: .75rem; color: var(--text-muted); font-weight: 700; }
.kit-featured .kit-price-per { color: rgba(255,128,128,.7); }
.kit-btn { width: 100%; justify-content: center; font-size: .92rem; padding: 13px 20px; }

/* Custom box */
.kits-custom {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 40px; padding: 28px 36px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
}
.custom-icon { font-size: 2.2rem; flex-shrink: 0; }
.custom-text { flex: 1; min-width: 220px; }
.custom-text strong { font-size: 1rem; color: var(--white); font-weight: 900; display: block; margin-bottom: 4px; }
.custom-text p { font-size: .85rem; color: var(--text-muted); font-weight: 600; margin: 0; }

/* ===== COMO FUNCIONA ===== */
.how-section { background: var(--bg); }
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 300px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; transition: var(--transition); position: relative;
}
.step-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .8rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(212,43,43,.4);
}
.step-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(212,43,43,.1); border: 1px solid rgba(212,43,43,.2);
  color: var(--red); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: .83rem; color: var(--text-muted); font-weight: 600; line-height: 1.6; }
.step-arrow {
  font-size: 1.4rem; color: var(--border2); flex-shrink: 0;
  padding-top: 48px;
}
.how-note {
  display: flex; align-items: center; gap: 12px;
  margin-top: 40px; padding: 18px 24px;
  background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.18);
  border-radius: var(--radius); font-size: .88rem;
  color: var(--text-muted); font-weight: 700;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.how-note i { color: var(--yellow); font-size: 1rem; flex-shrink: 0; }
.how-note strong { color: var(--white); }

/* ===== GARANTIAS ===== */
.garantias-section { background: var(--bg2); border-top: 1px solid var(--border); }
.garantias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.garantia-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-align: center; transition: var(--transition);
}
.garantia-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.garantia-icon { font-size: 2.4rem; margin-bottom: 14px; }
.garantia-card h3 { font-size: .95rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.garantia-card p  { font-size: .83rem; color: var(--text-muted); font-weight: 600; line-height: 1.6; }

/* ===== DEPOIMENTOS ===== */
.depo-section { background: var(--bg3); border-top: 1px solid var(--border); }
.depo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.depo-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.depo-card:hover { border-color: var(--border2); box-shadow: var(--shadow-sm); }
.depo-featured {
  background: linear-gradient(160deg, #1e1e2e 0%, #1a1a28 100%);
  border-color: rgba(212,43,43,.25);
  box-shadow: var(--glow-red);
}
.depo-stars { display: flex; gap: 3px; }
.depo-stars i { color: var(--yellow); font-size: .85rem; }
.depo-card p { font-size: .88rem; color: var(--text-muted); font-weight: 600; line-height: 1.7; flex: 1; font-style: italic; }
.depo-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
.depo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; flex-shrink: 0;
}
.depo-author strong { display: block; font-size: .88rem; color: var(--white); font-weight: 900; }
.depo-author span   { font-size: .75rem; color: var(--text-muted); font-weight: 600; }

/* ===== CTA FINAL ===== */
.cta-section {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: rgba(212,43,43,.08); filter: blur(80px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.cta-emoji { font-size: 3.5rem; margin-bottom: 20px; animation: float 4s ease-in-out infinite; }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: var(--white); margin-bottom: 16px;
}
.cta-content p { font-size: 1rem; color: var(--text-muted); font-weight: 600; margin-bottom: 32px; line-height: 1.75; }
.cta-sub { margin-top: 18px; font-size: .8rem; color: var(--text-dim); font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 7px; }
.cta-sub i { color: var(--teal); }

/* ===== CONTATO ===== */
.contato-section { background: var(--bg2); border-top: 1px solid var(--border); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contato-info .section-title { text-align: left; }
.contato-items { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.contato-item {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: var(--transition);
}
.contato-item:hover { border-color: var(--border2); }
.contato-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.contato-icon.green { background: #25D366; }
.contato-icon.insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contato-item strong { display: block; font-size: .85rem; color: var(--white); margin-bottom: 2px; font-weight: 900; }
.contato-item span, .contato-item a { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.contato-item a:hover { color: var(--red); }
.map-placeholder {
  width: 100%; max-width: 400px; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--white);
  box-shadow: var(--shadow-lg), var(--glow-red);
  border: 1px solid rgba(212,43,43,.3); text-align: center; padding: 40px;
}
.map-placeholder i { font-size: 3.2rem; opacity: .85; }
.map-placeholder strong { font-size: 1.15rem; font-weight: 900; }
.map-placeholder span { font-size: .82rem; opacity: .72; line-height: 1.7; }
.map-placeholder a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: var(--white);
  padding: 10px 20px; border-radius: 99px;
  font-size: .82rem; font-weight: 800;
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition); margin-top: 6px;
}
.map-placeholder a:hover { background: rgba(255,255,255,.25); }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); color: var(--text); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr; gap: 44px;
  padding-bottom: 44px; border-bottom: 1px solid var(--border);
}
.footer-logo-img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; box-shadow: 0 4px 16px rgba(212,43,43,.3); }
.footer-logo p { font-size: .84rem; color: var(--text-muted); font-weight: 600; line-height: 1.7; }
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { color: var(--text); font-size: .86rem; font-weight: 900; margin-bottom: 6px; display: block; }
.footer-links a { color: var(--text-dim); font-size: .83rem; font-weight: 600; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social strong { color: var(--text); font-size: .86rem; font-weight: 900; margin-bottom: 6px; display: block; }
.social-icons { display: flex; gap: 10px; margin-bottom: 14px; }
.social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition);
}
.social-icons a:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }
.footer-address { font-size: .78rem; color: var(--text-dim); font-weight: 600; line-height: 1.6; }
.footer-address i { color: var(--red); margin-right: 5px; }
.footer-bottom { padding: 18px 0; text-align: center; color: var(--text-dim); font-size: .78rem; font-weight: 600; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wppPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #1da851; }
.wpp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--surface2); color: var(--white);
  padding: 7px 14px; border-radius: 99px;
  font-size: .78rem; font-weight: 800; white-space: nowrap;
  border: 1px solid var(--border2); box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }
@keyframes wppPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .contato-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .kits-grid { grid-template-columns: repeat(2, 1fr); }
  .kit-featured { transform: scale(1); }
  .kit-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .topbar { font-size: .75rem; gap: 10px; }
  .header { top: 32px; }
  .nav-links {
    display: none; position: fixed; inset: 0; top: 100px;
    background: var(--bg2); flex-direction: column; gap: 4px;
    padding: 24px; z-index: 999; border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-brand { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; text-align: center; padding: 110px 24px 60px; gap: 40px; }
  .hero-desc, .hero-badge { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .problem-arrow { transform: rotate(90deg); }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; }
  .kits-grid { grid-template-columns: 1fr; }
  .kits-custom { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .contato-grid { gap: 36px; }
}

@media (max-width: 480px) {
  .section { padding: 72px 0; }
  .hero-title { font-size: 2.2rem; }
  .topbar { padding: 8px 16px; }
}
