/* ═══════════════════════════════════════════════════════
   Amigo Construtor — Locação de Equipamentos — Folha de estilo
   Fonte: Manrope (títulos) + Inter (corpo)
   Paleta: preto/carvão industrial + amarelo-amêndoa (marca) + vermelho de destaque
═══════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────── */
:root {
  /* Cores principais */
  --c-dark:         #151515;
  --c-dark-2:       #242424;
  --c-amber:        #f5a623;
  --c-amber-mid:    #dd8f11;
  --c-amber-light:  #ffcf5c;
  --c-accent:       #e2431e;
  --c-white:        #ffffff;
  --c-off:          #faf9f6;
  --c-gray-50:      #f9fafb;
  --c-gray-100:     #f3f4f1;
  --c-gray-200:     #e7e4de;
  --c-gray-300:     #d3cfc6;
  --c-gray-500:     #78766f;
  --c-gray-700:     #3d3b34;
  --c-gray-900:     #17150f;
  --c-text:         #1c1a17;
  --c-muted:        #6b6a63;
  --c-border:       #e7e3da;
  --c-wpp:          #1fa855;

  /* Tipografia */
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font:         var(--font-body);

  /* Layout */
  --wrap: 1180px;
  --hh:   76px;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:     0 4px 16px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);

  /* Transições */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  240ms;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hh) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.04vw, 16px);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utilitários ─────────────────────────────────────── */
.container {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: 6rem; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--c-text);
  margin-top: .5rem;
}

.section__desc {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-amber-mid);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.25);
  padding: .28rem .8rem;
  border-radius: 100px;
}

/* ── Botões ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: .72rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color      var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform  var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-amber);
  color: var(--c-dark);
}
.btn--primary:hover { background: var(--c-amber-mid); box-shadow: 0 6px 20px rgba(245,166,35,.35); }

.btn--outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn--outline:hover { background: var(--c-dark); color: var(--c-white); }

.btn--wpp {
  background: var(--c-wpp);
  color: var(--c-white);
  font-size: .85rem;
  padding: .56rem 1.1rem;
}
.btn--wpp:hover { background: #188a45; box-shadow: 0 4px 14px rgba(31,168,85,.4); }

.btn--primary-hero {
  background: var(--c-amber);
  color: var(--c-dark);
  font-size: 1rem;
  padding: .9rem 2rem;
}
.btn--primary-hero:hover { background: var(--c-amber-light); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

.btn--ghost-hero {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
  font-size: 1rem;
  padding: .9rem 2rem;
}
.btn--ghost-hero:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }

.btn--cta-strip {
  background: var(--c-amber);
  color: var(--c-dark);
  padding: 1rem 2rem;
  font-size: 1rem;
  flex-shrink: 0;
}
.btn--cta-strip:hover { background: var(--c-amber-light); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* ── Logo ────────────────────────────────────────────── */
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo__img { height: 64px; width: auto; display: block; object-fit: contain; }
.logo__img--footer { height: 110px; opacity: 1; }

/* ── Header ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--hh);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.header.scrolled { border-bottom-color: var(--c-border); box-shadow: 0 2px 20px rgba(0,0,0,.07); }

.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1rem; }

/* ── Nav ─────────────────────────────────────────────── */
.nav__list { display: flex; align-items: center; gap: .1rem; }

.nav__link {
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-gray-700);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .75rem; right: .75rem;
  height: 2px;
  background: var(--c-amber);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav__link:hover { color: var(--c-amber-mid); background: rgba(245,166,35,.08); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--c-amber-mid); }

/* ── Header actions ──────────────────────────────────── */
.header__actions { display: flex; align-items: center; gap: .75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: .4rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}

.hamburger:hover { background: var(--c-gray-100); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--hh) + 5rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--c-dark) url('img/sobre-1.png') center / cover no-repeat;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__grid-pattern {
  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: 48px 48px;
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(21,21,21,.94) 0%, rgba(21,21,21,.8) 55%, rgba(21,21,21,.55) 100%),
    linear-gradient(to bottom, rgba(21,21,21,.3) 0%, transparent 40%, rgba(21,21,21,.5) 100%);
}

.hero__layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero__content { max-width: 620px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.18);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.hero__badge-dot { width: 7px; height: 7px; background: var(--c-amber); border-radius: 50%; animation: pulse-dot 2.2s ease infinite; }

@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.4); } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.4rem;
}

.hero__title-highlight { color: var(--c-amber); }

.hero__desc {
  font-size: clamp(.97rem, 1.3vw, 1.07rem);
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.8rem; }

.hero__stats { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: .1rem; }
.hero__stat strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: var(--c-white); letter-spacing: -.03em; }
.hero__stat span { font-size: .75rem; color: rgba(255,255,255,.55); font-weight: 500; }
.hero__stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── Hero visual ─────────────────────────────────────── */
.hero__visual { position: relative; width: 320px; height: 320px; flex-shrink: 0; }

.hero__chip {
  position: absolute;
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--c-text);
  background: var(--c-white);
  border-radius: var(--radius);
  padding: .5rem .9rem;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.hero__chip svg { width: 1.1em; height: 1.1em; color: var(--c-amber-mid); }

.hero__chip--1 { top: 8%;  left: -22%; animation: float1 4s ease-in-out infinite; }
.hero__chip--2 { bottom: 18%; left: -28%; animation: float2 4.5s ease-in-out infinite; }
.hero__chip--3 { top: 30%; right: -24%; animation: float3 5s ease-in-out infinite; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes num-pop { 0%{transform:scale(.6);opacity:0} 70%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }

.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__particles span { position: absolute; border-radius: 50%; background: rgba(245,166,35,.35); animation: particle-drift ease-in-out infinite; }
.hero__particles span:nth-child(1) { width:5px; height:5px; top:18%; left:62%; animation-duration:5s; animation-delay:0s; }
.hero__particles span:nth-child(2) { width:3px; height:3px; top:30%; left:82%; animation-duration:6.5s; animation-delay:-.8s; }
.hero__particles span:nth-child(3) { width:4px; height:4px; top:52%; left:70%; animation-duration:7s; animation-delay:-1.5s; }
.hero__particles span:nth-child(4) { width:3px; height:3px; top:70%; left:58%; animation-duration:5.5s; animation-delay:-2s; }
.hero__particles span:nth-child(5) { width:5px; height:5px; top:14%; left:48%; animation-duration:8s; animation-delay:-.4s; }
.hero__particles span:nth-child(6) { width:2px; height:2px; top:40%; left:90%; animation-duration:6s; animation-delay:-3s; }
.hero__particles span:nth-child(7) { width:4px; height:4px; top:78%; left:78%; animation-duration:7.5s; animation-delay:-1s; }
.hero__particles span:nth-child(8) { width:3px; height:3px; top:60%; left:44%; animation-duration:5.8s; animation-delay:-2.5s; }

@keyframes particle-drift {
  0%,100% { transform: translateY(0) translateX(0); opacity: .18; }
  33%      { transform: translateY(-12px) translateX(4px); opacity: .35; }
  66%      { transform: translateY(6px) translateX(-4px); opacity: .12; }
}

/* ── TICKER ──────────────────────────────────────────── */
.ticker { background: var(--c-amber); overflow: hidden; padding-block: .75rem; }
.ticker__track { display: flex; align-items: center; gap: 1.8rem; width: max-content; animation: ticker-scroll 28s linear infinite; white-space: nowrap; }
.ticker__track span { font-family: var(--font-display); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--c-dark); }
.ticker__dot { color: var(--c-dark) !important; font-size: .6rem !important; opacity: .55; }

@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── QUEM SOMOS ──────────────────────────────────────── */
.sobre { background: var(--c-off); }
.sobre__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.sobre__media { position: relative; padding-bottom: 2rem; }

.sobre__img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
}

.sobre__img-photo { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 600ms var(--ease); }
.sobre__img:hover .sobre__img-photo { transform: scale(1.03); }

.sobre__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: .7rem 1.2rem;
  display: flex; flex-direction: column; line-height: 1.2;
  box-shadow: var(--shadow);
}

.sobre__badge strong { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--c-amber-mid); letter-spacing: -.02em; }
.sobre__badge span { font-size: .72rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; }

.sobre__card-stat {
  position: absolute; right: -1.5rem; top: 4.5rem;
  display: flex; align-items: center; gap: .75rem;
  background: var(--c-white);
  border-radius: var(--radius);
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.sobre__card-stat--2 { top: auto; bottom: -1rem; right: -1.5rem; }

.sobre__card-stat-icon {
  width: 36px; height: 36px;
  background: rgba(245,166,35,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sobre__card-stat-icon svg { width: 18px; height: 18px; }
.sobre__card-stat > div:last-child { display: flex; flex-direction: column; gap: .1rem; }
.sobre__card-stat strong { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.sobre__card-stat span { font-size: .72rem; color: var(--c-muted); }

.sobre__content { padding-top: .5rem; }
.sobre__content .eyebrow { margin-bottom: .9rem; }
.sobre__lead { font-size: 1.05rem; line-height: 1.7; color: var(--c-gray-700); margin-top: 1.2rem; }
.sobre__text { font-size: .97rem; color: var(--c-muted); margin-top: .9rem; line-height: 1.7; }

.sobre__pillars { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .75rem; }
.pilar { display: flex; align-items: flex-start; gap: .7rem; font-size: .94rem; color: var(--c-gray-700); }
.pilar__check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--c-amber);
  color: var(--c-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700;
  margin-top: .1rem;
}

.sobre__actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }

/* ── DIFERENCIAIS (por que alugar com a gente) ───────── */
.diferenciais { background: var(--c-white); }
.diferenciais__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); justify-content: center; gap: 1.3rem; }

.dif-card {
  background: var(--c-off);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dif-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.dif-card__icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-amber-mid);
  margin-bottom: 1.1rem;
}
.dif-card__icon svg { width: 20px; height: 20px; }
.dif-card h3 { font-family: var(--font-display); font-size: .97rem; font-weight: 700; color: var(--c-text); letter-spacing: -.02em; margin-bottom: .5rem; }
.dif-card p { font-size: .86rem; color: var(--c-muted); line-height: 1.65; }

/* ── EQUIPAMENTOS ─────────────────────────────────────── */
.produtos { background: var(--c-gray-50); }

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
}

.prod-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.prod-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(245,166,35,.3); }

.prod-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--c-white);
  display: block;
}

.prod-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -.02em;
  line-height: 1.25;
}

.prod-card__desc { font-size: .86rem; color: var(--c-muted); line-height: 1.6; flex: 1; }

.prod-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-wpp);
  padding: .6rem .9rem;
  border-radius: var(--radius-sm);
  margin-top: .2rem;
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
}
.prod-card__btn svg { width: 1em; height: 1em; flex-shrink: 0; }
.prod-card__btn:hover { background: #188a45; box-shadow: 0 4px 14px rgba(31,168,85,.4); }

.produtos__catalog-cta { text-align: center; margin-top: 3rem; }

/* ── Processo — tira horizontal ──────────────────────── */
.processo { background: var(--c-off); }

.processo__strip-header { text-align: center; margin-bottom: 3rem; }
.processo__strip-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: .5rem; color: var(--c-dark); }

.processo__strip { display: flex; align-items: stretch; }

.proc-strip-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.75rem 1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease;
}
.proc-strip-step.step--visible { opacity: 1; transform: translateY(0); }
.proc-strip-step.step--visible:hover { box-shadow: 0 8px 28px rgba(245,166,35,.15); transform: translateY(-3px); }

.proc-strip-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--c-amber-mid);
  line-height: 1;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.proc-strip-step.step--visible .proc-strip-step__num { animation: num-pop .5s cubic-bezier(.34,1.56,.64,1) both; }

.proc-strip-step h3 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin: 0; }
.proc-strip-step p { font-size: .875rem; color: var(--c-muted); line-height: 1.65; margin: 0; }

.proc-strip-step__divider { flex-shrink: 0; width: 1.5rem; display: flex; align-items: center; justify-content: center; }
.proc-strip-step__divider::after {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-right: 2px solid var(--c-border);
  border-top: 2px solid var(--c-border);
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .processo__strip { flex-direction: column; gap: .75rem; }
  .proc-strip-step__divider { width: auto; height: 1.25rem; }
  .proc-strip-step__divider::after { transform: rotate(135deg); }
}

/* ── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
  position: relative;
  background: var(--c-dark) url('img/sobre-1.png') center / cover no-repeat;
  padding-block: 3.5rem;
  overflow: hidden;
}

.cta-strip::before { content: ''; position: absolute; inset: 0; background: rgba(21,21,21,.72); }
.cta-strip__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip__content { flex: 1; min-width: 240px; }

.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: .4rem;
}

.cta-strip__desc { font-size: .97rem; color: rgba(255,255,255,.75); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--c-white); }
.faq__layout { display: grid; grid-template-columns: 320px 1fr; gap: 5rem; align-items: start; }
.faq__intro { position: sticky; top: calc(var(--hh) + 2rem); }
.faq__intro .section__title { margin-top: .6rem; font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
.faq__desc { font-size: .93rem; color: var(--c-muted); line-height: 1.65; margin-top: 1rem; margin-bottom: 1.8rem; }
.faq__intro .btn { display: inline-flex; }

.faq__lista { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--c-gray-200); }
.faq-item:first-child { border-top: 1px solid var(--c-gray-200); }

.faq-item__pergunta {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--c-text);
  letter-spacing: -.02em;
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-item__pergunta:hover { color: var(--c-amber-mid); }
.faq-item__pergunta[aria-expanded="true"] { color: var(--c-amber-mid); }

.faq-item__chevron { width: 20px; height: 20px; min-width: 20px; color: var(--c-amber-mid); transition: transform 280ms var(--ease); flex-shrink: 0; }
.faq-item__pergunta[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }

.faq-item__resposta { padding-bottom: 1.3rem; overflow: hidden; }
.faq-item__resposta[hidden] { display: none; }
.faq-item__resposta p { font-size: .93rem; color: var(--c-muted); line-height: 1.7; }
.faq-item__resposta p strong { color: var(--c-text); font-weight: 600; }

@media (max-width: 860px) {
  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__intro { position: static; text-align: center; }
  .faq__intro .btn { width: 100%; justify-content: center; }
}

/* ── CONTATO ─────────────────────────────────────────── */
.contato { background: var(--c-off); }
.contato__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.contato-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contato-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.contato-card__icon {
  width: 48px; height: 48px;
  background: rgba(245,166,35,.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-amber-mid);
  margin-bottom: .3rem;
}
.contato-card__icon svg { width: 22px; height: 22px; }

.contato-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--c-text); letter-spacing: -.02em; }
.contato-card p { font-size: .9rem; color: var(--c-muted); line-height: 1.6; flex: 1; }
.contato-card__link { display: inline-block; font-size: .9rem; font-weight: 700; color: var(--c-amber-mid); margin-top: .5rem; transition: color var(--dur) var(--ease); }
.contato-card__link:hover { color: var(--c-accent); text-decoration: underline; }

/* ── RODAPÉ ──────────────────────────────────────────── */
.footer { background: var(--c-dark); }

.footer__grid { padding-top: 4rem; padding-bottom: 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; }

.footer__desc { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 1.1rem; margin-bottom: 1.3rem; }

.footer__wpp {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .83rem; font-weight: 700;
  color: var(--c-wpp);
  border: 1.5px solid rgba(31,168,85,.3);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__wpp svg { width: 1.1em; height: 1.1em; }
.footer__wpp:hover { background: var(--c-wpp); color: white; }

.footer__nav-title { font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.1rem; }
.footer__nav ul { display: flex; flex-direction: column; gap: .55rem; }
.footer__nav a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--dur) var(--ease); }
.footer__nav a:hover { color: var(--c-white); }

.footer__contact-col address { display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; }
.footer__contact-col address a { color: rgba(255,255,255,.5); transition: color var(--dur) var(--ease); }
.footer__contact-col address a:hover { color: white; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-block: 1.3rem; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--dur) var(--ease); }
.footer__bottom a:hover { color: white; }

.footer__dev { display: flex !important; align-items: flex-end; gap: 6px; }
.footer__engagi-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.footer__engagi-logo { height: 40px; width: auto; display: block; margin-bottom: -9px; }

/* ── WhatsApp flutuante ──────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 800;
  width: 56px; height: 56px;
  background: var(--c-wpp);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(31,168,85,.5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wpp-float svg { width: 28px; height: 28px; }
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(31,168,85,.6); }

.wpp-float__tip {
  position: absolute; right: calc(100% + .7rem);
  background: var(--c-text);
  color: white;
  font-size: .78rem; font-weight: 600;
  padding: .35rem .75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wpp-float__tip::after {
  content: '';
  position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-right: none;
  border-left-color: var(--c-text);
}
.wpp-float:hover .wpp-float__tip { opacity: 1; transform: translateX(0); }

/* ── Animações de entrada via JS ─────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .anim-ready { opacity: 0; transform: translateY(20px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
  .anim-ready.visible { opacity: 1; transform: translateY(0); }
}

/* ── Responsivo — 960px ──────────────────────────────── */
@media (max-width: 960px) {
  .section { padding-block: 4.5rem; }

  .nav {
    position: fixed; top: var(--hh); left: 0; right: 0;
    width: 100%;
    height: calc(100vh - var(--hh));
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    padding: 1.8rem 1.5rem;
    display: flex; flex-direction: column; gap: .4rem;
    transform: translateX(100%);
    transition: transform 300ms var(--ease);
    overflow-y: auto;
    z-index: 899;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__link { font-size: 1.05rem; padding: .75rem 1rem; }
  .hamburger { display: flex; }

  .hero__layout { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__content { max-width: 100%; }
  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { width: 240px; height: 240px; margin-inline: auto; }
  .hero__chip--1 { left: -6%; }
  .hero__chip--2 { left: -10%; }
  .hero__chip--3 { right: -6%; }

  .sobre__layout { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__card-stat, .sobre__card-stat--2 { right: 0; max-width: 200px; }

  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .contato__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}

/* ── Responsivo — 640px ──────────────────────────────── */
@media (max-width: 640px) {
  .section { padding-block: 3.5rem; }
  :root { --hh: 64px; }
  .logo__img { height: 50px; }

  .hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__visual { display: none; }
  .hero__chip { display: none; }
  .hero__stat-divider { display: none; }
  .hero__stats { gap: 1.2rem; justify-content: center; }

  .sobre__card-stat { display: none; }

  .produtos__grid { grid-template-columns: 1fr 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr; }

  .cta-strip__inner { flex-direction: column; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: .5rem; }
  .footer__dev { justify-content: center; }
}

/* ── Print ───────────────────────────────────────────── */
@media print {
  .header, .wpp-float, .ticker, .cta-strip { display: none !important; }
  .section { padding-block: 1.5rem; }
  * { box-shadow: none !important; }
}
