/* ═══════════════════════════════════════════════
   NAVBAR — duas linhas
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s, box-shadow .4s;
  background: rgba(28,22,40,.0);
}
#nav.scrolled {
  background: rgba(28,22,40,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,.35);
}

.nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(196,168,130,.1);
}

.nbrand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nbrand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.nbrand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.nbrand-txt span:first-child {
  font-family: var(--fb);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(196,168,130,.55);
  font-weight: 400;
}
.nbrand-txt span:last-child {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
}

.nav-contact { display: flex; align-items: center; gap: 20px; }
.nav-contact-info { display: flex; align-items: center; gap: 16px; }
.nav-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  text-decoration: none;
  transition: color .2s;
}
.nav-contact-item:hover { color: var(--accent-lt); }
.nav-contact-item svg { color: var(--accent); }
.nav-sep { width: 1px; height: 16px; background: rgba(196,168,130,.18); }

.btn--nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark) !important;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn--nav-wa:hover { background: var(--accent-lt); transform: translateY(-1px); }

.nav-menubar { display: flex; align-items: center; padding: 6px 0; }

.navbar-nav { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; }
.navbar-nav a {
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: .2s;
  display: block;
  white-space: nowrap;
}
.navbar-nav a:hover {
  color: var(--accent-lt);
  border-color: rgba(196,168,130,.22);
  background: rgba(196,168,130,.05);
}
.navbar-nav a.active {
  color: var(--accent);
  border-color: rgba(196,168,130,.28);
  background: rgba(196,168,130,.07);
}

.nav-toggler {
  display: none;
  background: transparent;
  border: 1px solid rgba(196,168,130,.35);
  border-radius: 3px;
  padding: 7px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggler span { display: block; width: 22px; height: 1.5px; background: rgba(196,168,130,.8); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(22,18,36,.98);
  border-top: 1px solid rgba(196,168,130,.08);
  padding: 12px 0 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; padding: 9px 20px; transition: color .2s; }
.nav-mobile a:hover { color: var(--accent-lt); }
.nav-mobile .mobile-wa {
  margin: 8px 20px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#footer { background: var(--dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { font-family: var(--fh); font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 6px; letter-spacing: .03em; }
.footer-brand em { font-style: italic; color: var(--accent); }
.footer-crp { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(196,168,130,.4); margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(196,168,130,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(196,168,130,.55);
  text-decoration: none;
  transition: .2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 { font-family: var(--fb); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; font-weight: 300; }
.footer-col ul a:hover { color: var(--accent-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-contact-item:hover { color: rgba(255,255,255,.65); }
.footer-bottom {
  border-top: 1px solid rgba(196,168,130,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.22);
}
.footer-bottom a { color: rgba(255,255,255,.22); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: rgba(196,168,130,.6); }
.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
═══════════════════════════════════════════════ */
.waf {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.waf:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.waf svg { width: 28px; height: 28px; fill: #fff; }

/* ═══════════════════════════════════════════════
   RESPONSIVO — nav e footer
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-contact { display: none; }
  .nav-menubar { display: none; }
  .nav-toggler { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
