/* ===================================================
   DOPELICANO COMUNICAÇÃO — Design Editorial
   Style Sheet — version 2.0 (paleta atualizada)
   =================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Paleta da marca (extraída da logo) ── */
  --brand-navy:   #0F2540;   /* navy escuro — seções dark */
  --brand-dark:   #163A5F;   /* azul escuro da logo */
  --brand-blue:   #3D7EA6;   /* azul aço — cor principal da logo */
  --brand-mid:    #2166A0;   /* azul médio */
  --brand-light:  #6BAAC8;   /* azul claro — detalhes */
  --brand-pale:   #EBF4FA;   /* azul palidíssimo — bg tints */

  /* ── Laranja complementar (uso pontual) ── */
  --orange:       #E07020;
  --orange-hover: #C85F10;
  --orange-light: rgba(224, 112, 32, 0.12);

  /* ── Neutros ── */
  --navy-950:  #060D1F;
  --navy-900:  #0B1E35;
  --navy-800:  #163A5F;
  --text-primary:   #0F2540;
  --text-secondary: #4a5568;
  --text-light:     #718096;
  --surface-0:  #ffffff;
  --surface-1:  #f5f8fc;
  --surface-2:  #e8f0f8;
  --border:     rgba(15, 37, 64, 0.10);
  --border-blue: rgba(61, 126, 166, 0.28);

  /* ── Tipografia ── */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* ── Espaçamento ── */
  --section-py:    clamp(70px, 10vw, 110px);
  --container-max: 1200px;
  --container-px:  clamp(20px, 5vw, 60px);

  /* ── Radius ── */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* ── Sombras ── */
  --shadow-sm: 0 1px 3px rgba(6,13,31,.06), 0 1px 2px rgba(6,13,31,.04);
  --shadow-md: 0 4px 16px rgba(6,13,31,.08), 0 2px 8px rgba(6,13,31,.06);
  --shadow-lg: 0 10px 40px rgba(6,13,31,.12), 0 4px 16px rgba(6,13,31,.08);
  --shadow-xl: 0 20px 60px rgba(6,13,31,.16);

  /* ── Transições ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--surface-0);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul     { list-style: none; }
details summary               { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* --- CONTAINER --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* --- SECTION --- */
.section { padding: var(--section-py) 0; }

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
em { font-style: italic; color: var(--brand-blue); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: rgba(61, 126, 166, 0.10);
  border: 1px solid var(--border-blue);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title  { margin-bottom: 16px; color: var(--text-primary); }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; }

/* --- BADGE --- */
.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(61, 126, 166, 0.14);
  border: 1px solid rgba(107, 170, 200, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* CTA Primário — laranja (destaque / ação principal) */
.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(224, 112, 32, 0.28);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 112, 32, 0.38);
}
.btn--primary:active { transform: translateY(0); }

/* Secundário / Ghost */
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--surface-2);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* --- ANIMAÇÕES --- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate="fade-left"]  { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.navbar__logo:hover { opacity: 0.85; }

/* Logo image */
.navbar__logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.2;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Logo no hero (texto branco) */
.hero .logo-text       { color: #fff; }
.hero .logo-text em    { color: rgba(255,255,255,0.5); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text-primary); background: var(--surface-2); }
.nav-link--cta {
  background: var(--brand-dark);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-link--cta:hover { background: var(--brand-mid) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--surface-2); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; transform: scale(1); }
.mobile-link {
  display: inline-block;
  font-size: 1.6rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.85);
  padding: 12px 32px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
  text-align: center;
}
.mobile-link:hover { color: var(--brand-light); background: rgba(255,255,255,0.05); }
.mobile-link--cta {
  margin-top: 16px;
  color: var(--orange) !important;
  border: 1.5px solid rgba(224, 112, 32, 0.4);
  padding: 12px 36px;
}

/* ======================================
   HERO — fundo sólido, sem gradiente
   ====================================== */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy-950);   /* cor sólida — sem gradiente */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Grid sutil de fundo */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 126, 166, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 126, 166, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* SEM hero::after — nenhum gradiente de transição */

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(60px, 8vh, 100px);
  position: relative;
  z-index: 1;
}

.hero__content { display: flex; flex-direction: column; align-items: flex-start; }
.hero__headline { color: #fff; margin-bottom: 20px; line-height: 1.15; }
.hero__subheadline {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.hero__bullets li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__actions .btn--ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
}
.hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Imagem hero */
.hero__visual { position: relative; }
.hero__img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(61,126,166,0.2);
}
.hero__img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.hero__img-wrapper:hover img { transform: scale(1.03); }

.hero__img-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: var(--brand-blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: badgePulse 3s ease-in-out infinite;
}
.hero__img-badge .badge-num   { display: block; font-size: 1.8rem; font-weight: 700; font-family: var(--font-serif); line-height: 1; }
.hero__img-badge .badge-label { display: block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }

@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1.5px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--brand-blue));
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  100% { height: 50px; opacity: 0; }
}

/* ======================================
   TRUST STRIP
   ====================================== */
.trust-strip {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.separator { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

/* ======================================
   SERVIÇOS
   ====================================== */
.services { background: var(--surface-0); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-blue); }
.service-card:hover::after { opacity: 1; }

/* Card destaque */
.service-card--featured {
  background: var(--surface-1);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(224, 112, 32, 0.1);
}
.service-card--featured:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 30px rgba(224, 112, 32, 0.15);
}
.service-card--featured::after {
  background: var(--orange);
}

.card-flag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  background: rgba(107, 170, 200, 0.15);
  border: 1px solid rgba(107, 170, 200, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
}

.service-card__icon { width: 56px; height: 56px; margin-bottom: 20px; }
.service-card__icon svg { width: 100%; height: 100%; }

.service-card   h3 { color: var(--text-primary); margin-bottom: 12px; font-size: 1.25rem; }
.service-card   p  { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.service-card__list { display: flex; flex-direction: column; gap: 8px; }
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.service-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand-blue);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ======================================
   PORTFÓLIO
   ====================================== */
.portfolio {
  background: var(--navy-900);
  position: relative;
}
.portfolio .section-tag  { color: var(--brand-light); background: rgba(61,126,166,0.1); border-color: rgba(61,126,166,0.25); }
.portfolio .section-title   { color: #fff; }
.portfolio .section-subtitle { color: rgba(255,255,255,0.6); }
.portfolio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--brand-blue);
  opacity: 0.35;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.portfolio-card {
  background: var(--brand-dark);
  border: 1px solid rgba(61,126,166,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: var(--border-blue); }

.portfolio-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.portfolio-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.06); }

.portfolio-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brand-blue);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
}

.portfolio-card__body { padding: 28px; }
.portfolio-card__body h3 { color: #fff; margin-bottom: 6px; }
.portfolio-meta { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }

.portfolio-details { display: flex; flex-direction: column; gap: 16px; }
.portfolio-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-light);
  margin-bottom: 4px;
}
.portfolio-detail p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-light);
  border-bottom: 1px solid rgba(107, 170, 200, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.portfolio-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.portfolio-link:hover { color: #fff; border-color: rgba(255,255,255,0.6); gap: 12px; }


.portfolio__cta {
  text-align: center;
  padding: 40px;
  background: var(--brand-dark);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
}
.portfolio__cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 20px; }

/* ======================================
   DIFERENCIAIS
   ====================================== */
.diferenciais { background: var(--surface-0); }
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.diferencial-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}
.diferencial-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-blue); }
.diferencial-icon { width: 48px; height: 48px; }
.diferencial-icon svg { width: 100%; height: 100%; }
.diferencial-item h3 { font-size: 1.1rem; color: var(--text-primary); }
.diferencial-item p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ======================================
   SOBRE
   ====================================== */
.sobre { background: var(--surface-1); }
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.sobre__visual { display: flex; flex-direction: column; gap: 24px; }
.sobre__img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.sobre__img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.sobre__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-item {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
}
.stat-num   { display: block; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--brand-dark); }
.stat-label { display: block; font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.sobre__content          { padding-top: 8px; }
.sobre__content .section-tag   { margin-bottom: 12px; }
.sobre__content .section-title { margin-bottom: 16px; }
.sobre__lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.sobre__content p  { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.95rem; }
.sobre__quote {
  border-left: 3px solid var(--brand-blue);
  padding: 16px 0 16px 24px;
  margin: 24px 0 28px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brand-dark);
  line-height: 1.6;
}

/* ======================================
   PROCESSO (TIMELINE MODERNA)
   ====================================== */
.processo { background: var(--surface-0); overflow: hidden; }

.processo__timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.processo__timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--border-blue);
  transform: translateX(-50%);
  opacity: 0.6;
}

.processo-step {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
.processo-step:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}
.processo-step:last-child { margin-bottom: 0; }

.step-marker {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--brand-dark);
  border: 4px solid var(--surface-0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 2px var(--border-blue);
  transition: all 0.4s var(--ease-out);
}
.processo-step:hover .step-marker {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(61,126,166,0.3);
  transform: translateX(-50%) scale(1.05);
}

.step-content {
  width: 85%;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.processo-step:nth-child(odd) .step-content { margin-right: 48px; text-align: right; }
.processo-step:nth-child(even) .step-content { margin-left: 48px; text-align: left; }

.processo-step:hover .step-content {
  border-color: var(--brand-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-content h3 { color: var(--text-primary); margin-bottom: 8px; font-size: 1.25rem; }
.step-content p  { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Mobile fallback for Timeline */
@media (max-width: 768px) {
  .processo__timeline { padding: 20px 0; }
  .processo__timeline::before { left: 24px; transform: none; }
  
  .processo-step, .processo-step:nth-child(even) {
    justify-content: flex-start;
    padding: 0 0 0 64px;
    margin-bottom: 32px;
  }
  
  .step-marker { 
    left: 24px; 
    width: 40px; height: 40px; 
    font-size: 1rem; 
    border-width: 3px; 
  }
  
  .processo-step:nth-child(odd) .step-content, 
  .processo-step:nth-child(even) .step-content {
    margin: 0; width: 100%; text-align: left;
  }
}


/* ======================================
   ORÇAMENTO (FORMULÁRIO)
   ====================================== */
.orcamento {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.orcamento::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,126,166,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.orcamento__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.orcamento__info .section-tag  { color: var(--brand-light); background: rgba(61,126,166,0.1); border-color: rgba(61,126,166,0.25); }
.orcamento__info .section-title { color: #fff; }
.orcamento__info p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 16px; }

.orcamento__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.contact-item:hover  { background: rgba(255,255,255,0.1); color: #fff; border-color: var(--border-blue); }
.contact-item svg    { width: 22px; height: 22px; flex-shrink: 0; }

/* Formulário */
.orcamento__form {
  background: var(--surface-0);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-xl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-1);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 126, 166, 0.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.select-wrapper { position: relative; }
.select-wrapper select    { padding-right: 40px; cursor: pointer; }
.select-wrapper svg {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  pointer-events: none;
  color: var(--brand-blue);
}
.form-microcopy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Sucesso */
.form-success { text-align: center; padding: 48px 32px; }
.form-success[hidden] { display: none; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 { font-size: 1.4rem; color: var(--text-primary); margin-bottom: 12px; }
.form-success p  { color: var(--text-secondary); }

/* Validação */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) { border-color: #e53e3e; }
.form-group input:valid:not(:placeholder-shown)       { border-color: #38a169; }

/* ======================================
   FAQ
   ====================================== */
.faq { background: var(--surface-1); }
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface-0);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open]  { border-color: var(--border-blue); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-primary);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--surface-1); }
.faq-arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--brand-blue);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px 20px;
  animation: faqOpen 0.3s var(--ease-out);
}
.faq-answer p        { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; }
.faq-answer p strong { color: var(--text-primary); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ======================================
   FOOTER
   ====================================== */
.footer { background: var(--navy-950); }
.footer__top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo .logo-text    { color: #fff; }
.footer-logo .logo-text em { color: rgba(255,255,255,0.45); }
.footer__brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__links h4,
.footer__cta-block h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-light);
  margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a  {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.9); }
.footer__cta-block p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer__contact { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.footer__contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__contact a:hover { color: var(--brand-light); }

.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p    { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__bottom span { color: rgba(255,255,255,0.5); }

/* ======================================
   BACK TO TOP
   ====================================== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 44px; height: 44px;
  background: var(--brand-dark);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--brand-light);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: var(--shadow-md);
}
.back-to-top svg    { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; pointer-events: all; transform: none; }
.back-to-top:hover  { background: var(--brand-mid); transform: translateY(-2px); }

/* ======================================
   RESPONSIVO
   ====================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__img-wrapper { max-width: 600px; margin: 0 auto; }
  .hero__content { align-items: center; text-align: center; }
  .hero__bullets { text-align: left; }
  .sobre__inner           { grid-template-columns: 1fr; gap: 40px; }
  .orcamento__inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer__top-inner      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(50px, 8vw, 80px); }
  .navbar__nav              { display: none; }
  .hamburger                { display: flex; }
  .hero__actions            { flex-direction: column; width: 100%; }
  .hero__actions .btn       { justify-content: center; }
  .services__grid           { grid-template-columns: 1fr; }
  .portfolio__grid          { grid-template-columns: 1fr; }
  .diferenciais__grid       { grid-template-columns: 1fr; }
  .processo-step            { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-number              { font-size: 2.2rem; }
  .step-connector           { padding-left: 80px; }
  .form-row                 { grid-template-columns: 1fr; }
  .footer__top-inner        { grid-template-columns: 1fr; }
  .sobre__stats             { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner       { gap: 12px 20px; }
  .separator                { display: none; }
}

@media (max-width: 480px) {
  .hero__bullets             { font-size: 0.88rem; }
  .sobre__stats              { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner      { flex-direction: column; text-align: center; }
  .back-to-top               { bottom: 20px; right: 16px; }
}

/* ======================================
   REDUCED MOTION
   ====================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate]             { transition: none; opacity: 1; transform: none; }
  .back-to-top,
  .hero__scroll-hint span,
  .hero__img-badge           { animation: none; transition: none; }
}
