/* =====================================================
   VERDE LIMÃO — header.css
   Navbar + Hero fiel à mockup
   ===================================================== */

/* ── SOCIAL BAR (topo) ── */
#social-bar {
  background: #0057FF;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding-left: 28px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  height: 32px;
}
#social-bar a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  transition: color .2s;
}
#social-bar a:hover { color: #FFD700; }
#social-bar svg { width: 16px; height: 16px; }

/* ── NAVBAR ── */
#nav {
  position: fixed;
  top: 32px; left: 0; right: 0;
  z-index: 9999;
  background: #f2f2f2;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 28px;
}
#nav.scrolled {
  background: #f2f2f2;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

/* Logo — caixa com borda azul arredondada */
.nav-logo-wrap {
  border: 2.5px solid #0057FF;
  border-radius: 18px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  background: #f2f2f2;
  flex-shrink: 0;
}
.nav-logo-wrap img {
  height: 44px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #0057FF; }

/* Hamburger button — azul arredondado grande */
.nav-ham-btn {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #0057FF;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-ham-btn:hover { background: #003fcc; }
.nav-ham-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
.nav-ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham-btn.open span:nth-child(2) { opacity: 0; }
.nav-ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mob-drawer {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0;
  z-index: 9998;
  background: #f2f2f2;
  border-bottom: 2px solid #0057FF;
  padding: 20px 28px;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mob-drawer.open { display: flex; }
.mob-drawer a {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  color: #111;
}

/* ── HERO ── */
#hero {
  padding-top: 112px; /* 32px social bar + 80px nav */
  min-height: 100vh;
  background: #f2f2f2;
  display: flex;
  align-items: stretch;
  position: relative;
}

/* A imagem do hero tem margens (não fullbleed) — como na mockup */
.hero-img-frame {
  position: relative;
  margin: 20px 28px;
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: calc(100vh - 132px);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  filter: brightness(0.35) grayscale(0.4);
}

/* Texto do hero — centrado na imagem */
.hero-text-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  z-index: 2;
}

/* "VERDE" em amarelo, font display ultra-bold */
.hero-verde {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  color: #FFD700;
  letter-spacing: -.04em;
  line-height: 0.85;
  text-transform: uppercase;
  display: block;
}

/* "CREATIVE STUDIO" pequeno, branco, entre as duas palavras */
.hero-creative {
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: block;
  margin: 8px 0;
}

/* "LIMÃO" outline branco */
.hero-limao {
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  color: #FFD700;
  letter-spacing: -.04em;
  line-height: 0.85;
  text-transform: uppercase;
  display: block;
}

/* Cobra sobreposta ao hero */
#snake-root {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 100;
}
#snake-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  overflow: visible;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ham-btn { display: flex; }
}
@media (max-width: 600px) {
  .hero-img-frame { margin: 12px 12px; }
  #nav { padding: 0 16px; }
  #social-bar { padding-left: 16px; }
}
