/* Marinho Transportes — estilo premium dark (ref. ELS) */

:root {
  --azul-escuro: #0B3C5D;
  --azul-medio: #1976D2;
  --laranja: #F57C00;
  --laranja-hover: #E65100;
  --preto: #0a0a0a;
  --preto-card: #141414;
  --branco: #FFFFFF;
  --cream: #F3F0EB;
  --cinza-claro: #F5F7FA;
  --cinza-escuro: #1a1a1a;
  --cinza-texto: #555;
  --cinza-muted: #888;
  --font-titulo: 'Montserrat', sans-serif;
  --font-corpo: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-corpo);
  color: var(--cinza-escuro);
  line-height: 1.6;
  background: var(--preto);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 480px) {
  .container {
    width: min(1140px, calc(100% - 3rem));
    padding-inline: 0;
  }
}

/* ── Label & titles ── */
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 1rem;
}

.label--dark { color: var(--laranja); }
.label--light { color: rgba(255,255,255,0.85); }

h1, h2 {
  font-family: var(--font-titulo);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.title-light {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--laranja);
  margin-left: 4px;
  vertical-align: 0.15em;
}

.dot--dark { background: var(--laranja); }

.accent {
  font-style: normal;
  color: var(--laranja);
}

.section-desc {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.muted { color: var(--cinza-muted); font-size: 0.95rem; margin-top: 0.75rem; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--branco);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.header--scrolled .header__line,
body:has(.marquee--top) .header--scrolled .header__line {
  display: block;
  height: 3px;
  background: #F57C00;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 48px;
  width: auto;
  display: block;
}

.header__line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 124, 0, 0.35) 15%,
    var(--laranja) 50%,
    rgba(245, 124, 0, 0.35) 85%,
    transparent 100%
  );
}

body:has(.marquee--top) .header__line {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cinza-escuro);
  transition: color 0.2s;
}

.nav a:not(.btn):hover { color: var(--laranja); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  margin-right: -0.6rem;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--cinza-escuro);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
}

.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: var(--laranja);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--laranja);
  color: var(--branco);
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  border: 2px solid var(--laranja);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  background: var(--laranja-hover);
  border-color: var(--laranja-hover);
}

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.btn--wa { font-size: 0.95rem; padding: 0.85rem 1.5rem; }

.btn--outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.45);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--branco);
}

.btn--white-wa {
  background: var(--branco);
  color: var(--laranja);
  border-color: var(--branco);
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
}

.btn--white-wa:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn--outline-light {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--branco);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 79px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__bg img {
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(10, 10, 10, 0.78) 40%,
    rgba(10, 10, 10, 0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4rem;
  max-width: 640px;
  color: var(--branco);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.hero h1 .accent,
.hero__lead .accent {
  font-weight: 700;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__lead strong { color: var(--branco); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Marquee */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--laranja);
  overflow: hidden;
  z-index: 2;
  padding: 0.7rem 0;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 1;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--laranja), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--laranja), transparent);
}

.marquee--top {
  top: 76px;
  bottom: auto;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee__track span:not(.marquee__sep) {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.marquee__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

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

/* ── Sections ── */
.section { padding: 5.5rem 0; }

.section--cream {
  background: var(--cream);
  color: var(--cinza-escuro);
}

.section--white {
  background: var(--branco);
  color: var(--cinza-escuro);
}

.section--white h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
}

.section--white .step-card {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.section--dark {
  background: var(--preto);
  color: var(--branco);
}

.section--border {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section--navy {
  background:
    radial-gradient(circle at 88% 12%, rgba(245,124,0,0.10), transparent 55%),
    #16191d;
  color: var(--branco);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section--navy .title-light { color: var(--branco); }

.section--cream h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--preto);
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.split__right p {
  color: var(--cinza-texto);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.split__right strong { color: var(--preto); }

/* ── Sobre (quem somos) ── */
.sobre__main {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  grid-template-areas: "visual content";
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 2.5rem;
}

.sobre__visual {
  grid-area: visual;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sobre__visual img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.sobre__content {
  grid-area: content;
}

.sobre__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.sobre__lead {
  font-size: 1.05rem;
  color: var(--cinza-texto);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 520px;
}

.sobre__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.sobre-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.sobre-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,124,0,0.1);
  color: var(--laranja);
  margin-bottom: 1rem;
}

.sobre-card__ico svg {
  width: 18px;
  height: 18px;
}

.sobre-card strong {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--preto);
  margin-bottom: 0.35rem;
}

.sobre-card p {
  font-size: 0.88rem;
  color: var(--cinza-muted);
  line-height: 1.6;
  margin: 0;
}

/* Pillars */
.pillars {
  list-style: none;
  margin-top: 2rem;
}

.pillars li {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.pillars li:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }

.pillars__num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--laranja);
  flex-shrink: 0;
  padding-top: 2px;
}

.pillars strong {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pillars p {
  font-size: 0.9rem !important;
  margin: 0 !important;
  color: var(--cinza-muted) !important;
}

/* ── Serviços (interativo) ── */
.servicos {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--laranja) 0%, var(--laranja-hover) 100%);
  color: var(--branco);
}

.servicos::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.03) 10px,
    rgba(0,0,0,0.03) 11px
  );
  pointer-events: none;
}

.servicos h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--branco);
}

.servicos .dot {
  background: var(--branco);
}

.servicos .label--light {
  color: rgba(255,255,255,0.9);
}

.servicos .container {
  position: relative;
  z-index: 1;
}

.servicos__head-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.servicos__desc {
  margin-bottom: 0;
  max-width: none;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.servico-card {
  background: var(--branco);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  color: var(--preto);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.servico-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.servico-card__num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--laranja);
}

.servico-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,124,0,0.1);
  border: 1px solid rgba(245,124,0,0.25);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-card__icon svg {
  width: 24px;
  height: 24px;
}

.servico-card__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--laranja);
  background: rgba(245,124,0,0.1);
  border: 1px solid rgba(245,124,0,0.25);
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
}

.servico-card h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--preto);
}

.servico-card > p {
  font-size: 0.92rem;
  color: var(--cinza-texto);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.servico-card__checks {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.servico-card__checks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--cinza-escuro);
}

.servico-card__checks li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(245,124,0,0.12);
  border: 1px solid rgba(245,124,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F57C00' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.servico-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--laranja);
  transition: gap 0.2s;
  margin-top: auto;
}

.servico-card__link:hover {
  gap: 0.7rem;
}

.servico-card__link span {
  transition: transform 0.2s;
}

.servico-card__link:hover span {
  transform: translateX(3px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ── Coverage (área de atuação) ── */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.coverage-info .section-desc {
  margin-bottom: 2rem;
}

.coverage-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.coverage-region {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--branco);
  cursor: pointer;
  font-family: var(--font-corpo);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.coverage-region:hover {
  transform: translateY(-2px);
  border-color: rgba(245,124,0,0.5);
  background: rgba(245,124,0,0.08);
}

.coverage-region.is-active {
  border-color: var(--laranja);
  background: rgba(245,124,0,0.14);
}

.coverage-region.is-hub {
  border-color: rgba(245,124,0,0.45);
  background: rgba(245,124,0,0.1);
}

.coverage-region__ico {
  color: var(--laranja);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.coverage-region strong {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.coverage-region small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Map */
.coverage-map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coverage-map__frame {
  position: relative;
  background:
    radial-gradient(circle at 60% 35%, rgba(245,124,0,0.08), transparent 60%),
    rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-map__loading {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.brmap {
  width: 100%;
  height: auto;
  max-height: 480px;
  overflow: visible;
}

.brmap__uf {
  fill: rgba(255,255,255,0.08);
  stroke: rgba(255,255,255,0.22);
  stroke-width: 0.8;
  stroke-linejoin: round;
  transition: fill 0.25s ease, stroke 0.25s ease;
}

.brmap__uf--hub {
  fill: var(--laranja);
  stroke: #ffb366;
}

.brmap__uf.is-lit {
  fill: rgba(245,124,0,0.55);
  stroke: var(--laranja);
}

.brmap__pin { pointer-events: none; }

.brmap__dot {
  fill: var(--laranja);
  stroke: #fff;
  stroke-width: 1.5;
}

.brmap__pulse {
  fill: var(--laranja);
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPulse 2.2s ease-out infinite;
}

.brmap__pulse--delay { animation-delay: 1.1s; }

@keyframes pinPulse {
  0% { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(4.5); opacity: 0; }
}

.coverage-map__caption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
}

.coverage-map__pin-legend {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--laranja);
  box-shadow: 0 0 0 4px rgba(245,124,0,0.2);
  flex-shrink: 0;
}

/* ── Benefit cards ── */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: var(--branco);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  color: var(--laranja);
  margin-bottom: 1.25rem;
}

.benefit-card__icon svg { width: 100%; height: 100%; }

.benefit-card h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--preto);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--cinza-muted);
  line-height: 1.55;
}

/* ── Steps row (como funciona) ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.step-card {
  background: var(--branco);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.step-card__num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2rem;
  color: var(--laranja);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--preto);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--cinza-muted);
  line-height: 1.6;
}

/* ── Reviews ── */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.google-badge strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.stars {
  color: #FBBC05;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.stars--lg { font-size: 1rem; }

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: var(--preto-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  position: relative;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--laranja);
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__top strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.review-card__google {
  position: absolute;
  top: 0; right: 0;
  opacity: 0.5;
}

.review-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ── Accordion ── */
.accordion__item {
  border-top: 1px solid rgba(0,0,0,0.12);
}

.accordion__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }

.accordion__item summary {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--preto);
}

.accordion__item summary::-webkit-details-marker { display: none; }

.accordion__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--laranja);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.accordion__item[open] summary::after { content: '−'; }

.accordion__item p {
  font-size: 0.92rem;
  color: var(--cinza-muted);
  padding-bottom: 1.25rem;
  line-height: 1.65;
}

/* ── Orçamento (formulário) ── */
.orcamento {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(245,124,0,0.14), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(245,124,0,0.08), transparent 45%),
    var(--preto);
  color: var(--branco);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.orcamento__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.orcamento__intro .section-desc {
  margin-bottom: 2rem;
}

.orcamento__perks {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.orcamento__perks li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.orcamento__perk-ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(245,124,0,0.15);
  border: 1px solid rgba(245,124,0,0.4);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orcamento__perk-ico svg { width: 14px; height: 14px; }

/* Form card */
.orcamento__form {
  background: var(--branco);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: grid;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  letter-spacing: 0.01em;
}

.field label span { color: var(--laranja); }

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  color: var(--cinza-escuro);
  background: var(--cinza-claro);
  border: 1.5px solid transparent;
  border-radius: 9px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder { color: #9aa1ab; }

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--branco);
  border-color: var(--laranja);
  box-shadow: 0 0 0 4px rgba(245,124,0,0.14);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #e04b4b;
  background: #fdf2f2;
}

.btn--block {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.orcamento__note {
  font-size: 0.78rem;
  color: var(--cinza-muted);
  text-align: center;
  margin-top: -0.25rem;
}

/* ── Footer ── */
.footer {
  background:
    radial-gradient(circle at 15% 0%, rgba(245,124,0,0.10), transparent 50%),
    radial-gradient(circle at 85% 100%, rgba(245,124,0,0.06), transparent 45%),
    #121418;
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--laranja);
}

.footer__main {
  padding: 3.5rem 0 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.footer__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,124,0,0.12);
  border: 1px solid rgba(245,124,0,0.25);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer__social-link:hover {
  background: var(--laranja);
  color: var(--branco);
  transform: translateY(-2px);
}

.footer h4 {
  font-family: var(--font-titulo);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 1.35rem;
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer__links a:hover {
  color: var(--laranja);
  padding-left: 4px;
}

.footer__contact {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  transition: color 0.2s;
}

.footer__contact a:hover { color: var(--laranja); }

.footer__contact-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245,124,0,0.12);
  border: 1px solid rgba(245,124,0,0.25);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.35rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero entrance (load) */
.hero__panel > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__panel > *:nth-child(1) { animation-delay: 0.1s; }
.hero__panel > *:nth-child(2) { animation-delay: 0.22s; }
.hero__panel > *:nth-child(3) { animation-delay: 0.38s; }

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Mobile & tablet ── */
@media (max-width: 960px) {
  .servicos__head-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .servicos__cards {
    grid-template-columns: 1fr;
  }

  .review-cards,
  .steps-row { grid-template-columns: 1fr; }

  .split,
  .sobre__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .sobre__cards {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

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

  .section { padding: 4rem 0; }

  .title-light,
  .section--cream h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 79px;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Header */
  .header__inner {
    height: 68px;
  }

  .logo__img {
    height: 40px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--branco);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1rem 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn) {
    font-size: 1rem;
    padding: 0.85rem 0.75rem;
    border-radius: 6px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav a:not(.btn):active {
    background: var(--cream);
  }

  .nav .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    min-height: 48px;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding-top: 71px;
    justify-content: flex-end;
  }

  .hero__content {
    padding: 0 0 2rem;
    max-width: 100%;
  }

  .hero__panel {
    padding: 2rem 1.25rem 1.75rem;
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.72) 55%,
      rgba(10, 10, 10, 0.2) 100%
    );
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .hero__bg img {
    object-position: center 22%;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.15) 0%,
      rgba(10, 10, 10, 0.28) 45%,
      rgba(10, 10, 10, 0.65) 100%
    );
  }

  .marquee--top {
    top: 68px;
  }

  .marquee {
    padding: 0.6rem 0;
  }

  .marquee__track span:not(.marquee__sep) {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .marquee__sep {
    width: 3px;
    height: 3px;
  }

  /* Sections */
  .section {
    padding: 3.25rem 0;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .split {
    gap: 1.5rem;
  }

  .pillars li {
    gap: 1rem;
    padding: 1rem 0;
  }

  .step-card,
  .review-card,
  .servico-card {
    padding: 1.5rem 1.25rem;
  }

  .servicos__cards,
  .steps-row,
  .review-cards {
    margin-top: 1.75rem;
    gap: 1rem;
  }

  .coverage-regions {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .coverage-region {
    padding: 0.75rem 0.85rem;
  }

  .coverage-info .btn {
    width: 100%;
    min-height: 48px;
  }

  .coverage-map__frame {
    min-height: 300px;
    padding: 1rem;
  }

  .google-badge {
    width: 100%;
  }

  .reviews-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .accordion__item summary {
    font-size: 0.9rem;
    padding: 1rem 2.25rem 1rem 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Orçamento */
  .orcamento__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .orcamento__form {
    padding: 1.5rem 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  /* Footer */
  .footer {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .footer__main {
    padding: 2.5rem 0 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__brand {
    justify-content: flex-start;
  }

  .footer__brand-inner {
    align-items: flex-start;
  }

  .footer__bottom-inner {
    padding-bottom: max(1.35rem, env(safe-area-inset-bottom));
  }

  /* Scroll reveal — só fade no mobile */
  .reveal--left,
  .reveal--right {
    transform: translateY(24px);
  }

  .reveal--left.is-visible,
  .reveal--right.is-visible {
    transform: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1140px, calc(100% - 1.25rem));
    padding-inline: 0.65rem;
  }

  .hero__panel {
    padding: 1.75rem 1rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .label {
    font-size: 0.68rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }

  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__panel > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
