/* ============================================================
   PLANTE — Nav + Footer CSS canônico compartilhado
   Edite SOMENTE aqui. Todas as páginas carregam este arquivo.
   ============================================================ */

nav { position: sticky; top: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,140,58,0.1); z-index: 100; padding: 12px 0; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { position: relative; display: inline-flex; align-items: flex-start; text-decoration: none; line-height: 0; }
.nav-logo img { height: 56px; width: auto; display: block; padding-bottom: 4px; }
.nav-logo::after { content: "®"; font-family: 'Alright Sans', sans-serif; font-weight: 700; font-size: 14px; line-height: 1; color: var(--verde-plante); margin-left: 4px; margin-top: 6px; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; }
.nav-links a { display: inline-flex; align-items: center; color: var(--texto-suave); text-decoration: none; font-family: 'Decima', 'Alright Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; line-height: 1; transition: color 0.2s; position: relative; padding-top: 4px; padding-bottom: 4px; border-bottom: none; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background-color: transparent; pointer-events: none; }
.nav-links a:hover { color: var(--verde-plante); }
.nav-cta { background: var(--verde-plante); color: white !important; padding: 10px 20px; border-radius: 100px; }
.nav-links a.nav-cta { padding-top: 10px; padding-bottom: 10px; }
.nav-links a.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--verde-escuro); color: white !important; }
.nav-cta-whats { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; box-shadow: 0 2px 8px rgba(23,140,75,0.25); line-height: 1; }

/* Active state — via JS (.nav-active) ou HTML estático (.ativo) */
.nav-links a.nav-active,
.nav-links a.ativo { color: var(--verde-plante, #178C4B); }
.nav-links a.nav-active::after,
.nav-links a.ativo::after { background-color: #C2D54E; }

/* Hamburger mobile */
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; padding: 10px; border-radius: 10px; transition: background 0.2s; }
.menu-toggle:hover { background: rgba(23,140,75,0.08); }
.menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--verde-plante, #178C4B); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); padding: 12px 16px 20px; border-bottom: 1px solid rgba(0,140,58,0.1); box-shadow: 0 12px 40px rgba(0,0,0,0.12); gap: 4px; }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 16px; border-radius: 10px; }
  .nav-links a:hover { background: #ECF0DA; color: var(--texto-suave); }
  .nav-cta { text-align: center; margin-top: 6px; }
  .nav-logo img { height: 38px !important; }
  .nav-links a.nav-active,
  .nav-links a.ativo { padding-bottom: 0 !important; background: rgba(194,213,78,0.18) !important; border-bottom: none !important; }
  .nav-links a.nav-active::after,
  .nav-links a.ativo::after { display: none !important; }
}

/* ===== FOOTER ===== */
footer { background: var(--verde-escuro); color: var(--bege); text-align: center; padding: 70px 24px 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-logo-wrap { max-width: 280px; width: 100%; margin: 0 auto 24px; display: block; position: relative; line-height: 0; }
.footer-logo-wrap::after { content: "®"; position: absolute; top: -2px; right: -20px; font-family: 'Alright Sans', sans-serif; font-weight: 700; font-size: 20px; color: var(--bege); }
.footer-logo { width: 100%; height: auto; display: block; }
.footer-info { font-family: 'Alright Sans', sans-serif; font-weight: 300; font-size: 14px; line-height: 1.9; color: var(--bege); opacity: 0.85; margin-bottom: 24px; }
.footer-divider { width: 60px; height: 2px; background: var(--verde-claro); margin: 28px auto; border-radius: 2px; }
.footer-copyright { font-family: 'Decima', sans-serif; font-size: 11px; color: var(--bege); opacity: 0.6; letter-spacing: 1.5px; line-height: 1.8; text-transform: uppercase; }
footer a { color: var(--bege); text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; margin: 0 0 4px; font-family: 'Decima', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-links a { color: var(--bege); opacity: 0.55; text-decoration: none !important; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; text-decoration: underline !important; }
.footer-links-dot { color: var(--bege); opacity: 0.25; }
