/* ─── NAVBAR ──────────────────────────────────────────── */
nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 40px;
}
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; transition: opacity 0.2s; }
.logo:hover { opacity: 0.82; }
.logo-icon { width: 36px; height: 36px; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; color: var(--text-dark); letter-spacing: -0.3px; }
.logo-text span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; flex: 1; }
.nav-links a {
  text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 500;
  position: relative; transition: color 0.2s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red); border-radius: 2px;
  transition: width 0.22s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-icon-btn {
  position: relative; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; border-radius: 8px;
  color: var(--text-mid); cursor: pointer;
  transition: color 0.2s, background 0.18s;
}
.nav-icon-btn:hover { color: var(--red); background: var(--red-glow); }
.nav-badge {
  position: absolute; top: 6px; right: 6px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; line-height: 1;
}
.nav-icon-btn[data-tip]::before {
  content: attr(data-tip); position: absolute; bottom: -34px; left: 50%;
  transform: translateX(-50%); background: #111; color: #fff;
  font-size: 11px; padding: 4px 8px; border-radius: 5px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.15s; z-index: 10;
}
.nav-icon-btn[data-tip]:hover::before { opacity: 1; }
.nav-divider { width: 1px; height: 22px; background: var(--border); margin: 0 6px; flex-shrink: 0; }
.nav-btn-login {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); border: none; color: #fff;
  font-size: 13.5px; font-weight: 700; padding: 9px 18px;
  border-radius: 7px; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(192,57,43,0.28); white-space: nowrap;
}
.nav-btn-login:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--red);
  min-height: 100vh; padding: 90px 0;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero .container { display: block; width: 100%; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(255,255,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%); width: 420px; height: 420px;
  border-radius: 50%; border: 60px solid rgba(255,255,255,0.04); pointer-events: none;
}
.hero-content { max-width: 560px; position: relative; z-index: 1; margin-right: auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95); font-size: 12.5px; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 22px; letter-spacing: 0.3px;
}
.hero-badge-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; }
.hero-content h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 40px;
  color: #fff; line-height: 1.18; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-content p { color: rgba(255,255,255,0.88); font-size: 16px; margin-bottom: 36px; max-width: 420px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: none; color: var(--red);
  font-size: 14px; font-weight: 700; padding: 13px 24px;
  border-radius: 7px; text-decoration: none; font-family: 'Inter', sans-serif; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-outline-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 14px; font-weight: 600; padding: 12px 22px;
  border-radius: 7px; text-decoration: none; font-family: 'Inter', sans-serif; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

/* ─── STATS BAR ───────────────────────────────────────── */
.stats-bar { background: #fff; border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 28px;
  color: var(--red); display: block; line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--red); padding: var(--section-y-sm) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; position: relative; z-index: 1; }
.cta-text h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: #fff; margin-bottom: 10px; letter-spacing: -0.4px; line-height: 1.18; }
.cta-text p { color: rgba(255,255,255,0.82); font-size: 15px; max-width: 380px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--red); font-size: 14px; font-weight: 700;
  padding: 14px 24px; border-radius: 8px; text-decoration: none; font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 14px; font-weight: 600; padding: 13px 22px;
  border-radius: 8px; text-decoration: none; font-family: 'Inter', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

/* ─── FOOTER ──────────────────────────────────────────── */
footer { background: #111; padding: var(--section-y) 0 32px; }
.footer-top-row { display: flex; justify-content: flex-end; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid #222; }
.footer-social-label { font-size: 11.5px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }
.footer-social-icons { display: flex; gap: 10px; }
.footer-social-icons a { width: 36px; height: 36px; border: 1px solid #2a2a2a; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #666; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s; }
.footer-social-icons a:hover { border-color: var(--red); color: var(--red); background: rgba(192,57,43,0.1); transform: translateY(-2px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: #666; line-height: 1.75; margin-top: 14px; max-width: 210px; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.3px; }
.footer-logo-text span { color: var(--red); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; color: #fff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #666; text-decoration: none; font-size: 13.5px; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: #ccc; padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: #666; font-size: 13.5px; margin-bottom: 12px; line-height: 1.5; }
.footer-contact li a { color: #666; text-decoration: none; transition: color 0.2s; }
.footer-contact li a:hover { color: #ccc; }
.footer-contact li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; fill: #555; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-payments span { background: #1e1e1e; border: 1px solid #2a2a2a; border-radius: 6px; padding: 8px 12px; font-size: 11px; color: #666; font-weight: 600; }
.footer-bottom { border-top: 1px solid #1e1e1e; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 12px; color: #444; }
.footer-legal a { color: #444; font-size: 12px; text-decoration: none; margin-left: 20px; transition: color 0.2s; }
.footer-legal a:hover { color: #888; }
.footer-dev { font-size: 11.5px; color: #383838; display: flex; align-items: center; gap: 5px; }
.footer-dev a { color: #555; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-dev a:hover { color: var(--red); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 200; text-decoration: none;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ─── LOGO IMAGEM REAL ────────────────────────────────── */
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-icon { display: none; }
.logo-text { display: none; }

/* Footer logo */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 14px;
}
.footer-logo-img:hover { opacity: 1; }
.footer-logo-text { display: none; }

/* ─── FOTO INTRO SOBRE ────────────────────────────────── */
.about-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-wrap { animation: float 6s ease-in-out infinite; }
