:root {
  --navy:      #0f172a;
  --navy2:     #1e293b;
  --navy3:     #0d1f3c;
  --accent:    #f97316;
  --accent2:   #fb923c;
  --cyan:      #06b6d4;
  --cyan2:     #22d3ee;
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-200:  #e2e8f0;
  --gray-300:  #cbd5e1;
  --gray-500:  #64748b;
  --gray-700:  #334155;
  --green:     #22c55e;
  --red:       #ef4444;
  --yellow:    #eab308;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 166, 0, 0.897);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}

.nav-logo {
    max-width: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 14px;
  letter-spacing: -1px;
}

.nav-logo img {
  max-width: 80px; /* ajuste conforme desejar */
  height: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy2); background: rgb(255, 212, 23); }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 7px 18px !important; border-radius: 6px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent2) !important; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: var(--navy); padding: 16px 24px 24px;
  border-bottom: 2px solid var(--accent); flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray-300); text-decoration: none; font-size: 15px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-weight: 500;
}
.mobile-menu a:last-child { border: none; }

main{
    padding-top: 80px;
}

/* ── FOOTER ── */
footer {
  background: #080f1e; color: var(--gray-300);
  padding: 56px 5vw 28px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--gray-500); margin-top: 1px; margin-bottom:1px; line-height: 1.4; max-width: 260px; }
.footer-brand b { font-size: 14px; color: var(--white); margin-top: 3px; margin-bottom:2px; line-height: 1.4; max-width: 260px; }
.footer-col h4 {
  font-family: Poppins, sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--gray-500); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a { display: flex; align-items: center; gap: 8px; color: var(--gray-500); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: var(--accent); }
.footer-divider { border-color: rgba(255,255,255,.05); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray-500); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--gray-500); text-decoration: none; }
.footer-bottom span { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray-500); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--accent); }
