/* ============================================
   ADRITEC — Montagem e Manutenção Industrial
   Paleta extraída da logo:
   azul claro #4db2f0 / azul royal #1565c0
   grafite #10161f / prata #c8d0da / branco
   ============================================ */

:root {
  --blue: #2196f3;
  --blue-light: #4db2f0;
  --blue-dark: #0d47a1;
  --ink: #0b111a;
  --ink-2: #101826;
  --ink-3: #16202f;
  --silver: #c8d0da;
  --text: #e8edf3;
  --muted: #9aa7b8;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #4db2f0 0%, #1565c0 100%);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(33, 150, 243, .35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(33, 150, 243, .5); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(200, 208, 218, .35);
}
.btn--ghost:hover { border-color: var(--blue-light); color: var(--blue-light); transform: translateY(-3px); }
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: .6rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.header--scrolled {
  background: rgba(11, 17, 26, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
  padding: .35rem 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { height: 62px; width: auto; transition: height .3s; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.header--scrolled .header__logo { height: 50px; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--silver);
  position: relative;
  padding: .3rem 0;
  transition: color .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .3s;
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1000;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg) !important; }
.nav-toggle.open span:nth-child(2) { opacity: 0 !important; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg) !important; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7.5rem 0 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(33, 150, 243, .18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(13, 71, 161, .22), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 208, 218, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 208, 218, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 100%);
}
.hero__gears { position: absolute; inset: 0; pointer-events: none; color: rgba(77, 178, 240, .07); }
.gear { position: absolute; animation: spin 40s linear infinite; }
.gear--1 { width: 380px; top: -90px; right: -110px; }
.gear--2 { width: 260px; bottom: -70px; left: -80px; animation-direction: reverse; animation-duration: 30s; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__content { position: relative; z-index: 2; }
.hero__logo {
  height: 190px;
  width: auto;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 14px 44px rgba(33, 150, 243, .35));
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  max-width: 880px;
  margin: 0 auto 1.2rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.4rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Faixa de destaques ===== */
.strip {
  background: var(--grad);
  padding: 1.6rem 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.strip__item { display: flex; align-items: flex-start; gap: .9rem; color: var(--white); }
.strip__item svg { width: 38px; height: 38px; flex-shrink: 0; }
.strip__item strong { display: block; font-family: var(--font-head); font-size: .98rem; line-height: 1.25; }
.strip__item span { font-size: .82rem; opacity: .85; }
.strip__grid { align-items: start; }

/* ===== Números / contadores ===== */
.stats {
  position: relative;
  padding: 4.2rem 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(33, 150, 243, .14), transparent 70%),
    var(--ink-2);
  border-top: 1px solid rgba(200, 208, 218, .07);
  border-bottom: 1px solid rgba(200, 208, 218, .07);
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 208, 218, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 208, 218, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  display: block;
  margin-top: .4rem;
  font-size: .92rem;
  color: var(--silver);
}

/* ===== Setores atendidos ===== */
.sectors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  transition: transform .3s, border-color .3s;
}
.sector:hover { transform: translateY(-5px); border-color: rgba(33, 150, 243, .4); }
.sector svg { width: 40px; height: 40px; color: var(--blue-light); }
.sector span { font-size: .92rem; font-weight: 600; color: var(--silver); }

/* ===== Seções ===== */
.section { padding: 6rem 0; }
.section--dark { background: var(--ink-2); }
.section__head { text-align: center; margin-bottom: 3.4rem; }
.section__tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(33, 150, 243, .1);
  border: 1px solid rgba(33, 150, 243, .25);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
.section__desc { color: var(--muted); max-width: 600px; margin: .8rem auto 0; }
.section__cta { text-align: center; margin-top: 3rem; }

/* ===== Texto justificado (mobile e desktop) ===== */
.about__text p,
.detail__text p,
.service p,
.diff p {
  text-align: justify;
  text-align-last: left;
  hyphens: none;
  -webkit-hyphens: none;
}

/* ===== Quem Somos ===== */
.about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.2rem; align-items: start; }
.about__text p { margin-bottom: 1.1rem; color: var(--silver); }
.about__text strong { color: var(--white); }
.about__cards { display: grid; gap: 1.1rem; }
.card {
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.1rem;
  transition: transform .3s, border-color .3s;
}
.card:hover { transform: translateX(6px); border-color: rgba(33, 150, 243, .4); }
.card__icon {
  grid-row: span 2;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 26px; height: 26px; color: var(--white); }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: .2rem; }
.card p { font-size: .9rem; color: var(--muted); }

/* ===== Serviços ===== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.service {
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s;
}
.service:hover { transform: translateY(-6px); border-color: rgba(33, 150, 243, .35); box-shadow: var(--shadow); }
.service:hover::before { opacity: 1; }
.service__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(33, 150, 243, .12);
  border: 1px solid rgba(33, 150, 243, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.service__icon svg { width: 28px; height: 28px; color: var(--blue-light); }
.service h3 { font-family: var(--font-head); font-size: 1.12rem; margin-bottom: .55rem; }
.service p { font-size: .92rem; color: var(--muted); }

/* ===== Diferenciais ===== */
.diffs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.diff {
  display: flex;
  gap: 1.3rem;
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform .3s, border-color .3s;
}
.diff:hover { transform: translateY(-4px); border-color: rgba(33, 150, 243, .35); }
.diff__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .9;
}
.diff h3 { font-family: var(--font-head); font-size: 1.08rem; margin-bottom: .4rem; }
.diff p { font-size: .92rem; color: var(--muted); }
.diffs__proof {
  position: relative;
  max-width: 760px;
  margin: 4rem auto 0;
  padding: 3.4rem 2.6rem 2.6rem;
  text-align: center;
  background: var(--ink-3);
  border: 1px solid rgba(77, 178, 240, .18);
  border-radius: var(--radius);
}
.diffs__proof::before {
  content: '"';
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 120px;
  font-weight: bold;
  color: rgba(77, 178, 240, .25);
  line-height: 1;
  display: block;
  margin: 0;
}
.diffs__proof-badge {
  display: none;
}
.diffs__proof-badge svg { display: none; }
.diffs__proof p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: -0.2px;
  text-wrap: balance;
}
.diffs__proof strong {
  color: var(--blue-light);
  font-weight: 700;
}

/* ===== Portfólio / Galeria ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 208, 218, .08);
  cursor: pointer;
  transition: transform .3s, border-color .3s;
}
.gallery__item:hover { transform: scale(1.025); border-color: rgba(33, 150, 243, .4); }
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 3rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(7, 11, 18, .55) 45%, rgba(7, 11, 18, .94));
}
.gallery__cat {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--grad);
  padding: .25rem .7rem;
  border-radius: 50px;
}
.gallery__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
.clients {
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(200, 208, 218, .08);
}
.clients__head { text-align: center; margin-bottom: 2.4rem; }
.clients__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--white);
}
.clients__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  max-width: 920px;
  margin: 0 auto;
}
.client-name {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.4rem;
  background: var(--ink-3);
  border: 1px solid rgba(77, 178, 240, .2);
  border-radius: 30px;
  color: var(--silver);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: border-color .3s, transform .3s, color .3s;
}
.client-name:hover {
  border-color: rgba(77, 178, 240, .5);
  color: var(--white);
  transform: translateY(-3px);
}
.clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.client {
  flex: 0 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 1.2rem 1rem;
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .1);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
}
.client:hover {
  border-color: rgba(33, 150, 243, .45);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
  background: rgba(33, 150, 243, .08);
}
.client__logo {
  width: 100px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .15));
  transition: filter .25s;
}
.client:hover .client__logo {
  filter: drop-shadow(0 4px 12px rgba(33, 150, 243, .3));
}

/* ===== Benefícios / Diferenciais ===== */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 3rem;
  width: 100%;
  align-items: stretch;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: var(--ink-3);
  border: 1.5px solid rgba(33, 150, 243, .25);
  border-radius: 16px;
  transition: all .3s ease;
  min-height: auto;
}
.benefit:hover {
  border-color: rgba(33, 150, 243, .5);
  box-shadow: 0 12px 32px rgba(33, 150, 243, .15);
}
.benefit__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--grad);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.benefit h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.benefit__card {
  padding: 0;
  background: transparent;
  border: none;
  margin-top: 0.8rem;
}
.benefit p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.benefit p strong {
  color: var(--blue-light);
  font-weight: 600;
}

/* ===== Orçamento ===== */
.quote {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.4rem;
  align-items: start;
}
.quote__info .section__title { margin-bottom: 1rem; }
.quote__info > p { color: var(--silver); margin-bottom: 1.6rem; }
.quote__list { list-style: none; margin-bottom: 2rem; }
.quote__list li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: .7rem;
  color: var(--silver);
}
.quote__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue-light);
}
.quote__wa {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(33, 150, 243, .1);
  border: 1px solid rgba(33, 150, 243, .4);
  color: var(--blue-light);
  padding: .85rem 1.3rem;
  border-radius: 12px;
  font-size: .92rem;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.quote__wa:hover { background: rgba(33, 150, 243, .22); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(33, 150, 243, .25); }
.quote__wa svg { width: 24px; height: 24px; flex-shrink: 0; }

.quote__form {
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .1);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1.1rem; }
.form__group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--silver);
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(200, 208, 218, .15);
  border-radius: 10px;
  padding: .8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .94rem;
  transition: border-color .25s, box-shadow .25s;
}
.form__group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa7b8' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

/* Ícones dentro dos campos */
.field { position: relative; }
.field__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--blue-light);
  pointer-events: none;
}
.field--textarea .field__icon { top: 1rem; transform: none; }
.field input,
.field select,
.field textarea { padding-left: 2.85rem; }

/* Botão nativo de autopreenchimento (pessoa + seta) — claro no normal, azul da marca no hover */
.field input::-webkit-contacts-auto-fill-button,
.field input::-webkit-credentials-auto-fill-button {
  filter: brightness(0) invert(0.82);
  transition: filter .25s;
}
.field input:hover::-webkit-contacts-auto-fill-button,
.field input:focus::-webkit-contacts-auto-fill-button,
.field input:hover::-webkit-credentials-auto-fill-button,
.field input:focus::-webkit-credentials-auto-fill-button {
  /* recoloriza para o azul da marca #4db2f0 */
  filter: brightness(0) saturate(100%) invert(64%) sepia(54%) saturate(2469%) hue-rotate(176deg) brightness(95%) contrast(91%);
}
.form__group textarea { resize: vertical; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, .18);
}
.form__feedback { margin-top: 1rem; font-size: .9rem; text-align: center; color: var(--blue-light); }
.form__feedback.error { color: #f87171; }

/* ===== Footer ===== */
.footer { background: #070b12; border-top: 1px solid rgba(200, 208, 218, .07); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 2.4rem;
  padding: 4rem 0 3rem;
}
.footer__logo { height: 60px; width: auto; margin-right: 1rem; margin-bottom: 0; vertical-align: top; }
.footer__col p { font-size: .9rem; color: var(--muted); }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer__col a, .footer__col span {
  display: block;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .55rem;
  transition: color .25s;
  word-break: break-word;
}
.footer__col a:hover { color: var(--blue-light); }
.footer__contact {
  display: flex !important;
  align-items: center;
  gap: .6rem;
}
.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
  min-width: 18px;
  vertical-align: middle;
}
.footer__contact span {
  line-height: 1.4;
}
.footer__bar {
  border-top: 1px solid rgba(200, 208, 218, .07);
  padding: 1.2rem 0;
  text-align: center;
}
.footer__bar p { font-size: .82rem; color: var(--muted); }

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
  transition: transform .25s;
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .35); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== Páginas de serviço ===== */
.page-hero {
  position: relative;
  padding: 9.5rem 0 4.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(33, 150, 243, .16), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-bottom: 1px solid rgba(200, 208, 218, .07);
}
.breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: var(--muted); transition: color .25s; }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb span { color: var(--silver); }
.page-hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin: .9rem auto 1rem;
  max-width: 780px;
}
.page-hero__sub {
  color: var(--muted);
  max-width: 660px;
  font-size: 1.05rem;
  margin: 0 auto;
}

.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.detail__text {
  text-align: left;
}
.detail__text h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  color: var(--white);
}
.detail__text p {
  color: var(--silver);
  margin-bottom: 1.3rem;
  line-height: 1.8;
  font-size: .96rem;
}
.detail__text strong { color: var(--white); }

.check-card {
  background: linear-gradient(135deg, rgba(33, 150, 243, .08), rgba(13, 71, 161, .04));
  border: 1.5px solid rgba(33, 150, 243, .25);
  border-radius: var(--radius);
  padding: 2.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}
.check-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 1.6rem;
  color: var(--white);
}
.check-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.check-list li {
  position: relative;
  padding-left: 2.2rem;
  color: var(--silver);
  font-size: .94rem;
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--blue-light);
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  width: 100%;
  align-items: stretch;
}
.step {
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.step:hover { transform: translateY(-5px); border-color: rgba(33, 150, 243, .35); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.step h3 { font-family: var(--font-head); font-size: 1rem; margin-bottom: .4rem; }
.step p { font-size: .88rem; color: var(--muted); }

.cta-banner {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(33, 150, 243, .14), transparent 70%),
    var(--ink-3);
  border: 1px solid rgba(33, 150, 243, .25);
  border-radius: var(--radius);
  padding: 3.4rem 2rem;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: .7rem;
}
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.service__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: transform .25s;
}
.service:hover .service__link { transform: translateX(4px); }

/* ===== Aplicações (páginas de serviço) ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem;
}
.app {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform .3s, border-color .3s;
}
.app:hover { transform: translateY(-4px); border-color: rgba(33, 150, 243, .35); }
.app svg { width: 24px; height: 24px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.app strong { display: block; font-family: var(--font-head); font-size: 1rem; margin-bottom: .25rem; }
.app span { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* Galeria dentro das páginas de serviço (reaproveita .gallery) */
.service-gallery { margin-top: 0; }

/* ===== Animações de revelação ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== FAQ ===== */
.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq__tag {
  display: inline-block;
  border: 2px solid var(--blue-light);
  border-radius: 25px;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.faq__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.faq__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.faq__accordion {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid rgba(77, 178, 240, 0.3);
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  padding: 1.6rem;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: all 0.3s;
}
.accordion-btn:hover {
  color: var(--blue-light);
}
.icon {
  color: var(--blue-light);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(77, 178, 240, 0.2);
}
.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 1.6rem;
}
.accordion-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.accordion-content a {
  color: var(--blue-light);
  font-weight: 600;
}
.accordion-content a:hover { text-decoration: underline; }
.accordion-content strong { color: var(--text); }
.accordion-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: none;
}
.accordion-list li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  position: relative;
  padding-left: 1.2rem;
}
.accordion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* ===== Depoimentos ===== */
.depos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.depo {
  position: relative;
  background: var(--ink-3);
  border: 1px solid rgba(200, 208, 218, .08);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.8rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s;
}
.depo:hover { transform: translateY(-5px); border-color: rgba(77, 178, 240, .35); }
.depo__aspas {
  width: 34px;
  height: 34px;
  color: var(--blue-light);
  opacity: .35;
  margin-bottom: .6rem;
}
.depo__stars {
  color: #f5b301;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: .9rem;
}
.depo blockquote {
  margin: 0 0 1.4rem;
  color: var(--silver);
  font-size: .98rem;
  line-height: 1.7;
  flex: 1;
}
.depo figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border-top: 1px solid rgba(200, 208, 218, .1);
  padding-top: 1rem;
}
.depo__nome {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  font-size: .98rem;
}
.depo__cargo {
  font-size: .82rem;
  color: var(--muted);
}

/* ===== Responsivo ===== */
@media (max-width: 960px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .depos { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; }
  .quote { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(11, 17, 26, 0.99);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
  .nav-toggle { display: flex; }
  .header__logo { height: 52px; }

  .hero { padding-top: 6.5rem; }
  .hero__logo { height: 140px; }
  .section { padding: 4.2rem 0; }
  .services, .gallery, .diffs { display: grid; grid-template-columns: 1fr; }
  .diff {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.8rem;
    gap: 1rem;
  }
  .diff__num {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
  }
  .diff h3 {
    font-size: 1.15rem;
  }
  .diff p {
    font-size: 0.95rem;
  }
  .sectors { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .steps { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .client { min-height: 60px; font-size: .85rem; }
  .form__row { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .footer__grid { grid-template-columns: 1fr; padding: 3rem 0 2rem; }
  .gear--1 { width: 220px; }
  .gear--2 { width: 160px; }
}
