/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-950: #060b1e;
  --navy-900: #0a1233;
  --navy-800: #0f1c4d;
  --navy-700: #16296b;
  --blue-accent: #2e8eff;
  --gold: #f6c525;
  --gold-light: #ffe27a;
  --white: #ffffff;
  --gray-100: #f4f6fb;
  --gray-300: #cbd3e6;
  --gray-600: #5a6480;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(6, 11, 30, 0.15);
  --ff-head: 'Montserrat', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.2;
  color: var(--navy-900);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; fill: currentColor; vertical-align: -3px; margin-right: 4px; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 8px;
}
.eyebrow.center { display: block; text-align: center; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 18, 51, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 18, 51, 0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo { height: 52px; width: auto; border-radius: 8px; }

.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,11,30,0.75) 0%, rgba(6,11,30,0.55) 40%, rgba(6,11,30,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-logo {
  width: 130px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(46, 142, 255, 0.45);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  max-width: 900px;
  margin: 0 auto 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero h1 strong,
.hero-sub strong { color: var(--gold); }

.hero-sub {
  color: var(--gray-300);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-badges .icon { color: var(--gold); }

/* ============ STRIP ============ */
.strip {
  background: var(--navy-800);
  padding: 28px 0 14px;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
}
.strip-item .icon { color: var(--gold); }
.strip-item strong { color: var(--gold-light); }
.strip-note {
  text-align: center;
  color: var(--gray-300);
  font-size: 0.75rem;
  margin-top: 12px;
  opacity: 0.7;
}

/* ============ ABOUT ============ */
.about { padding: 90px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; }
.about-text .btn { margin-top: 10px; }

/* ============ PRODUCTS ============ */
.products { padding: 90px 0; background: var(--gray-100); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(6,11,30,0.18); }

.product-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-accent));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.product-icon svg { width: 28px; height: 28px; fill: var(--gold); }

.product-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.product-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }

.card-link {
  font-weight: 700;
  color: var(--blue-accent);
  font-size: 0.9rem;
}
.card-link:hover { color: var(--navy-900); }

/* ============ DIFERENCIAIS ============ */
.diff { padding: 90px 0; background: var(--navy-900); }
.diff .section-title, .diff .eyebrow { color: var(--white); }
.diff .eyebrow { color: var(--gold); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.diff-icon {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 26px; height: 26px; fill: var(--navy-900); }
.diff-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.diff-card p { color: var(--gray-300); font-size: 0.9rem; }

/* ============ ÁREA DE ATENDIMENTO ============ */
.area { padding: 90px 0; background: var(--white); }

.area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
}
.area-chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 50px;
}
.area-chip-store {
  background: var(--navy-900);
  color: var(--gold);
  border-color: var(--navy-900);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

/* ============ CTA FINAL ============ */
.cta-final {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  padding: 70px 0;
}
.cta-final-inner { text-align: center; }
.cta-final h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-final p { color: var(--gray-300); margin-bottom: 30px; font-size: 1.05rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-950); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 60px; width: auto; border-radius: 8px; margin-bottom: 16px; }
.footer-col p { color: var(--gray-300); font-size: 0.9rem; margin-bottom: 10px; }
.footer-col h4 { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: var(--gray-600);
  font-size: 0.82rem;
}

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  animation: pulse 2.4s infinite;
}
.float-whatsapp .icon { width: 30px; height: 30px; color: var(--white); }
.float-whatsapp:hover { background: var(--whatsapp-dark); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ LEGAL PAGE ============ */
.legal-page {
  padding: 150px 0 90px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal-updated { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-page p { color: var(--gray-600); margin-bottom: 14px; }
.legal-page a { color: var(--blue-accent); font-weight: 600; }
.legal-back { margin-top: 24px; color: var(--navy-900) !important; border-color: var(--navy-900); }
.legal-back:hover { background: var(--navy-900); color: var(--white) !important; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: var(--navy-950);
  color: var(--gray-300);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; max-width: 700px; font-size: 0.88rem; }
.cookie-banner a { color: var(--gold); font-weight: 600; }
.cookie-banner button { flex-shrink: 0; padding: 10px 22px; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10, 18, 51, 0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 320px; padding: 10px 0; }
  .main-nav a { width: 100%; text-align: center; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero-content { padding-top: 110px; }
  .product-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .strip-inner { gap: 18px 28px; }
}
