/* ==========================================================================
   Emporio Office — Seções
   Hero, sobre, serviços, faixa de confiança, CTA, contato, rodapé.
   ========================================================================== */

/* Top bar ---------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
}
.topbar a { color: rgba(255, 255, 255, .82); font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item i { color: var(--brand); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
  background:
    linear-gradient(115deg, rgba(18, 18, 24, .94) 0%, rgba(26, 26, 33, .84) 45%, rgba(26, 26, 33, .58) 100%),
    var(--hero-img, none) center / cover no-repeat,
    var(--grad-navy);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%; top: -30%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--brand-glow), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 span { color: var(--brand); }
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, .86);
  max-width: 600px;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .6rem; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.hero__stat b {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero__stat span { font-size: .86rem; color: rgba(255, 255, 255, .72); }

/* Faixa de confiança (sobre o hero) ------------------------------------- */
.trust-strip { background: var(--grad-navy); color: #fff; }
.trust-strip .feature__icon { background: rgba(252, 110, 2, .16); border-color: rgba(252, 110, 2, .3); color: var(--brand); }

/* Sobre / Empresa -------------------------------------------------------- */
.about__media { position: relative; }
.about__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: -18px; bottom: -22px;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .9rem;
  max-width: 250px;
}
.about__badge i {
  font-size: 1.9rem;
  color: var(--brand);
  background: var(--brand-soft);
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center; flex: none;
}
.about__badge b { display: block; color: var(--ink); line-height: 1.1; }
.about__badge span { font-size: .82rem; color: var(--muted); }

.about__list { list-style: none; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.about__list li { display: flex; align-items: flex-start; gap: .7rem; color: var(--ink); font-weight: 500; }
.about__list i { color: var(--wpp-600); font-size: 1.25rem; flex: none; margin-top: 2px; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.4rem);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 60%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .92); margin: 0; }
.cta-band .btn-light-strong { background: #fff; color: var(--brand-700); border: 0; }
.cta-band .btn-light-strong:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* Contato ---------------------------------------------------------------- */
.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card__icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.4rem; color: #fff;
  background: var(--grad-brand);
}
.contact-card span { font-size: .8rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.contact-card b, .contact-card a { color: var(--ink); font-weight: 600; font-size: 1.02rem; }
.contact-card a:hover { color: var(--brand-700); }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}

/* Rodapé ----------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .72);
  padding-top: clamp(56px, 7vw, 84px);
}
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .7rem;
}
.site-footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 38px; height: 3px; border-radius: 3px;
  background: var(--grad-brand);
}
.site-footer p { color: rgba(255, 255, 255, .68); }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--brand); }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-links a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a i { color: var(--brand); font-size: .8rem; }
.footer-contact { list-style: none; display: grid; gap: .9rem; }
.footer-contact li { display: flex; gap: .7rem; }
.footer-contact i { color: var(--brand); font-size: 1.15rem; flex: none; margin-top: 2px; }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand .brand__mark { width: 44px; height: 44px; }
.footer-brand b { color: #fff; font-size: 1.3rem; font-weight: 800; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a,
.footer-social button {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff; font-size: 1.1rem;
  border: 0; cursor: pointer; padding: 0;
  transition: background var(--t), transform var(--t);
}
.footer-social a:hover,
.footer-social button:hover { background: var(--brand); transform: translateY(-3px); color: #fff; }

/* Botão que parece link, usado no rodapé */
.btn-link-plain {
  background: none; border: 0; padding: 0;
  color: rgba(255, 255, 255, .72);
  font: inherit; cursor: pointer; text-align: left;
  transition: color var(--t-fast);
}
.btn-link-plain:hover { color: var(--brand); }

/* Unidades no rodapé ----------------------------------------------------- */
.footer-units-title {
  margin-top: clamp(40px, 5vw, 60px);
  margin-bottom: 1.4rem;
  padding-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-units-title h4 { color: #fff; font-size: 1.15rem; margin: 0; }
.footer-units-title h4::after { display: none; }
.footer-unit {
  height: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  overflow: hidden;
}
.footer-unit__body { padding: 1.2rem 1.3rem; }
.footer-unit h5 {
  color: #fff; font-size: 1.02rem; margin: 0 0 .5rem;
  display: flex; align-items: center; gap: .5rem;
}
.footer-unit h5 i { color: var(--brand); }
.footer-unit address {
  font-style: normal; font-size: .88rem;
  color: rgba(255, 255, 255, .66); margin: 0 0 .9rem; line-height: 1.55;
}
.footer-unit__links { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-unit__links a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .85rem; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
  transition: transform var(--t-fast), background var(--t);
}
.footer-unit__links a:hover { transform: translateY(-2px); }
.footer-unit__links .is-wpp { background: var(--wpp); color: #fff; }
.footer-unit__links .is-wpp:hover { background: var(--wpp-600); color: #fff; }
.footer-unit__links .is-tel { background: rgba(255, 255, 255, .1); color: #fff; }
.footer-unit__links .is-tel:hover { background: var(--brand); color: #fff; }
.footer-unit__map {
  display: block; width: 100%; height: 190px; border: 0;
  filter: grayscale(.2) contrast(1.05);
}

.subfooter {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem 0;
  font-size: .86rem;
}
.subfooter a { color: rgba(255, 255, 255, .85); }
.subfooter img { display: inline-block; vertical-align: middle; }

/* Reveal on scroll ------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
/* Sem JS: mostra tudo */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Artigo do blog --------------------------------------------------------- */
.article {
  max-width: 760px;
  margin-inline: auto;
}
.article__hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2.2rem;
}
.article h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.article h3 { margin-top: 1.8rem; }
.article p, .article li { color: var(--body); font-size: 1.05rem; }
.article ul { list-style: none; display: grid; gap: .6rem; margin: 1rem 0 1.4rem; }
.article ul li { display: flex; gap: .65rem; }
.article ul li::before { content: "\F633"; font-family: "bootstrap-icons"; color: var(--brand); font-weight: bold; }
.article__meta {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  color: var(--muted); font-size: .9rem;
  margin-bottom: 1.6rem;
}
.article__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.article blockquote {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--ink);
}
