/* ============================================================
   MG Inter – Stylesheet v2.0
   Cores: Azul #03084c | Dourado #cda146
   Fontes: Playfair Display + Inter (Google Fonts)
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #fafaf8;
  color: #1a1a2e;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Variáveis ────────────────────────────────────────────── */
:root {
  --azul:         #03084c;
  --azul-claro:   #0a1470;
  --dourado:      #cda146;
  --dourado-esc:  #b08a35;
  --dourado-cl:   #dfc06a;
  --off-white:    #fafaf8;
  --cream:        #f5f0e8;
  --cinza-claro:  #f0ece4;
  --cinza-texto:  #4a4a6a;
  --shadow-sm:    0 2px 10px rgba(3,8,76,.06);
  --shadow-md:    0 6px 28px rgba(3,8,76,.10);
  --shadow-lg:    0 12px 56px rgba(3,8,76,.15);
  --shadow-xl:    0 24px 80px rgba(3,8,76,.20);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .55s cubic-bezier(.4,0,.2,1);
}

/* ── Tipografia ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--azul);
  line-height: 1.22;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--cinza-texto); font-size: 1.04rem; margin-bottom: 1rem; line-height: 1.78; }
p:last-child { margin-bottom: 0; }
a  { color: var(--dourado); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dourado-esc); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Sistema de ícones SVG ────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon--xs  { font-size: 16px; }
.icon--sm  { font-size: 20px; }
.icon--md  { font-size: 26px; }
.icon--lg  { font-size: 32px; }
.icon--xl  { font-size: 42px; }
.icon--xxl { font-size: 52px; }

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(205,161,70,.14), rgba(205,161,70,.05));
  border: 1px solid rgba(205,161,70,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--dourado);
  flex-shrink: 0;
}

.diferencial-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(3,8,76,.07), rgba(3,8,76,.03));
  border: 1px solid rgba(3,8,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  flex-shrink: 0;
}

.etapa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dourado);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(205,161,70,.35);
}

/* ── Containers ───────────────────────────────────────────── */
.container { width: 90%; max-width: 1140px; margin: 0 auto; }
.section   { padding: 100px 0; }
.section--bg  { background-color: var(--cream); }
.section--azul { background-color: var(--azul); }
.section--azul h2, .section--azul h3, .section--azul p, .section--azul li { color: #fff; }

/* ── Labels e cabeçalhos ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.85rem;
}

.divider-gold {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-cl));
  border-radius: 2px;
  margin: 1.1rem 0 2rem;
}
.divider-gold--center { margin-left: auto; margin-right: auto; }

.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .divider-gold { margin-left: auto; margin-right: auto; }

/* ── Botões ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.92rem 2.1rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-esc));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(205,161,70,.35);
}
.btn--gold:hover {
  background: transparent;
  color: var(--dourado);
  border-color: var(--dourado);
  box-shadow: none;
}

.btn--azul {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
}
.btn--azul:hover {
  background: transparent;
  color: var(--azul);
}

.btn--outline-gold {
  background: transparent;
  color: var(--dourado);
  border-color: var(--dourado);
}
.btn--outline-gold:hover {
  background: var(--dourado);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--azul);
  border-color: #fff;
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3,8,76,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(205,161,70,.12);
  transition: box-shadow var(--transition);
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}
.nav__logo-text span { color: var(--dourado); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav__link {
  color: rgba(255,255,255,.8);
  font-size: .87rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--dourado);
  background: rgba(205,161,70,.1);
}
.nav__cta {
  margin-left: .75rem;
  padding: .58rem 1.25rem !important;
  font-size: .84rem !important;
}

/* Hamburguer */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.nav__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (Home) ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3,8,76,.93) 0%,
    rgba(7,14,100,.82) 50%,
    rgba(3,8,76,.70) 100%
  );
  z-index: 0;
}

.hero__particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 15%, rgba(205,161,70,.13) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(205,161,70,.08) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--dourado);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  padding: .4rem 1rem;
  background: rgba(205,161,70,.12);
  border: 1px solid rgba(205,161,70,.25);
  border-radius: 30px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  color: #fff;
  line-height: 1.14;
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--dourado);
  font-style: normal;
  display: block;
}

.hero__subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 520px;
}

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

/* Hero card flutuante */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(205,161,70,.28);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.hero__card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.hero__card-list { display: flex; flex-direction: column; gap: .7rem; }

.hero__card-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: rgba(255,255,255,.85);
  font-size: .94rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  transition: background var(--transition);
}
.hero__card-item:hover { background: rgba(205,161,70,.1); }

.hero__card-item .icon { color: var(--dourado); font-size: 16px; }

/* ── PARA QUEM ─────────────────────────────────────────────── */
.para-quem { background: var(--off-white); }

.para-quem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.para-quem__list { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0 2.25rem; }

.para-quem__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--dourado);
  color: var(--cinza-texto);
  font-size: .98rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.para-quem__item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }

.para-quem__item-icon {
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
  font-size: 22px;
}

.para-quem__foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(205,161,70,.25);
  margin-bottom: 1.5rem;
}
.para-quem__foto img {
  width: 100%;
  height: auto;
  display: block;
}

.para-quem__cta-box {
  background: linear-gradient(145deg, var(--azul-claro), var(--azul));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(205,161,70,.15);
}
.para-quem__cta-box h3 { color: var(--dourado); margin-bottom: .75rem; }
.para-quem__cta-box p  { color: rgba(255,255,255,.78); margin-bottom: 2rem; }

/* ── SERVIÇOS – cards ──────────────────────────────────────── */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.servico-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--dourado);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado), var(--dourado-cl));
}

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.servico-card h3 { font-size: 1.15rem; margin-bottom: .8rem; }
.servico-card p  { font-size: .95rem; flex-grow: 1; margin-bottom: 1.5rem; }

.servico-card__items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; }

.servico-card__item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--cinza-texto);
  font-size: .9rem;
}

.servico-card__item .icon { color: var(--dourado); font-size: 14px; margin-top: .15rem; }

.servico-card .btn {
  margin-top: auto;
  justify-content: center;
  font-size: .87rem;
  padding: .72rem 1.3rem;
}

/* ── COMO FUNCIONA – etapas ────────────────────────────────── */
.etapas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.etapa {
  text-align: center;
  padding: 2.75rem 1.75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(205,161,70,.18);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.etapa:hover {
  transform: translateY(-4px);
  border-color: rgba(205,161,70,.4);
}

.etapa h3 { color: var(--dourado); font-size: 1rem; margin-bottom: .75rem; }
.etapa p  { color: rgba(255,255,255,.72); font-size: .93rem; }

/* ── DIFERENCIAIS ─────────────────────────────────────────── */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.diferencial {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.diferencial:hover {
  border-bottom-color: var(--dourado);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.diferencial h4 { margin-bottom: .4rem; font-size: 1rem; }
.diferencial p  { font-size: .92rem; margin: 0; }

/* ── CLIENTES – "Lugar de gente feliz" carousel ──────────── */
.clientes {
  padding: 100px 0 0;
  background: var(--cream);
  overflow: hidden;
}

.clientes__header { padding-bottom: 3.5rem; }

.clientes__carousel-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  padding-bottom: 60px;
}

.clientes__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: clientes-scroll 80s linear infinite;
}
.clientes__track.paused { animation-play-state: paused; }

@keyframes clientes-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cliente-item {
  width: 280px;
  height: 310px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  background: #ddd;
}
.cliente-item:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.cliente-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(205,161,70,.14) 0%, transparent 68%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.76); margin-bottom: 2.25rem; font-size: 1.1rem; }
.cta-banner__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── PAGE HERO (páginas internas) ─────────────────────────── */
.page-hero {
  padding: 150px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(3,8,76,.92) 0%,
    rgba(7,14,100,.80) 60%,
    rgba(3,8,76,.72) 100%
  );
  z-index: 0;
}

.page-hero > .container { position: relative; z-index: 1; }

.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--dourado); }
.page-hero__breadcrumb span { color: var(--dourado); }

.page-hero h1 {
  color: #fff;
  margin-bottom: 1.35rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero p.lead {
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

/* ── LISTAS ESTILIZADAS ────────────────────────────────────── */
.lista-check { display: flex; flex-direction: column; gap: .8rem; }
.lista-check li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  color: var(--cinza-texto);
  font-size: 1rem;
  line-height: 1.65;
}
.lista-check li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-esc));
  border-radius: 50%;
  margin-top: .18rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-color: var(--dourado);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.lista-dot { display: flex; flex-direction: column; gap: .65rem; }
.lista-dot li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--cinza-texto);
  font-size: .97rem;
  line-height: 1.65;
}
.lista-dot li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dourado);
  margin-top: .55rem;
  flex-shrink: 0;
}

.section--azul .lista-check li, .section--azul .lista-dot li { color: rgba(255,255,255,.82); }
.section--azul .lista-dot li::before { background: var(--dourado); }

/* ── BLOCOS DE SERVIÇO ─────────────────────────────────────── */
.servico-bloco {
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--dourado);
  margin-bottom: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.servico-bloco:last-child { margin-bottom: 0; }
.servico-bloco:hover { box-shadow: var(--shadow-lg); transform: translateX(3px); }

.servico-bloco h3 {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.25rem;
}
.servico-bloco h3 .icon { color: var(--dourado); font-size: 22px; }

/* ── CAIXA "O QUE NÃO FAÇO" ──────────────────────────────── */
.nao-faco-box {
  background: linear-gradient(135deg, #fff8f0, #fff);
  border: 1px solid rgba(205,161,70,.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.nao-faco-box h3 {
  color: var(--azul);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nao-faco-box h3 .icon { color: var(--dourado); font-size: 22px; }

/* ── ETAPAS (páginas internas) ─────────────────────────────── */
.etapas-lista { display: flex; flex-direction: column; gap: 1.5rem; }

.etapa-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.25rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.etapa-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.etapa-item__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul));
  color: var(--dourado);
  font-size: 1.45rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(3,8,76,.25);
}

.etapa-item h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.etapa-item p  { margin-bottom: .5rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid rgba(3,8,76,.08); }
.faq-item:first-child { border-top: 1px solid rgba(3,8,76,.08); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  text-align: left;
  gap: 1.25rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--dourado); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  font-style: normal;
  line-height: 1;
}
.faq-item.open .faq-icon { background: var(--dourado); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--cinza-texto);
  font-size: .98rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA WHATSAPP (páginas internas) ──────────────────────── */
.cta-wpp {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wpp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(205,161,70,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-wpp h2 { color: #fff; margin-bottom: .85rem; position: relative; }
.cta-wpp p  { color: rgba(255,255,255,.76); margin-bottom: 2.25rem; position: relative; }

/* ── WHATSAPP FLUTUANTE ────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wpp 2.8s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,.6);
}
.whatsapp-fab .icon { color: #fff; font-size: 30px; }
.whatsapp-fab svg { fill: #fff; }

@keyframes pulse-wpp {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 42px rgba(37,211,102,.70); }
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #010630 0%, #010420 100%);
  padding: 80px 0 0;
  color: rgba(255,255,255,.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  display: block;
}
.footer__logo-text span { color: var(--dourado); }

.footer__desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.85rem;
}

.footer__wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .72rem 1.45rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .88rem;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition), transform var(--transition);
}
.footer__wpp-btn:hover { background: #1ebe59; color: #fff; transform: translateY(-2px); }
.footer__wpp-btn .icon { font-size: 18px; }

.footer__col h4 {
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.footer__links { display: flex; flex-direction: column; gap: .65rem; }
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.footer__links a:hover { color: var(--dourado); padding-left: 4px; }

.footer__bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--dourado); }

/* ── BADGES / HIGHLIGHT ────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(205,161,70,.08), rgba(3,8,76,.04));
  border: 1px solid rgba(205,161,70,.22);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}
.highlight-box h3 { margin-bottom: 1rem; }

/* ── LAYOUTS ──────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.sticky-sidebar { position: sticky; top: 104px; }

/* ── ANIMAÇÕES ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: .12s; }
.fade-in:nth-child(3) { transition-delay: .22s; }
.fade-in:nth-child(4) { transition-delay: .32s; }
.fade-in:nth-child(5) { transition-delay: .42s; }

/* ── RESPONSIVIDADE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid         { grid-template-columns: 1fr 1fr; }
  .hero__grid           { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle       { margin-left: auto; margin-right: auto; }
  .hero__buttons        { justify-content: center; }
  .hero__visual         { display: none; }
  .para-quem__grid      { grid-template-columns: 1fr; }
  .two-col              { grid-template-columns: 1fr; gap: 2.5rem; }
  .sticky-sidebar       { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links {
    position: fixed;
    top: 80px; left: 0;
    width: 100%;
    background: rgba(3,8,76,.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-top: 1px solid rgba(205,161,70,.1);
  }
  .nav__links.open { max-height: 600px; }
  .nav__link {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__cta { margin: 1rem 1.5rem; width: calc(100% - 3rem); justify-content: center; }
  .nav__toggle { display: flex; }

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

  .footer__grid   { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .etapa-item { grid-template-columns: 1fr; }
  .etapa-item__num { margin: 0 auto; }

  .cta-wpp { padding: 2.75rem 1.75rem; }

  .cliente-item { width: 220px; height: 245px; }
}

@media (max-width: 480px) {
  .etapas           { grid-template-columns: 1fr; }
  .hero__title      { font-size: 2rem; }
  .page-hero        { padding: 130px 0 70px; }
  .whatsapp-fab     { bottom: 20px; right: 20px; }
  .servico-bloco    { padding: 1.75rem; }
  .cliente-item     { width: 185px; height: 205px; }
}

/* ── Utilitários ──────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-gold    { color: var(--dourado) !important; }
.text-white   { color: #fff !important; }
.mt-1  { margin-top: .75rem; }
.mt-2  { margin-top: 1.5rem; }
.mb-0  { margin-bottom: 0 !important; }
