/* ====================================================
   ZAZO — style.css  |  Versão definitiva
   Auditado para zero overflow horizontal em mobile
   Paleta: navy · ciano · magenta · amarelo · laranja
   Font: Montserrat + Inter  |  Mobile-first
   ==================================================== */

/* ══════════════════════════════════════════
   1. TOKENS
══════════════════════════════════════════ */
:root {
  --navy: #0d2040;
  --navy-2: #162d58;
  --cyan: #00b8d9;
  --magenta: #9b1f7a;
  --yellow: #f2c200;
  --orange: #f47920;
  --green-wa: #25d366;

  --white: #ffffff;
  --off: #f8fafc;
  --g100: #eef2f7;
  --g200: #dde3ec;
  --g400: #94a3b8;
  --g600: #475569;
  --g900: #0f172a;

  --fd: "Montserrat", sans-serif;
  --fb: "Inter", sans-serif;

  --hdr-h: 64px;

  --max: 1220px;
  --pad: clamp(
    10px,
    5vw,
    2rem
  ); /* piso de 10px no mobile — evita conteúdo colado na borda */

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-f: 9999px;

  --sh-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --sh-md: 0 6px 24px rgba(0, 0, 0, 0.09);
  --sh-lg: 0 12px 48px rgba(0, 0, 0, 0.13);
  --sh-xl: 0 24px 64px rgba(0, 0, 0, 0.17);

  --ti: 150ms ease;
  --tb: 270ms ease;
  --ts: 460ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════
   2. RESET  — proteção global contra overflow
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--g600);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

*:not(script):not(style) {
  max-width: 100%;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a,
p,
span,
li,
td,
th,
label,
button,
input,
textarea {
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
address {
  font-style: normal;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   3. LAYOUT — .container é a única fonte de padding lateral
══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ══════════════════════════════════════════
   4. TIPOGRAFIA
══════════════════════════════════════════ */
h1 {
  font-family: var(--fd);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  word-break: break-word;
  overflow-wrap: break-word;
}
h2 {
  font-family: var(--fd);
  font-size: clamp(1.65rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-top: 0.4rem;
  word-break: break-word;
}
h3 {
  font-family: var(--fd);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  word-break: break-word;
}
p {
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   5. COMPONENTES COMUNS
══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--fd);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: var(--r-f);
  flex-shrink: 0;
}
.eyebrow-navy {
  color: var(--navy);
}
.eyebrow-navy::before {
  background: var(--navy);
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.65);
}
.eyebrow-light::before {
  background: rgba(255, 255, 255, 0.45);
}

.sec-hdr {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.sec-hdr p {
  margin-top: 0.65rem;
  color: var(--g400);
  font-size: 1rem;
  max-width: min(54ch, 100%);
  margin-inline: auto;
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
}
.rv-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) var(--d, 0s);
}
.rv.on,
.rv-right.on {
  opacity: 1;
  transform: translateY(0);
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-f);
  transition: transform var(--ti), box-shadow var(--tb), background var(--ti);
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
}
.btn-main:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13, 32, 64, 0.3);
}
.btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--fd);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 0.7rem 1.35rem;
  border-radius: var(--r-f);
  transition: color var(--ti), border-color var(--ti), background var(--ti),
    transform var(--ti);
  max-width: 100%;
}
.btn-sec:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.txt-cyan {
  color: var(--cyan);
}
.txt-magenta {
  color: var(--magenta);
}
.txt-yellow {
  color: var(--yellow);
}
.txt-orange {
  color: var(--orange);
}
em {
  font-style: normal;
  color: var(--cyan);
}
strong {
  color: var(--navy);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   6. HEADER
══════════════════════════════════════════ */
.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 60%;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  transition: height 270ms ease;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  background: var(--white);
  border-bottom: 1px solid var(--g200);
  transition: box-shadow var(--tb), height var(--tb), margin var(--tb),
    border-radius var(--tb);
  max-width: 100%;
  overflow: hidden;
}
.hdr.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
  height: 58px;
}

.hdr-row {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.75rem;
}

.nav-desk {
  display: none;
  flex: 1;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.nd-link {
  font-family: var(--fd);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g600);
  transition: color var(--ti);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nd-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: var(--r-f);
  transition: width var(--tb);
}
.nd-link:hover,
.nd-link.active {
  color: var(--navy);
}
.nd-link:hover::after,
.nd-link.active::after {
  width: 100%;
}

.hdr-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.78rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--r-f);
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background var(--ti), transform var(--ti);
}
.hdr-cta:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 902;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: var(--r-f);
  transition: transform var(--tb), opacity var(--ti), width var(--tb);
  transform-origin: center;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  z-index: 901;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mob-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mob-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.mm-link {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 6vw, 1.6rem);
  font-weight: 800;
  color: var(--navy);
  transition: color var(--ti);
}
.mm-link:hover {
  color: var(--cyan);
}
.mm-cta {
  display: inline-block;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: var(--r-f);
  margin-top: 0.5rem;
  transition: background var(--ti);
}
.mm-cta:hover {
  background: var(--navy-2);
}

/* ══════════════════════════════════════════
   7. HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--hdr-h);
  overflow: hidden;
}

.hero-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0);
}
.ribbon {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.ribbon-cyan {
  width: min(400px, 80vw);
  height: min(400px, 80vw);
  background: var(--cyan);
  top: -150px;
  right: -80px;
}
.ribbon-magenta {
  width: min(300px, 60vw);
  height: min(300px, 60vw);
  background: var(--magenta);
  bottom: 5%;
  left: -80px;
  opacity: 0.1;
}
.ribbon-yellow {
  width: min(240px, 50vw);
  height: min(240px, 50vw);
  background: var(--yellow);
  bottom: 20%;
  right: 5%;
  opacity: 0.08;
}
.ribbon-orange {
  width: min(180px, 40vw);
  height: min(180px, 40vw);
  background: var(--orange);
  top: 40%;
  left: 20%;
  opacity: 0.07;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding-block: 2.5rem 2rem;
}

.hero-text {
  min-width: 0;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 184, 217, 0.1);
  border: 1px solid rgba(0, 184, 217, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-f);
  padding: 0.28rem 0.85rem;
  margin-bottom: 0.85rem;
  max-width: 100%;
  animation: fdUp 0.8s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: var(--r-f);
  animation: blinkDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: min(48ch, 100%);
  line-height: 1.75;
  animation: fdUp 0.9s ease 0.15s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  animation: fdUp 0.9s ease 0.28s both;
  min-width: 0;
}

/* ══════════════════════════════════════════
   HERO PANEL — stats maiores, modernos e responsivos
══════════════════════════════════════════ */
.hero-panel {
  display: block;
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-top: 0.5rem;
}

.hp-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.hp-stat {
  position: relative;
  padding: 1.35rem 0.9rem;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform var(--tb), border-color var(--tb), box-shadow var(--tb);
}
.hp-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
}
.hp-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.hp-stat-cyan {
  background: rgba(0, 184, 217, 0.14);
}
.hp-stat-cyan::before {
  background: radial-gradient(
    circle at top right,
    var(--cyan) 0%,
    transparent 70%
  );
}
.hp-stat-cyan:hover {
  border-color: rgba(0, 184, 217, 0.4);
}
.hp-stat-magenta {
  background: rgba(155, 31, 122, 0.14);
}
.hp-stat-magenta::before {
  background: radial-gradient(
    circle at top right,
    var(--magenta) 0%,
    transparent 70%
  );
}
.hp-stat-magenta:hover {
  border-color: rgba(155, 31, 122, 0.4);
}
.hp-stat-yellow {
  background: rgba(242, 194, 0, 0.12);
}
.hp-stat-yellow::before {
  background: radial-gradient(
    circle at top right,
    var(--yellow) 0%,
    transparent 70%
  );
}
.hp-stat-yellow:hover {
  border-color: rgba(242, 194, 0, 0.4);
}
.hp-stat-num {
  position: relative;
  z-index: 1;
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hp-stat-cap {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hp-stat-cyan .hp-stat-num {
  color: var(--cyan);
}
.hp-stat-magenta .hp-stat-num {
  color: #e08ccf;
}
.hp-stat-yellow .hp-stat-num {
  color: var(--yellow);
}
.hp-tag-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--r-lg);
  padding: 0.85rem 1rem;
  max-width: 100%;
}

/* ══════════════════════════════════════════
   HERO — Marcas que confiam na ZAZO (marquee de logos)
══════════════════════════════════════════ */
.hero-marcas {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.5rem;
  overflow: hidden;
}
.hero-marcas-label {
  display: block;
  text-align: center;
  font-family: var(--fd);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}
.marcas-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.marcas-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
  width: max-content;
  animation: marcasScroll 28s linear infinite;
}
.marcas-track-wrap:hover .marcas-track {
  animation-play-state: paused;
}
.marcas-logo {
  height: clamp(22px, 4vw, 32px);
  width: auto;
  max-width: none;
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(1) brightness(3);
  transition: opacity var(--tb);
}
.marcas-logo:hover {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .marcas-track {
    animation: none;
  }
}

/* ══════════════════════════════════════════
   SOBRE — REDESIGN COMPLETO
══════════════════════════════════════════ */
.sobre {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sobre-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sobre-visual {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sobre-img-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--off);
  border: 1px solid var(--g200);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}
.sobre-principal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sobre-img-wrapper:hover .sobre-principal-img {
  transform: scale(1.03);
}

.sobre-marcas {
  background: var(--off);
  border-radius: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--g200);
}
.sobre-marcas-titulo {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}
.sobre-marcas-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.sobre-marcas-lista span {
  background: var(--white);
  border-radius: 30px;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--g200);
}

.sobre-content {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sobre-content h2 {
  margin-top: 0.2rem;
}
.sobre-content h2 em {
  color: var(--cyan);
  font-style: normal;
}
.sobre-content p {
  color: var(--g600);
  max-width: 100%;
}
.sobre-content strong {
  color: var(--navy);
}

.sobre-diferenciais {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-block: 0.5rem;
}
.diferencial {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--off);
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid var(--g200);
  transition: all 0.2s ease;
}
.diferencial:hover {
  transform: translateX(5px);
  border-color: rgba(0, 184, 217, 0.3);
  box-shadow: var(--sh-sm);
}
.dif-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dif-icon-cyan {
  background: rgba(0, 184, 217, 0.12);
  color: var(--cyan);
}
.dif-icon-magenta {
  background: rgba(155, 31, 122, 0.1);
  color: var(--magenta);
}
.dif-icon-yellow {
  background: rgba(242, 194, 0, 0.1);
  color: #b8860b;
}
.dif-icon-orange {
  background: rgba(244, 121, 32, 0.1);
  color: var(--orange);
}
.diferencial div:last-child {
  flex: 1;
}
.diferencial strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.diferencial p {
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0;
  color: var(--g400);
}

@media (min-width: 768px) {
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .sobre-visual {
    order: 1;
    position: sticky;
    top: 5rem;
  }
  .sobre-content {
    order: 2;
  }
  .sobre-diferenciais {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .diferencial {
    padding: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .sobre-diferenciais {
    gap: 1.2rem;
  }
  .diferencial {
    padding: 1rem 1.2rem;
  }
  .sobre-selo {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2em !important;
  }
  .btn-main,
  .btn-sec {
    margin: 0 auto;
  }
  .hero-inner {
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════
   9. SERVIÇOS (grid de cards)
══════════════════════════════════════════ */
.servicos {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: var(--off);
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.servico-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border-radius: 2rem;
  padding: 1.8rem 1.5rem 1.8rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.servico-card-cyan::before {
  background: var(--cyan);
}
.servico-card-magenta::before {
  background: var(--magenta);
}
.servico-card-yellow::before {
  background: var(--yellow);
}
.servico-card-orange::before {
  background: var(--orange);
}
.servico-card-navy::before {
  background: var(--navy);
}

.servico-card:hover::before {
  opacity: 0.15;
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 184, 217, 0.2);
}

.servico-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 20px;
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease;
}

.servico-card:hover .servico-icon {
  transform: scale(1.02);
}

.servico-card-cyan .servico-icon svg {
  stroke: var(--cyan);
}
.servico-card-magenta .servico-icon svg {
  stroke: var(--magenta);
}
.servico-card-yellow .servico-icon svg {
  stroke: #b8860b;
}
.servico-card-orange .servico-icon svg {
  stroke: var(--orange);
}
.servico-card-navy .servico-icon svg {
  stroke: var(--navy);
}

.servico-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

.servico-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--g600);
  margin: 0;
  flex: 1;
}

.servico-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.9rem;
  border-radius: 40px;
  margin-top: 0.4rem;
  background: rgba(0, 0, 0, 0.03);
  color: var(--g600);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.servico-card-cyan .servico-tag {
  background: rgba(0, 184, 217, 0.08);
  color: #006d82;
}
.servico-card-magenta .servico-tag {
  background: rgba(155, 31, 122, 0.06);
  color: var(--magenta);
}
.servico-card-yellow .servico-tag {
  background: rgba(242, 194, 0, 0.08);
  color: #8c7000;
}
.servico-card-orange .servico-tag {
  background: rgba(244, 121, 32, 0.08);
  color: #b85300;
}
.servico-card-navy .servico-tag {
  background: rgba(13, 32, 64, 0.06);
  color: var(--navy);
}

@media (min-width: 540px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .servico-card {
    padding: 2rem 1.8rem;
  }
}

@media (min-width: 1280px) {
  .servicos-grid {
    gap: 2rem;
  }
}

/* ══════════════════════════════════════════
   10. PROCESSO
══════════════════════════════════════════ */
.processo {
  padding-block: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
}
.proc-wrap {
  position: relative;
}
.proc-line {
  display: none;
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--cyan),
    var(--magenta),
    var(--yellow),
    var(--orange)
  );
  border-radius: var(--r-f);
}
.proc-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pstep {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  min-width: 0;
}
.pstep-num {
  width: 52px;
  height: 52px;
  border-radius: var(--r-f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--sh-md);
}
.pstep-num-cyan {
  background: var(--cyan);
}
.pstep-num-magenta {
  background: var(--magenta);
}
.pstep-num-yellow {
  background: var(--yellow);
  color: #5a4700;
}
.pstep-num-orange {
  background: var(--orange);
}
.pstep-card {
  flex: 1;
  min-width: 0;
  background: var(--off);
  border: 1.5px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem;
  transition: box-shadow var(--tb), border-color var(--tb);
}
.pstep-card:hover {
  box-shadow: var(--sh-lg);
}
.pstep:nth-child(1) .pstep-card:hover {
  border-color: rgba(0, 184, 217, 0.3);
}
.pstep:nth-child(2) .pstep-card:hover {
  border-color: rgba(155, 31, 122, 0.25);
}
.pstep:nth-child(3) .pstep-card:hover {
  border-color: rgba(242, 194, 0, 0.3);
}
.pstep:nth-child(4) .pstep-card:hover {
  border-color: rgba(244, 121, 32, 0.3);
}
.pstep-tag {
  display: inline-block;
  padding: 0.16rem 0.6rem;
  border-radius: var(--r-f);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  max-width: 100%;
}
.pstep:nth-child(1) .pstep-tag {
  background: rgba(0, 184, 217, 0.1);
  color: #006d82;
  border: 1px solid rgba(0, 184, 217, 0.2);
}
.pstep:nth-child(2) .pstep-tag {
  background: rgba(155, 31, 122, 0.1);
  color: var(--magenta);
  border: 1px solid rgba(155, 31, 122, 0.2);
}
.pstep:nth-child(3) .pstep-tag {
  background: rgba(242, 194, 0, 0.12);
  color: #7d6700;
  border: 1px solid rgba(242, 194, 0, 0.25);
}
.pstep:nth-child(4) .pstep-tag {
  background: rgba(244, 121, 32, 0.1);
  color: #b85300;
  border: 1px solid rgba(244, 121, 32, 0.2);
}
.pstep-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  min-width: 0;
}
.pstep-card p {
  font-size: 0.85rem;
  color: var(--g400);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  min-width: 0;
}
.pstep-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pstep-flags span {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--g600);
  background: var(--g100);
  border-radius: var(--r-sm);
  padding: 0.18rem 0.55rem;
}

/* ══════════════════════════════════════════
   11. PORTFÓLIO
══════════════════════════════════════════ */
.portfolio {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--off);
}
.port-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.port-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--g200);
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  transition: transform var(--ts), box-shadow var(--ts);
  min-width: 0;
  max-width: 100%;
}
.port-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.port-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1203 / 1500;
  overflow: hidden;
  background-color: var(--ph, var(--navy));
  flex-shrink: 0;
}
.port-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}
.port-item:hover .port-img-wrap img {
  transform: scale(1.04);
}
.port-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 32, 64, 0.88) 0%,
    rgba(13, 32, 64, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--tb);
}
.port-item:hover .port-hover {
  opacity: 1;
}
.port-badge {
  font-family: var(--fd);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--cyan);
  padding: 0.18rem 0.65rem;
  border-radius: var(--r-f);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.port-loc {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.port-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem 0.85rem 0.75rem;
  background: var(--white);
  flex: 1;
  min-width: 0;
}
.port-cat {
  font-family: var(--fd);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.port-desc {
  font-size: 0.8rem;
  color: var(--g600);
}

.port-cta {
  cursor: pointer;
  border: none;
  min-width: 0;
  max-width: 100%;
}
.port-cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  aspect-ratio: 1203 / 1500;
  width: 100%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  overflow: hidden;
  transition: opacity var(--tb);
}
.port-cta-inner:hover {
  opacity: 0.9;
}
.pcta-r {
  position: absolute;
  border-radius: var(--r-f);
  transform: rotate(-40deg);
  pointer-events: none;
}
.pcta-r1 {
  width: 140px;
  height: 16px;
  background: var(--cyan);
  opacity: 0.14;
  top: -6px;
  right: -15px;
}
.pcta-r2 {
  width: 110px;
  height: 13px;
  background: var(--magenta);
  opacity: 0.1;
  bottom: 8px;
  left: -8px;
}
.pcta-r3 {
  width: 80px;
  height: 11px;
  background: var(--yellow);
  opacity: 0.1;
  bottom: 28px;
  right: 15px;
}
.pcta-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 184, 217, 0.15);
  border: 1.5px solid rgba(0, 184, 217, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.port-cta-inner strong {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  min-width: 0;
}
.port-cta-inner > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
.pcta-btn {
  margin-top: 0.4rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--fd);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.5rem 1.35rem;
  border-radius: var(--r-f);
  position: relative;
  z-index: 1;
  transition: background var(--ti), transform var(--ti);
}
.port-cta-inner:hover .pcta-btn {
  background: #00d4f5;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   12. CTA FINAL
══════════════════════════════════════════ */
.cta-sec {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: inset(0);
}
.ctar {
  position: absolute;
  border-radius: 999px;
  transform: rotate(-30deg);
  filter: blur(2px);
  opacity: 0.15;
}
.ctar-1 {
  width: min(300px, 70vw);
  height: 40px;
  background: var(--cyan);
  top: -15px;
  right: 5%;
}
.ctar-2 {
  width: min(250px, 60vw);
  height: 32px;
  background: var(--magenta);
  top: 8px;
  right: 3%;
}
.ctar-3 {
  width: min(200px, 50vw);
  height: 28px;
  background: var(--yellow);
  bottom: -10px;
  left: 3%;
}
.ctar-4 {
  width: min(180px, 45vw);
  height: 24px;
  background: var(--orange);
  bottom: 10px;
  left: 6%;
}

.cta-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.cta-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}
.cta-left h2 {
  color: var(--white);
}
.cta-left h2 em {
  color: var(--cyan);
}
.cta-left > p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: min(46ch, 100%);
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: color var(--ti);
  text-decoration: none;
  min-width: 0;
}
.cta-contact:hover {
  color: var(--cyan);
}
.cta-ci {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  transition: background var(--ti);
}
.cta-contact:hover .cta-ci {
  background: rgba(0, 184, 217, 0.12);
  border-color: rgba(0, 184, 217, 0.3);
}
.cta-contact > div {
  min-width: 0;
}
.cta-contact small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}
.cta-contact strong {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  min-width: 0;
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.cta-wpp-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #25d366;
  border-radius: var(--r-xl);
  /* padding: 1.25rem 1.5rem; */
  color: var(--white);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--ti), box-shadow var(--tb);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  min-width: 0;
}
.cta-wpp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}
.cta-wpp-btn > div {
  min-width: 0;
  flex: 1;
}
.cta-wpp-btn span {
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.cta-wpp-btn strong {
  font-weight: 800;
  font-size: 1.2rem;
  display: block;
}
.cta-wpp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: inherit;
  animation: wppP 2.5s ease-in-out infinite;
}
.cta-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ══════════════════════════════════════════
   CTA — Mockup de telefone (WhatsApp)
══════════════════════════════════════════ */
.phone-frame {
  position: relative;
  width: min(300px, 100%);
  margin-inline: auto;
  background: linear-gradient(160deg, #2a2a30, #08080a);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone-frame::before {
  /* notch */
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #08080a;
  border-radius: 12px;
  z-index: 2;
}
.phone-frame::after {
  /* botão lateral */
  content: "";
  position: absolute;
  right: -3px;
  top: 118px;
  width: 3px;
  height: 64px;
  background: #050506;
  border-radius: 2px 0 0 2px;
}
.phone-screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #ece5dd;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.wpp-chat {
  background: #ece5dd;
  max-width: 100%;
}
.wpp-chat-header {
  background: #075e54;
  padding: 1.6rem 1rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wpp-chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.wpp-chat-header > div {
  min-width: 0;
}
.wpp-chat-header strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--fd);
  font-weight: 700;
}
.wpp-chat-header span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}
.wpp-chat-body {
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wpp-msg {
  max-width: 85%;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
  min-width: 0;
}
.wpp-msg p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: #111;
}
.wpp-msg span {
  font-size: 0.62rem;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  text-align: right;
  margin-top: 0.2rem;
}
.wpp-msg-in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.wpp-msg-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}
.wpp-msg-out span {
  color: #53bdeb;
}
.wpp-chat-input {
  background: #fff;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.wpp-chat-input span {
  font-size: 0.82rem;
  color: var(--g400);
  flex: 1;
}
.wpp-chat-input svg {
  color: #075e54;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   13. FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--g900);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.footer-logo {
  height: 52px;
  width: auto;
}
.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: min(28ch, 100%);
  line-height: 1.65;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.fsoc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: background var(--ti), color var(--ti), transform var(--ti);
  flex-shrink: 0;
}
.fsoc:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-nav {
  min-width: 0;
}
.footer-addr {
  min-width: 0;
}
.footer-nav h4,
.footer-addr h4 {
  font-family: var(--fd);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a,
.footer-addr a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--ti);
}
.footer-nav a:hover,
.footer-addr a:hover {
  color: var(--cyan);
}
.footer-addr ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-addr li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  min-width: 0;
}
.footer-addr li > span,
.footer-addr li > a {
  min-width: 0;
}
.footer-addr svg {
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 1rem;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.footer-bottom-inner p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom-inner a {
  color: var(--cyan);
  transition: color var(--ti);
}
.footer-bottom-inner a:hover {
  color: rgba(0, 184, 217, 0.8);
}

/* ══════════════════════════════════════════
   14. FLUTUANTES
══════════════════════════════════════════ */
.wpp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 888;
  width: 54px;
  height: 54px;
  background: var(--green-wa);
  border-radius: var(--r-f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--ti), box-shadow var(--tb);
  text-decoration: none;
}
.wpp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wpp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  border-radius: var(--r-f);
  animation: wppFade 2.5s ease-in-out infinite;
  pointer-events: none;
}
.btt {
  position: fixed;
  bottom: 1.25rem;
  right: 5rem;
  z-index: 887;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--sh-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--tb), transform var(--tb), background var(--ti);
}
.btt.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.btt:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   15. KEYFRAMES
══════════════════════════════════════════ */
@keyframes fdUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blinkDot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes wppFade {
  0% {
    opacity: 0.7;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes marcasScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   16. RESPONSIVE — mobile first
══════════════════════════════════════════ */

@media (min-width: 480px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
  .sobre-visual {
    order: 1;
    gap: 1.25rem;
    min-width: 0;
  }
  .sobre-content {
    order: 2;
    min-width: 0;
  }

  .proc-line {
    display: block;
  }

  .port-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .cta-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .cta-wpp-btn {
    max-width: 320px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-nav {
    min-width: 0;
  }
  .footer-addr {
    min-width: 0;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  :root {
    --hdr-h: 72px;
    --pad: clamp(1.5rem, 3vw, 2.75rem);
  }

  .hdr {
    margin: 10px;
    border-radius: 12px;
    height: var(--hdr-h);
  }
  .hdr.scrolled {
    margin: 0;
    border-radius: 0;
    height: 60px;
  }
  .hdr.scrolled .logo-img {
    height: 38px;
  }

  .hero {
    padding-top: calc(var(--hdr-h) + 14px);
  }
  .logo-img {
    height: 50px;
  }

  .nav-desk {
    display: flex;
  }
  .hdr-cta {
    display: flex;
  }
  .burger {
    display: none;
  }
  .mob-menu {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding-block: 4rem 2.5rem;
  }
  .hero-text {
    max-width: 760px;
    flex-shrink: 0;
  }
  .hero-panel {
    display: block;
    flex: 1;
    max-width: 380px;
  }

  .sobre-visual {
    position: sticky;
    top: 5.5rem;
  }

  .cta-wpp-btn {
    max-width: 340px;
    padding: 0.5rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  }
}

@media (min-width: 1280px) {
  :root {
    --pad: 3rem;
  }
}

@media print {
  .hdr,
  .wpp-float,
  .btt,
  .burger,
  .mob-menu {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ══════════════════════════════════════════
   SOBRE — Feat-items com imagem de fundo
══════════════════════════════════════════ */
.sobre-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-block: 0.75rem;
}
.sobre-feat-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  padding: 1rem 0.85rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform var(--tb), box-shadow var(--tb);
  min-width: 0;
}
.sobre-feat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.sobre-feat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 32, 64, 0.92) 0%,
    rgba(13, 32, 64, 0.6) 50%,
    rgba(13, 32, 64, 0.25) 100%
  );
  z-index: 0;
}
.sfi-ico {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  background: rgba(0, 184, 217, 0.2);
  border: 1px solid rgba(0, 184, 217, 0.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 0.45rem;
  flex-shrink: 0;
}
.sobre-feat-item strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 700;
  display: block;
  line-height: 1.25;
}
.sobre-feat-item p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.69rem;
  margin: 0.2rem 0 0;
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   CTA — Badges de confiança
══════════════════════════════════════════ */
.cta-badges {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-block: 0.25rem;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.cta-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-text h1 {
  flex-direction: column;
  gap: 0.1em;
  margin-bottom: 0.1em;
  line-height: 1.08;
  font-size: 4.5em;
}
