/* =========================================================
   DIGIROAD — Consultoria em Transformação Digital
   style.css | Finish Web © 2026 | Lucas Oliveira
   Arquitetura Mobile-First | Revisão #3
   ========================================================= */

/* ── Google Fonts — Inter apenas ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ──────────────────────────────────────────
   DESIGN TOKENS  —  Base: #073549
   Accent neon: #10b981 (verde moderno)
────────────────────────────────────────── */
:root {
  /* Palette derivada de #073549 */
  --bg-base:        #040e14;
  --bg-surface:     #062031;
  --bg-card:        #07293e;
  --bg-card-hover:  #0a3350;

  /* Accent: verde claro/neon para bordas e micro-detalhes */
  --accent:         #10b981;
  --accent-dim:     #0d9e6d;
  --accent-glow:    rgba(16, 185, 129, 0.18);
  --accent-glass:   rgba(16, 185, 129, 0.07);

  --text-primary:   #e2f0ea;
  --text-secondary: #7aa99e;
  --text-muted:     #3d6a5f;
  --border:         rgba(16, 185, 129, 0.13);
  --border-strong:  rgba(16, 185, 129, 0.28);
  --glass-bg:       rgba(4, 14, 20, 0.80);
  --glass-blur:     saturate(180%) blur(20px);
  --white:          #ffffff;

  /* Tipografia — Inter exclusivo, sem Syne */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;

  /* Espaçamento */
  --section-pad-y: clamp(4rem, 9vw, 8rem);
  --section-pad-x: clamp(1.25rem, 5vw, 3rem);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;

  /* Transições */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ──────────────────────────────────────────
   UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
}

/* Mobile-First: centralizar tudo por padrão */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glass);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-title span { color: var(--accent); }

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.8;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ──────────────────────────────────────────
   NAV / HEADER  — Mobile-First (centralizado)
────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}

#site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo Header: base 42px × 1.15 = 48.3px ≈ 48px */
.nav-logo img {
  height: 48px;
  width: auto;
}

/* Mobile: links ocultos, hamburger visível */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--accent-glass);
}

.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--bg-base) !important;
  background: var(--accent) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 100px !important;
  transition: box-shadow 0.3s, transform 0.2s var(--ease-snappy) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.5) !important;
  transform: translateY(-2px) !important;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Menu aberto mobile */
.nav-links.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.25rem;
}

.nav-links.open a { width: 100%; padding: 0.75rem 1rem; text-align: center; }

/* ──────────────────────────────────────────
   SECTION 1 — HERO
────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 14, 20, 0.92) 0%,
    rgba(7, 53, 73, 0.76) 50%,
    rgba(4, 14, 20, 0.88) 100%
  );
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2;
  pointer-events: none;
}

/* Mobile-first: conteúdo centralizado */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  text-align: center;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s 0.1s var(--ease) both;
}

.hero-title .accent-word { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(226, 240, 234, 0.78);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 0.2s var(--ease) both;
}

/* Mobile: botões empilhados e centralizados */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  animation: fadeInUp 1.1s 0.3s var(--ease) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bg-base);
  background: var(--accent);
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.35s, transform 0.25s var(--ease-snappy);
  white-space: nowrap;
  width: 100%;
  max-width: 340px;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.55), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.25s var(--ease-snappy);
  white-space: nowrap;
  width: 100%;
  max-width: 340px;
}

.btn-ghost:hover {
  background: var(--accent-glass);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Mobile: stats centralizados em coluna */
.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 3.5rem;
  animation: fadeInUp 1.2s 0.45s var(--ease) both;
}

.hero-stat {
  padding: 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
  width: 100%;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg { color: var(--accent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ──────────────────────────────────────────
   SECTION 2 — DESAFIO  (Mobile: centralizado)
────────────────────────────────────────── */
#desafio {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-base);
}

.desafio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.desafio-header .section-subtitle {
  margin-inline: auto;
  text-align: center;
}

/* Mobile: 1 coluna */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.35s, background 0.35s, transform 0.3s var(--ease-snappy), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16,185,129,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.bento-card:hover::before { opacity: 1; }

/* Column spans: somente ativadas no desktop via media query */
.bento-main, .bento-tall, .bento-half,
.bento-third, .bento-wide, .bento-sm { grid-column: span 1; }

.bento-icon {
  width: 48px; height: 48px;
  background: var(--accent-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.bento-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.bento-card .stat-big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bento-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
  text-align: left;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pain-item::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
}

/* ──────────────────────────────────────────
   SECTION 3 — QUEM SOMOS  (Mobile: centralizado)
────────────────────────────────────────── */
#quem-somos {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

#quem-somos::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.qs-visual { position: relative; }

.qs-image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.qs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: filter 0.5s, transform 0.6s var(--ease);
}

.qs-image-wrap:hover img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.03);
}

.qs-badge {
  position: absolute;
  bottom: -1rem;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-width: 180px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  text-align: center;
}

.qs-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.qs-badge-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.qs-content .section-subtitle {
  margin-bottom: 2rem;
  margin-inline: auto;
}

.qs-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.qs-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  transition: border-color 0.3s, background 0.3s;
}

.qs-pillar:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.qs-pillar-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--accent-glass);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.qs-pillar-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.qs-pillar-content p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   SECTION 4 — EXECUTIVO  (Mobile: centralizado)
────────────────────────────────────────── */
#executivo {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.executivo-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(16,185,129,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.executivo-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

.exec-photo-side {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.exec-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.85) contrast(1.05);
}

.exec-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--glass-bg) 0%, transparent 60%);
}

.exec-content-side {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.exec-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.exec-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.exec-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  text-align: left;
}

.exec-credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

.exec-cred {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--accent-glass);
  text-align: left;
}

.exec-cred svg { color: var(--accent); flex-shrink: 0; }

.exec-quote {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  line-height: 1.7;
  opacity: 0.9;
  text-align: left;
  width: 100%;
}

/* ──────────────────────────────────────────
   SECTION 5 — SERVIÇOS  (Mobile: 1 coluna / centralizado)
────────────────────────────────────────── */
#servicos {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-surface);
}

.servicos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.servicos-header .section-subtitle { margin-inline: auto; }

.servicos-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
  text-align: center;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: center;
}

.servico-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border-strong);
}

.servico-card:hover::after { transform: scaleX(1); }

.servico-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.servico-icon {
  width: 52px; height: 52px;
  background: var(--accent-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 1.5rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.servico-card:hover .servico-icon {
  background: rgba(16,185,129,0.18);
  box-shadow: 0 0 20px var(--accent-glow);
}

.servico-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.servico-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.servico-card.featured {
  background: linear-gradient(145deg, rgba(16,185,129,0.10), rgba(16,185,129,0.03));
  border-color: var(--border-strong);
}

/* ──────────────────────────────────────────
   SECTION 6 — BENEFÍCIOS  (Mobile: 1 coluna / centralizado)
────────────────────────────────────────── */
#beneficios {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-base);
  position: relative;
}

.beneficios-header {
  text-align: center;
  margin-bottom: 3rem;
}

.beneficios-header .section-subtitle { margin-inline: auto; }

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.beneficio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.beneficio-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.beneficio-icon {
  width: 56px; height: 56px;
  background: var(--accent-glass);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: box-shadow 0.35s;
}

.beneficio-card:hover .beneficio-icon {
  box-shadow: 0 0 24px var(--accent-glow);
}

.beneficio-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.beneficio-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ──────────────────────────────────────────
   SECTION 7 — CTA + CONTATO  (Mobile: 1 coluna / centralizado)
────────────────────────────────────────── */
#contato {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  text-align: center;
}

.contato-left .section-title  { margin-bottom: 1rem; }
.contato-left .section-subtitle {
  margin-bottom: 2rem;
  margin-inline: auto;
}

.whatsapp-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--accent-glass);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2rem;
  text-align: left;
}

.whatsapp-block:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(16,185,129,0.18);
}

.whatsapp-icon {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-text strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.whatsapp-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.87rem;
  color: var(--text-secondary);
}

.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── FORMULÁRIO ── */
.contato-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: left;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

/* Mobile: campos empilhados */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2310b981' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glass);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.btn-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-base);
  background: var(--accent);
  border: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: box-shadow 0.35s, transform 0.25s var(--ease-snappy);
  font-family: var(--font-body);
}

.btn-form:hover {
  box-shadow: 0 0 32px rgba(16,185,129,0.5);
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ──────────────────────────────────────────
   FOOTER  (Mobile: centralizado)
────────────────────────────────────────── */
#site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Logo Footer: base 36px × 1.25 = 45px */
.footer-brand .nav-logo img {
  height: 45px;
  margin: 0 auto 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-inline: auto;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* "Finish Web" — degradê azul-lilás animado */
.finish-web-link {
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(270deg, #7c3aed, #2563eb, #a855f7, #3b82f6, #7c3aed);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
  display: inline;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

/* Social buttons — base neutro */
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
}

/* LinkedIn → azul da marca */
.social-btn.linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: #0a66c2;
  color: #0a66c2;
  box-shadow: 0 0 16px rgba(10, 102, 194, 0.3);
}

/* Instagram → rosa/gradiente */
.social-btn.instagram:hover {
  background: rgba(228, 64, 95, 0.12);
  border-color: #e4405f;
  color: #e4405f;
  box-shadow: 0 0 16px rgba(228, 64, 95, 0.3);
}

/* Facebook → azul Facebook (#1877f2) */
.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: #1877f2;
  color: #1877f2;
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.3);
}

/* WhatsApp → verde oficial */
.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #25d366;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}

/* ──────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
}

.whatsapp-float-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-snappy), box-shadow 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 36px rgba(37, 211, 102, 0.65);
}

.whatsapp-float-btn svg { flex-shrink: 0; }

/* Anel de pulse */
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wapp-pulse 2.5s ease-out infinite;
}

@keyframes wapp-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Tooltip deslizante da direita para esquerda */
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0.55rem 1rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ════════════════════════════════════════════════
   PROGRESSIVE ENHANCEMENT — Tablet  (≥ 600px)
════════════════════════════════════════════════ */
@media (min-width: 600px) {
  /* Hero: botões lado a lado */
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary, .btn-ghost { width: auto; max-width: none; }

  /* Hero stats: linha */
  .hero-stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-stat {
    flex: 1;
    min-width: 130px;
    padding: 1.75rem 1.5rem 1.25rem;
    border-top: none;
    border-left: 1px solid var(--border);
  }
  .hero-stat:first-child { border-left: none; }

  /* Bento: 2 colunas */
  .bento-card { text-align: left; }
  .bento-icon { margin: 0 0 1.25rem; }

  /* Serviços / benefícios: 2 colunas */
  .servicos-bento  { grid-template-columns: repeat(2, 1fr); }
  .servico-card    { text-align: left; }
  .servico-icon    { margin: 0 0 1.5rem; }

  .beneficios-grid { grid-template-columns: repeat(2, 1fr); }

  /* Formulário: campos em par */
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Footer: 2 colunas */
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 2.5rem; text-align: left; }
  .footer-brand .nav-logo img { margin: 0 0 1rem; }
  .footer-brand p { margin-inline: 0; }
  .footer-col ul  { align-items: flex-start; }
  .footer-bottom  { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Executivo: credenciais 2 col */
  .exec-credentials { grid-template-columns: 1fr 1fr; }

  /* Quem Somos: texto alinhado à esquerda quando há espaço */
  .quem-somos-grid  { text-align: left; }
  .qs-content .section-subtitle { margin-inline: 0; }
  .contato-inner { text-align: left; }
  .contato-left .section-subtitle { margin-inline: 0; }
}

/* ════════════════════════════════════════════════
   PROGRESSIVE ENHANCEMENT — Desktop  (≥ 900px)
════════════════════════════════════════════════ */
@media (min-width: 900px) {
  /* Nav: exibe links, oculta hamburger */
  .nav-links     { display: flex; }
  .nav-hamburger { display: none; }

  /* Hero: texto alinhado à esquerda */
  .hero-content { text-align: left; margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-stats   { justify-content: flex-start; }

  /* Bento: grid 12 colunas */
  .bento-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
  }
  .bento-main  { grid-column: span 7; }
  .bento-tall  { grid-column: span 5; grid-row: span 2; }
  .bento-half  { grid-column: span 4; }
  .bento-third { grid-column: span 3; }
  .bento-wide  { grid-column: span 8; }
  .bento-sm    { grid-column: span 4; }

  /* Quem Somos: 2 colunas */
  .quem-somos-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .qs-badge { bottom: -1.5rem; right: -1.5rem; }

  /* Executivo: 2 colunas */
  .executivo-card { grid-template-columns: 1fr 1.2fr; }
  .exec-photo-side { min-height: 560px; }
  .exec-photo-overlay {
    background: linear-gradient(90deg, transparent 60%, var(--glass-bg) 100%);
  }
  .exec-content-side { align-items: flex-start; text-align: left; }

  /* Serviços: 3 colunas */
  .servicos-bento { grid-template-columns: repeat(3, 1fr); }

  /* Benefícios: 5 colunas */
  .beneficios-grid { grid-template-columns: repeat(5, 1fr); }

  /* Contato: 2 colunas */
  .contato-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }

  /* Footer: 3 colunas */
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}

/* ════════════════════════════════════════════════
   PROGRESSIVE ENHANCEMENT — Large  (≥ 1024px)
════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .executivo-card { grid-template-columns: 1fr 1.4fr; }
}
