/* ============================================================
   style.css — Moares Junior Painéis Publicitários
   Design Premium | Azul #003087 + Vermelho #E30613
   ============================================================ */

/* ── VARIÁVEIS ──────────────────────────────────────────────── */
:root {
  --azul:       #003087;
  --azul-esc:   #001f5c;
  --azul-cl:    #e8eef8;
  --vermelho:   #E30613;
  --verm-esc:   #b30510;
  --cinza-esc:  #1a1a2e;
  --cinza-med:  #4b5563;
  --cinza-cl:   #f1f5f9;
  --branco:     #ffffff;
  --sombra:     0 4px 24px rgba(0,0,0,.10);
  --sombra-lg:  0 16px 64px rgba(0,0,0,.16);
  --borda:      1px solid #e5e7eb;
  --radius:     12px;
  --radius-lg:  20px;
  --trans:      all .3s ease;
  --fonte:      'Inter', 'Segoe UI', sans-serif;
}

/* ── RESET & BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fonte);
  background: var(--branco);
  color: var(--cinza-esc);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--trans); }

/* ── UTILITÁRIOS ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.section-cinza { background: var(--cinza-cl); }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--vermelho);
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--azul);
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-title span { color: var(--vermelho); }
.sec-desc {
  font-size: 1.1rem;
  color: var(--cinza-med);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.8;
}
.sec-linha {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-linha::before, .sec-linha::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--azul-cl));
}
.sec-linha::before { background: linear-gradient(90deg, var(--azul-cl), transparent); }

/* ── BOTÕES ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--azul);
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(0,48,135,.35);
}
.btn-primary:hover { background: var(--azul-esc); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,48,135,.45); color: var(--branco); }
.btn-vermelho {
  background: var(--vermelho);
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(227,6,19,.35);
}
.btn-vermelho:hover { background: var(--verm-esc); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(227,6,19,.45); color: var(--branco); }
.btn-outline {
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
}
.btn-outline:hover { background: var(--azul); color: var(--branco); transform: translateY(-2px); }
.btn-branco {
  background: var(--branco);
  color: var(--azul);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-branco:hover { background: var(--azul-cl); transform: translateY(-2px); }
.btn-wpp {
  background: #25D366;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wpp:hover { background: #128C7E; transform: translateY(-2px); color: var(--branco); }
.btn-sm { padding: 10px 22px; font-size: .82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--branco);
  border-radius: var(--radius);
  border: var(--borda);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: var(--trans);
}
.card:hover { box-shadow: var(--sombra-lg); transform: translateY(-4px); }

/* ── BADGE ───────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-azul    { background: var(--azul-cl);  color: var(--azul); }
.badge-verm    { background: #fee2e2; color: var(--vermelho); }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--branco);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--trans);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-logo img { max-height: 54px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .nome {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--azul);
  line-height: 1.1;
}
.logo-text .slogan {
  font-size: .65rem;
  font-weight: 600;
  color: var(--vermelho);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cinza-esc);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--azul); background: var(--azul-cl); }
.header-cta { margin-left: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--azul); border-radius: 2px; transition: var(--trans); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e27 0%, #001a5c 40%, #003087 70%, #0a1a4a 100%);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(227,6,19,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 30%, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,6,19,.15);
  border: 1px solid rgba(227,6,19,.3);
  color: #ff6b7a;
  border-radius: 99px;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermelho);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(227,6,19,.6); }
  50%      { box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--branco);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-title .vermelho { color: #ff3a4a; }
.hero-title .destaque {
  display: inline-block;
  background: linear-gradient(135deg, var(--vermelho), #ff6b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
}
.hero-stat-lbl {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
}
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.hero-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.1);
  transition: var(--trans);
}
.hero-img:hover img { filter: brightness(1) saturate(1.2); transform: scale(1.03); }
.hero-img-grande {
  grid-column: 1 / -1;
  height: 220px;
}
.hero-img-peq { height: 160px; }
.hero-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: var(--branco);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
}
/* Decoração do hero visual */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(227,6,19,.2);
  border-radius: 50%;
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}

/* ── SOBRE ───────────────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-wrapper {
  position: relative;
}
.sobre-img-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--sombra-lg);
}
.sobre-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--azul);
  color: var(--branco);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--sombra-lg);
}
.sobre-img-badge .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--branco);
}
.sobre-img-badge .txt {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.sobre-texto p {
  color: var(--cinza-med);
  line-height: 1.85;
  margin-bottom: 16px;
}
.sobre-texto p strong { color: var(--azul); }
.sobre-cta-texto {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vermelho);
  margin: 24px 0 28px;
  padding: 14px 20px;
  border-left: 4px solid var(--vermelho);
  background: #fff5f5;
  border-radius: 0 8px 8px 0;
}

/* ── SERVIÇOS ────────────────────────────────────────────────── */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.servico-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: var(--borda);
  background: var(--branco);
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--vermelho));
  transform: scaleX(0);
  transition: var(--trans);
}
.servico-card:hover { box-shadow: var(--sombra-lg); transform: translateY(-6px); border-color: transparent; }
.servico-card:hover::before { transform: scaleX(1); }
.servico-icon {
  width: 64px;
  height: 64px;
  background: var(--azul-cl);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--azul);
  transition: var(--trans);
}
.servico-card:hover .servico-icon {
  background: var(--azul);
  color: var(--branco);
}
.servico-nome {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 10px;
}
.servico-desc {
  font-size: .88rem;
  color: var(--cinza-med);
  line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-esc) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(255,255,255,.04);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(227,6,19,.08);
  border-radius: 50%;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-txt h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 10px;
}
.cta-banner-txt p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
}
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PORTFÓLIO ───────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,48,135,.92) 100%);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-titulo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 4px;
}
.portfolio-cat {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── DEPOIMENTOS ─────────────────────────────────────────────── */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card {
  background: var(--branco);
  border: var(--borda);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  box-shadow: var(--sombra);
}
.depo-aspas {
  font-size: 4rem;
  color: var(--azul-cl);
  line-height: .5;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.depo-texto {
  font-size: .95rem;
  color: var(--cinza-med);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.depo-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }
.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: var(--borda);
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.depo-nome { font-weight: 700; color: var(--azul); font-size: .92rem; }
.depo-empresa { font-size: .78rem; color: var(--cinza-med); }

/* ── CLIENTES (LOGOS) ────────────────────────────────────────── */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.cliente-logo {
  background: var(--branco);
  border: var(--borda);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  filter: grayscale(80%);
  opacity: .7;
  min-height: 80px;
}
.cliente-logo:hover { filter: grayscale(0); opacity: 1; box-shadow: var(--sombra); }
.cliente-logo img { max-height: 40px; width: auto; object-fit: contain; }
.cliente-logo-placeholder {
  font-size: .8rem;
  font-weight: 700;
  color: var(--azul);
  text-align: center;
}

/* ── FORMULÁRIO CONTATO ──────────────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contato-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 16px;
}
.contato-info p {
  color: var(--cinza-med);
  line-height: 1.8;
  margin-bottom: 28px;
}
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contato-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--azul);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contato-item-txt strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.contato-item-txt span { color: var(--cinza-med); font-size: .92rem; }
.form-box {
  background: var(--branco);
  border: var(--borda);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--sombra-lg);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .92rem;
  font-family: var(--fonte);
  color: var(--cinza-esc);
  background: var(--branco);
  transition: var(--trans);
  outline: none;
}
.form-control:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(0,48,135,.1); }
.form-control::placeholder { color: #9ca3af; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-mensagem {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-mensagem.sucesso { background: #dcfce7; color: #166534; display: block; }
.form-mensagem.erro    { background: #fee2e2; color: #991b1b; display: block; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--azul-esc); color: rgba(255,255,255,.8); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
}
.footer-logo-txt .nome { color: var(--branco); font-size: 1.2rem; font-weight: 800; }
.footer-logo-txt .slogan { color: var(--vermelho); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-sobre {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin: 16px 0;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--vermelho); color: var(--branco); }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--branco); }
.footer-col ul li i { font-size: .8rem; color: var(--vermelho); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: var(--branco); }

/* ── WHATSAPP FLUTUANTE ──────────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpp-float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: var(--trans);
  position: relative;
  flex-shrink: 0;
}
.wpp-float-btn:hover { transform: scale(1.1); background: #128C7E; color: var(--branco); }
.wpp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  animation: wpp-ring 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes wpp-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wpp-tooltip {
  background: var(--cinza-esc);
  color: var(--branco);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--trans);
  pointer-events: none;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(0); }

/* ── COOKIES BANNER ──────────────────────────────────────────── */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(10,14,39,.97);
  color: rgba(255,255,255,.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookies-banner.show { transform: translateY(0); }
.cookies-txt { font-size: .88rem; line-height: 1.6; }
.cookies-txt a { color: #60a5fa; text-decoration: underline; }
.cookies-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookies-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.cookies-btn-accept { background: var(--azul); color: var(--branco); }
.cookies-btn-accept:hover { background: var(--vermelho); }
.cookies-btn-reject { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.cookies-btn-reject:hover { background: rgba(255,255,255,.15); }

/* ── MODAL PRIVACIDADE ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--branco);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sombra-lg);
}
.modal-header {
  padding: 24px 28px;
  border-bottom: var(--borda);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--azul); }
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--cinza-med);
  padding: 4px;
}
.modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.modal-body h4 { color: var(--azul); font-size: 1rem; margin: 20px 0 8px; }
.modal-body p { font-size: .9rem; color: var(--cinza-med); line-height: 1.8; margin-bottom: 12px; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── RESPONSIVO ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 60px; }
  .hero-visual { order: -1; }
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-nav, .header-cta { display: none; }
  .header-nav.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--branco); padding: 20px; gap: 4px; box-shadow: 0 8px 30px rgba(0,0,0,.1); z-index: 999; }
  .nav-toggle { display: flex; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .hero-collage { grid-template-columns: 1fr; }
  .hero-img-grande { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .sobre-img-badge { right: 0; bottom: -16px; }
}
@media (max-width: 480px) {
  .servicos-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 14px 28px; }
  .hero-actions { flex-direction: column; }
  .wpp-float { bottom: 20px; right: 20px; }
  .wpp-float-btn { width: 56px; height: 56px; font-size: 1.5rem; }
}
