:root {
  --navy: #061a3a;
  --navy-2: #0c2757;
  --blue: #1568e3;
  --blue-light: #4c9aff;
  --amber: #ffb020;
  --amber-dark: #ff8a00;
  --white: #ffffff;
  --gray-050: #f6f8fc;
  --gray-100: #eef2f9;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(6, 26, 58, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hidden-mobile { display: block; }
.hidden-desktop { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: var(--navy); box-shadow: 0 8px 20px rgba(255,138,0,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(21,104,227,.35); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: inherit; }
.topbar a:hover { color: var(--amber); }
.topbar svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
header.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(6,26,58,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 46px; width: auto; }
nav.main-nav ul { display: flex; gap: 30px; }
nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-700);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--blue); border-color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.burger svg { width: 26px; height: 26px; color: var(--navy); }

/* ---------- Mobile nav overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--navy);
  z-index: 150;
  padding: 90px 32px 32px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
.mobile-nav li:nth-last-child(-n+2) a { display: inline-flex; }

/* ---------- Hero / Slider ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides { position: relative; height: 560px; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .bg { position: absolute; inset: 0; }
.hero-slide .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.hero-copy { color: var(--white); }
.hero-copy .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-copy h1 em { color: var(--amber); font-style: normal; }
.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin: 0 0 28px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; align-items: center; justify-content: center; }
.hero-art svg { width: 100%; height: auto; max-width: 420px; }

.hero-dots {
  position: absolute;
  bottom: 22px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.35); cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--amber); width: 26px; border-radius: 6px; }

/* ---------- Section heading ---------- */
.section { padding: 72px 0; }
.section.gray { background: var(--gray-050); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head .eyebrow {
  color: var(--blue); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 10px;
}
.section-head h2 { font-size: 2rem; margin: 0 0 12px; color: var(--navy); font-weight: 800; }
.section-head p { color: var(--gray-500); margin: 0; font-size: 1rem; }

/* ---------- Plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(6,26,58,.18); }
.plan-card.featured { border: 2px solid var(--amber); position: relative; }
.plan-card.featured::before {
  content: "MAIS ESCOLHIDO";
  position: absolute; top: 18px; right: -34px;
  background: var(--amber-dark); color: var(--white);
  font-size: .68rem; font-weight: 800; letter-spacing: .04em;
  padding: 5px 40px; transform: rotate(45deg);
}
.plan-head { background: linear-gradient(135deg, var(--navy), var(--navy-2)); padding: 26px 24px 20px; text-align: center; }
.plan-head .plan-icon { width: 54px; height: 54px; margin: 0 auto 10px; }
.plan-head h3 { color: var(--white); margin: 0; font-size: 1.15rem; font-weight: 700; }
.plan-price { text-align: center; padding: 22px 24px 6px; }
.plan-price .from { color: var(--gray-400); font-size: .8rem; }
.plan-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--navy); }
.plan-price .amount sup { font-size: 1.1rem; top: -1em; }
.plan-price .period { color: var(--gray-500); font-size: .85rem; }
.plan-body { padding: 8px 28px 0; flex: 1; }
.plan-body li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--gray-100);
  font-size: .92rem; color: var(--gray-700);
}
.plan-body li svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.plan-foot { padding: 24px 28px 28px; }
.plan-foot .btn { width: 100%; justify-content: center; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue), #0c46ad);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-banner h3 { font-size: 1.6rem; margin: 0 0 8px; font-weight: 800; }
.cta-banner p { margin: 0; color: rgba(255,255,255,.85); }

/* ---------- Feature strip ---------- */
.features-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-item {
  text-align: center;
  padding: 26px 14px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
}
.feature-item svg { width: 40px; height: 40px; color: var(--blue); margin: 0 auto 12px; }
.feature-item h4 { margin: 0 0 4px; font-size: .95rem; color: var(--navy); }
.feature-item p { margin: 0; font-size: .8rem; color: var(--gray-500); }

/* ---------- Lifestyle section ---------- */
.lifestyle {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%);
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.lifestyle-copy { padding: 56px; }
.lifestyle-copy h2 { font-size: 2rem; margin: 0 0 16px; font-weight: 800; }
.lifestyle-copy p { color: rgba(255,255,255,.8); margin: 0 0 24px; max-width: 440px; }
.lifestyle-art { display: flex; align-items: center; justify-content: center; padding: 30px; }
.lifestyle-art svg { width: 100%; max-width: 420px; height: auto; }

/* ---------- Apps section ---------- */
.apps-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.apps-copy h2 { font-size: 2rem; color: var(--navy); font-weight: 800; margin: 0 0 16px; }
.apps-copy p { color: var(--gray-500); margin: 0 0 20px; }
.apps-copy ul { margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.apps-copy li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-700); font-size: .95rem; }
.apps-copy li svg { width: 18px; height: 18px; color: var(--blue); margin-top: 2px; flex: none; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 12px;
}
.store-badge svg { width: 26px; height: 26px; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .lines small { font-size: .68rem; color: rgba(255,255,255,.7); }
.store-badge .lines strong { font-size: .95rem; }
.apps-art { display: flex; justify-content: center; }
.apps-art svg { width: 100%; max-width: 300px; height: auto; }

/* ---------- Testimonials ---------- */
.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testi-card .stars { color: var(--amber-dark); font-size: .9rem; margin-bottom: 12px; }
.testi-card p { color: var(--gray-700); font-size: .92rem; line-height: 1.6; margin: 0 0 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person svg { width: 46px; height: 46px; border-radius: 50%; flex: none; }
.testi-person strong { display: block; font-size: .92rem; color: var(--navy); }
.testi-person span { font-size: .8rem; color: var(--gray-500); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links a {
  background: var(--navy);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.85);
}
.footer-links a:hover { background: var(--navy-2); }
.footer-links svg { width: 22px; height: 22px; color: var(--amber); flex: none; }
.footer-mid { padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-mid .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-img { height: 40px; width: auto; }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; max-width: 280px; }
.footer-contacts a, .footer-contacts span { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; }
.footer-contacts svg { width: 16px; height: 16px; color: var(--amber); flex: none; margin-top: 2px; }
.copyright { line-height: 1.6; }
.footer-social { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-social .label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.footer-social .icons { display: flex; gap: 10px; }
.footer-social .icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social .icons a:hover { background: var(--blue); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { padding: 26px 0 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer-menu ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-menu a { font-size: .85rem; }
.footer-menu a:hover { color: var(--amber); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.08); margin-top: 20px; padding: 16px 0; }
.footer-legal ul { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--amber); }
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); padding: 64px 0 56px; text-align: center; }
.page-hero h1 { font-size: 2.1rem; font-weight: 800; margin: 0 0 10px; }
.page-hero p { color: rgba(255,255,255,.75); margin: 0; }
.legal-content { max-width: 820px; margin: 0 auto; padding: 56px 24px; line-height: 1.75; color: var(--gray-700); }
.legal-content h2 { color: var(--navy); font-size: 1.3rem; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 6px; }
.legal-content .updated { color: var(--gray-500); font-size: .85rem; margin-bottom: 30px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; padding: 0 24px 64px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; text-align: center; }
.contact-card svg { width: 40px; height: 40px; color: var(--blue); margin-bottom: 14px; }
.contact-card h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.contact-card p { margin: 0 0 18px; color: var(--gray-500); font-size: .9rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.copyright { font-size: .8rem; color: rgba(255,255,255,.5); }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  animation: pulse 2.4s infinite;
}
.floating-whatsapp svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .features-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hidden-mobile { display: none !important; }
  .hidden-desktop { display: flex !important; }
  .burger { display: flex; }
  nav.main-nav { display: none; }
  .hero-slide .container { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { display: none; }
  .hero-slides { height: 480px; }
  .hero-copy h1 { font-size: 2rem; }
  .lifestyle { grid-template-columns: 1fr; text-align: center; }
  .lifestyle-copy { padding: 40px 28px 0; }
  .lifestyle-copy p { margin-left: auto; margin-right: auto; }
  .apps-section { grid-template-columns: 1fr; text-align: center; }
  .apps-copy ul { text-align: left; }
  .store-badges { justify-content: center; }
  .footer-mid .container { flex-direction: column; }
  .footer-social { align-items: flex-start; }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .testi-track { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .section { padding: 52px 0; }
}
