/* ============================================================
   WEEZY AGENCY — layout.css
   Header · Footer · Navigation · Dropdown · Mobile Menu
   ============================================================ */

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  border: 1px solid transparent;
  background: transparent;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: 
    background 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
    border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
    backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    margin 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background, padding, max-width, width, margin, border-radius, border-color, box-shadow;
}

#site-header.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--gap-md);
  width: 100%;
}

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: start;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--weezy-white);
  letter-spacing: -0.5px;
}

.site-logo-text span {
  color: var(--weezy-lime);
}

/* ── Main Nav ───────────────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item {
  position: relative;
}

/* Ponte invisível que cobre o gap entre nav-link e dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px; /* deve ser >= gap do dropdown (14px) */
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 8px 14px;
  border-radius: 50px;
  transition: color 0.22s ease, background 0.22s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

/* Hover — texto clareia, fundo muito sutil */
.nav-link:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
}

/* Ativo — texto branco + ponto lime embaixo */
.nav-link.active {
  color: var(--weezy-white);
  font-weight: 600;
  background: transparent;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2.5px;
  border-radius: 99px;
  background: var(--weezy-lime);
  box-shadow: 0 0 8px rgba(149,242,28,0.6);
}

.nav-link .nav-arrow {
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-item:hover .nav-link .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── Dropdown ───────────────────────────────────────────────── */
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--weezy-lime);
  border-radius: 0 0 18px 18px;
  padding: 8px 8px 14px;
  min-width: 290px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Item do dropdown */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  position: relative;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2.5px;
  height: 60%;
  background: var(--weezy-lime);
  border-radius: 99px;
  transition: transform 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--weezy-white);
}

.dropdown-link:hover::before {
  transform: translateY(-50%) scaleY(1);
}

/* Ícone do dropdown */
.dropdown-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover .dropdown-icon {
  background: rgba(149,242,28,0.1);
  border-color: rgba(149,242,28,0.25);
  color: var(--weezy-lime);
}

/* Texto do dropdown (label + descrição) */
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-label {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.dropdown-desc {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.dropdown-link:hover .dropdown-desc {
  color: rgba(255,255,255,0.42);
}

/* Rodapé do dropdown */
.dropdown-footer {
  margin-top: 8px;
  padding: 12px 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-footer-text {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-body);
}

.dropdown-footer-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--weezy-lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.dropdown-footer-link:hover {
  gap: 7px;
}

/* ── Header Actions ─────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-self: end;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Botão de busca circular */
.header-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.header-search-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  color: var(--weezy-white);
}

/* CTA pill — estilo Bexon, dark */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--weezy-lime);
  color: var(--weezy-black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn-header-cta:hover {
  background: #78e878;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(100,220,100,0.28);
}

/* Círculo com a seta dentro do botão */
.btn-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.25s ease, transform 0.25s ease, width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn-header-cta:hover .btn-cta-arrow {
  background: rgba(0,0,0,0.28);
  transform: rotate(45deg);
}

/* ── Creative Cyberpunk Hamburger ── */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(149, 242, 28, 0.02) !important;
  border: 1px solid rgba(149, 242, 28, 0.18) !important;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(149, 242, 28, 0.02);
}

.hamburger:hover {
  background: rgba(149, 242, 28, 0.08) !important;
  border-color: rgba(149, 242, 28, 0.6) !important;
  box-shadow: 0 0 15px rgba(149, 242, 28, 0.25) !important;
  transform: rotate(90deg);
}

.hamburger-line {
  display: block;
  height: 2px;
  background: var(--weezy-lime) !important;
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Asymmetric line widths */
.hamburger-line:nth-child(1) {
  width: 18px;
}
.hamburger-line:nth-child(2) {
  width: 12px;
  margin-left: auto;
  margin-right: 6px;
}
.hamburger-line:nth-child(3) {
  width: 22px;
}

.hamburger:hover .hamburger-line:nth-child(2) {
  width: 18px;
  margin-right: 2px;
}

.hamburger.open {
  background: rgba(244, 63, 94, 0.08) !important;
  border-color: rgba(244, 63, 94, 0.5) !important;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.2) !important;
}

.hamburger.open:hover {
  background: rgba(244, 63, 94, 0.15) !important;
  border-color: rgba(244, 63, 94, 0.8) !important;
  transform: rotate(180deg);
}

.hamburger.open .hamburger-line {
  background: #f43f5e !important;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* ── Side Panel ─────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: #0f1110;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Panel — Header */
.sd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: #0f1110;
  z-index: 2;
}

.sd-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sd-close:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

/* Panel — Body */
.sd-body {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Tagline */
.sd-tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Section label */
.sd-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

/* Nav links */
.sd-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.sd-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease;
}

.sd-nav-link:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sd-nav-link:hover {
  color: var(--weezy-lime);
}

.sd-nav-link i {
  font-size: 13px;
  color: var(--weezy-lime);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sd-nav-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Countries block */
.sd-countries-block {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.sd-countries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.sd-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.sd-country-flag {
  width: 22px !important;
  height: 16px !important;
  border-radius: 3px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Contact block */
.sd-contact-block {
  padding-top: 0;
  border-top: none;
  margin-bottom: 32px;
}

.sd-contact-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sd-contact-item:last-child {
  border-bottom: none;
}

.sd-contact-type {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}

.sd-contact-value {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
}

a.sd-contact-value:hover {
  color: var(--weezy-lime);
}

/* Social block */
.sd-social-block {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}

.sd-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.sd-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sd-social-icon:hover {
  border-color: var(--weezy-lime);
  color: var(--weezy-lime);
  background: rgba(100,220,100,0.08);
}

/* ── Blog-post mobile nav (compat) ─────────────────────────── */
.mobile-nav-link {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 14px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s ease;
}

.mobile-nav-link:first-child {
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav-link:hover {
  color: var(--weezy-lime);
}

.mobile-drawer-footer {
  padding: 28px 36px;
  margin-top: auto;
}

/* ── Page Hero (interno) ────────────────────────────────────── */
.page-hero {
  padding: clamp(120px, 15vw, 180px) 0 clamp(64px, 8vw, 100px);
  background: var(--weezy-black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(149, 242, 28, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: #040405;
  padding-top: clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(149, 242, 28, 0.05);
}

#site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(149, 242, 28, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 242, 28, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center bottom;
  pointer-events: none;
}

#site-footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(149, 242, 28, 0.035), transparent 70%);
  pointer-events: none;
}



.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(149, 242, 28, 0.06);
  gap: var(--gap-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(149, 242, 28, 0.08);
  background: rgba(10, 10, 12, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--weezy-gray-400);
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  text-decoration: none;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 5px;
  border-top: 1px solid var(--weezy-lime);
  border-left: 1px solid var(--weezy-lime);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 5px; height: 5px;
  border-bottom: 1px solid var(--weezy-lime);
  border-right: 1px solid var(--weezy-lime);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  border-color: rgba(149, 242, 28, 0.25);
  color: var(--weezy-lime);
  background: rgba(149, 242, 28, 0.04);
  box-shadow: 0 8px 24px rgba(149, 242, 28, 0.05), inset 0 0 10px rgba(149, 242, 28, 0.02);
  transform: translateY(-2px);
}

.footer-social-link:hover::before,
.footer-social-link:hover::after {
  opacity: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  padding: 48px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-col-title {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--weezy-gray-300);
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(149, 242, 28, 0.05);
  padding-bottom: 8px;
}

.footer-tagline {
  font-size: 14.5px;
  color: var(--weezy-gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--weezy-gray-400);
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-contact-badge {
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  color: var(--weezy-lime);
  border: 1px solid rgba(149, 242, 28, 0.2);
  background: rgba(149, 242, 28, 0.03);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  min-width: 46px;
  text-align: center;
  transition: all 0.25s ease;
}

.footer-contact-item:hover {
  color: var(--weezy-white);
}

.footer-contact-item:hover .footer-contact-badge {
  border-color: rgba(149, 242, 28, 0.5);
  background: rgba(149, 242, 28, 0.08);
  box-shadow: 0 0 8px rgba(149, 242, 28, 0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 13.5px;
  color: var(--weezy-gray-400);
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '//';
  font-family: monospace;
  font-size: 11px;
  color: var(--weezy-lime);
  opacity: 0.3;
  transition: all 0.25s ease;
}

.footer-link:hover {
  color: var(--weezy-white);
  padding-left: 4px;
}

.footer-link:hover::before {
  opacity: 1;
  text-shadow: 0 0 4px var(--weezy-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(149, 242, 28, 0.05);
  padding: 24px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-copyright {
  font-family: monospace;
  font-size: 11px;
  color: var(--weezy-gray-500);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: monospace;
  font-size: 11px;
  color: var(--weezy-gray-500);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--weezy-white);
}

.footer-metadata {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: monospace;
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-metadata-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-meta-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--weezy-lime);
  box-shadow: 0 0 6px var(--weezy-lime);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

/* ── Scroll Progress Ring ───────────────────────────────────── */
.scroll-ring {
  position: fixed;
  bottom: 100px;         /* acima do botão WhatsApp */
  right: 28px;
  width: 60px;
  height: 60px;
  z-index: 900;
  cursor: pointer;
  background: #111111;
  border: none;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.scroll-ring.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-ring:hover {
  box-shadow: 0 6px 28px rgba(149, 242, 28, 0.25);
}

.scroll-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);    /* arco começa do topo */
}

.scroll-ring-track {
  stroke: rgba(255,255,255,0.08);
  stroke-width: 2.5;
  fill: #111111;
}

.scroll-ring-fill {
  stroke: var(--weezy-lime);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.12s linear;
}

.scroll-ring-pct {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--weezy-white);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
}

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ── Responsive Header ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav,
  .header-actions .btn-primary,
  .header-search-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Mobile Drawer — nav simples ──────────────────────────── */
.sd-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 0 0;
}

.sd-mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 15px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s ease, background 0.2s ease;
}

.sd-mobile-nav-link:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sd-mobile-nav-link:active {
  color: var(--weezy-lime);
  background: rgba(149,242,28,0.04);
}

.sd-mobile-nav-link i {
  font-size: 13px;
  opacity: 0.22;
}

.sd-mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--weezy-lime);
  color: var(--weezy-black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: 12px;
  text-decoration: none;
  margin: 20px 24px 28px;
  transition: opacity 0.2s ease;
}

.sd-mobile-nav-cta:active { opacity: 0.88; }

/* Em telas pequenas: mostra nav, esconde bloco rico */
@media (max-width: 600px) {
  .sd-mobile-nav {
    display: flex;
  }

  .sd-tagline,
  .sd-countries-block,
  .sd-contact-block,
  .sd-social-block {
    display: none !important;
  }
}


/* ── Quantum Glass Header & Telemetry HUD Overhaul ── */
#site-header.scrolled {
      max-width: 1180px;
      width: calc(100% - 48px);
      margin: 16px auto;
      left: 0; right: 0;
      background: rgba(10, 10, 12, 0.72) !important;
      backdrop-filter: blur(16px) !important;
      -webkit-backdrop-filter: blur(16px) !important;
      border: 1px solid rgba(149, 242, 28, 0.16) !important;
      border-radius: 50px !important;
      padding: 14px 24px !important;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(149, 242, 28, 0.05) !important;
    }
    
    #site-header.scrolled .container {
      padding: 0 !important;
      max-width: 100% !important;
    }
    
    #site-header.scrolled .site-logo {
      justify-self: start !important;
      margin-left: 20px !important;
    }
    
    #site-header.scrolled .nav-link {
      padding: 6px 12px !important;
      font-size: 13px !important;
    }
    
    #site-header.scrolled .header-inner {
      display: grid !important;
      grid-template-columns: 1fr auto 1fr !important;
      align-items: center !important;
      width: 100% !important;
      gap: 16px !important;
    }
    
    #site-header.scrolled .main-nav {
      justify-self: center !important;
    }
    
    #site-header.scrolled .header-actions {
      justify-self: end !important;
      gap: 8px !important;
      margin-right: 20px !important;
    }
    
    #site-header.scrolled .header-search-btn {
      display: none !important;
    }
    
    #site-header.scrolled .header-telemetry-hud {
      padding: 4px 10px !important;
    }
    
    #site-header.scrolled .btn-header-cta {
      padding: 6px 6px 6px 16px !important;
      font-size: 13px !important;
    }
    
    #site-header.scrolled .btn-cta-arrow {
      width: 28px !important;
      height: 28px !important;
      font-size: 13px !important;
    }
    
    /* Telemetry HUD in Header */
    .header-telemetry-hud {
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      flex-shrink: 0;
      font-family: monospace;
      font-size: 9px;
      color: rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 20px;
      padding: 6px 12px;
      margin-right: 12px;
      pointer-events: none;
      letter-spacing: 0.5px;
    }
    .telemetry-led {
      width: 5px;
      height: 5px;
      background: var(--weezy-lime);
      border-radius: 50%;
      box-shadow: 0 0 6px var(--weezy-lime);
      animation: ledPulse 2.5s infinite ease-in-out;
    }
    @keyframes ledPulse {
      0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--weezy-lime); }
      50% { opacity: 0.3; box-shadow: 0 0 2px var(--weezy-lime); }
    }
    .telemetry-ping {
      color: var(--weezy-lime);
      font-weight: 700;
      text-shadow: 0 0 4px rgba(149, 242, 28, 0.2);
    }
    
    .btn-header-cta {
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(149, 242, 28, 0.08);
      transition: all 0.3s ease;
    }
    .btn-header-cta::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transform: skewX(-20deg);
      transition: none;
    }
    .btn-header-cta:hover::after {
      animation: ctaShineSweep 1.2s ease-in-out infinite;
    }
    @keyframes ctaShineSweep {
      0% { left: -150%; }
      50% { left: 150%; }
      100% { left: 150%; }
    }
    .btn-header-cta:hover {
      box-shadow: 0 0 20px rgba(149, 242, 28, 0.4);
      transform: scale(1.03);
    }

    @media (max-width: 1100px) {
      .header-telemetry-hud {
        display: none;
      }
    }

    @media (max-width: 1024px) {
      #site-header.scrolled {
        width: calc(100% - 32px);
        margin: 12px auto;
        padding: 8px 20px !important;
        border-radius: 40px !important;
      }
    }
