/* ================================================
   Dendê Comunicação Visual — Design System
   Paleta: Laranja Dendê + Preto Industrial + Off-white
   ================================================ */

:root {
  /* Cores — alinhadas com a logo oficial Dendê (#C04000) */
  --laranja: #C04000;
  --laranja-dark: #8F2F00;
  --laranja-light: #E25E1F;
  --laranja-soft: #FCE6DA;
  --preto: #0F0F0F;
  --preto-soft: #1A1A1A;
  --cinza-texto: #545454;
  --cinza-soft: #6B6B6B;
  --cinza-borda: #E5E5E5;
  --offwhite: #F8F8F5;
  --branco: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;

  /* Tipografia */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1280px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 15, 15, 0.10);
  --shadow-lg: 0 16px 40px rgba(15, 15, 15, 0.16);
  --shadow-laranja: 0 12px 32px rgba(192, 64, 0, 0.30);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--cinza-texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--laranja);
  margin-bottom: 16px;
}

/* Headings */
h1, h2, h3, h4 {
  color: var(--preto);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 12px; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { font-size: 17px; color: var(--cinza-soft); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--laranja);
  color: var(--branco);
  box-shadow: var(--shadow-laranja);
}
.btn-primary:hover {
  background: var(--laranja-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 64, 0, 0.40);
}
.btn-outline {
  background: transparent;
  color: var(--preto);
  border: 2px solid var(--preto);
}
.btn-outline:hover { background: var(--preto); color: var(--branco); }
.btn-outline-white {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover { background: var(--branco); color: var(--preto); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--branco);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cinza-borda);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding: 4px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
  transition: padding 0.3s ease;
}
.navbar.scrolled .nav-inner { padding: 10px 24px; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--preto);
}
.logo-img {
  display: block;
  height: 56px;
  width: auto;
}
.footer .logo-img { height: 64px; filter: brightness(0) invert(1); opacity: 0.95; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--preto);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--laranja); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
  color: var(--cinza-soft);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--branco);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border: 1px solid var(--cinza-borda);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--preto);
  transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  background: var(--laranja-soft);
  color: var(--laranja-dark);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--preto) 0%, var(--preto-soft) 100%);
  color: var(--branco);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(192, 64, 0, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 64, 0, 0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.hero h1 { color: var(--branco); margin-bottom: 24px; }
.hero h1 strong { color: var(--laranja); font-weight: 900; }
.hero-lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
}
.hero-badge svg { width: 22px; height: 22px; color: var(--laranja); flex-shrink: 0; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: var(--preto-soft);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}
.hero-video,
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0) 50%, rgba(15,15,15,0.55) 100%);
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--branco);
  text-align: left;
}
.hero-visual-caption .eyebrow {
  color: var(--laranja-light);
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 2px;
}
.hero-visual-caption h3 {
  color: var(--branco);
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 4px;
}
.hero-visual-caption p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
}

/* ============ SEÇÕES GENÉRICAS ============ */
section { padding: 96px 0; }
.section-light { background: var(--offwhite); }
.section-dark {
  background: var(--preto);
  color: var(--branco);
}
.section-dark h2, .section-dark h3 { color: var(--branco); }
.section-dark p { color: rgba(255, 255, 255, 0.85); }
.section-orange {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-dark) 100%);
  color: var(--branco);
  text-align: center;
}
.section-orange h2 { color: var(--branco); }
.section-orange p { color: rgba(255, 255, 255, 0.95); margin-bottom: 32px; font-size: 18px; }

/* ============ AUTORIDADE ============ */
.autoridade {
  background: var(--branco);
  padding: 80px 0;
  border-bottom: 1px solid var(--cinza-borda);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--preto);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ SERVIÇOS GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--branco);
  border-radius: var(--r-md);
  padding: 36px 28px;
  border: 1px solid var(--cinza-borda);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--laranja);
  transition: height 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--laranja-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--laranja);
  color: var(--branco);
  transform: scale(1.05);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; font-size: 20px; }
.service-card p {
  font-size: 15px;
  color: var(--cinza-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--laranja);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.25s ease;
}
.service-card:hover .service-link { gap: 12px; }

/* ============ DIFERENCIAIS ============ */
.diferenciais {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.diferencial-card {
  text-align: center;
  padding: 20px;
}
.diferencial-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--preto);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja);
  transition: all 0.3s ease;
}
.diferencial-card:hover .diferencial-icon {
  background: var(--laranja);
  color: var(--branco);
  transform: scale(1.08);
}
.diferencial-icon svg { width: 32px; height: 32px; }
.diferencial-card h3 { font-size: 18px; margin-bottom: 8px; }
.diferencial-card p { font-size: 14px; color: var(--cinza-soft); }

/* ============ TIMELINE ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--laranja-light), var(--laranja), var(--laranja-light));
  z-index: 0;
}
.timeline-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.timeline-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--laranja);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: var(--shadow-laranja);
  border: 4px solid var(--offwhite);
}
.timeline-step h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-step p { font-size: 14px; color: var(--cinza-soft); }

/* ============ GALERIA ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background: var(--preto-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: var(--branco);
  font-weight: 700;
  font-size: 16px;
  z-index: 2;
}
.gallery-item .gallery-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--laranja);
  color: var(--branco);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  z-index: 2;
}

/* ============ GALERIA DE PÁGINA DE SERVIÇO ============ */
.service-gallery {
  background: var(--offwhite);
  padding: 72px 0;
}
.service-gallery .gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.service-gallery .gallery-intro .eyebrow { margin-bottom: 12px; }
.service-gallery .gallery-intro h2 { font-size: clamp(22px, 2.4vw, 30px); }
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--preto-soft);
  box-shadow: var(--shadow-sm);
}
.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) {
  .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-gallery { padding: 56px 0; }
}
@media (max-width: 480px) {
  .service-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}

.sobre-galeria {
  padding: 72px 0;
  background: var(--branco);
}
.sobre-galeria .gallery-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.sobre-galeria .gallery-intro .eyebrow { margin-bottom: 12px; }
.sobre-galeria .gallery-intro h2 { font-size: clamp(22px, 2.4vw, 30px); }

.sobre-foto-aside img {
  width: 100%;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  display: block;
  box-shadow: var(--shadow-sm);
}

/* ============ PREMIUM / SLOGAN ============ */
.slogan-section {
  background: var(--preto);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.slogan-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(192, 64, 0, 0.15), transparent 60%);
}
.slogan-section h2 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--branco);
  margin-bottom: 24px;
  position: relative;
}
.slogan-section h2 strong { color: var(--laranja); font-weight: 900; }
.slogan-section p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.depoimento-card {
  background: var(--branco);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--cinza-borda);
  position: relative;
}
.depoimento-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--laranja-soft);
  font-family: Georgia, serif;
  line-height: 1;
}
.depoimento-card p {
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  color: var(--cinza-texto);
}
.depoimento-author { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-dark));
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.depoimento-name { font-weight: 700; color: var(--preto); font-size: 15px; }
.depoimento-role { font-size: 13px; color: var(--cinza-soft); }
.depoimento-stars { color: var(--laranja); font-size: 14px; margin-bottom: 12px; }

/* ============ CTA FINAL ============ */
.cta-final { padding: 100px 0; }
.cta-final h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-final-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer {
  background: var(--preto);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: var(--branco);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-brand p { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}
.footer ul a:hover { color: var(--laranja); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--laranja);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--laranja); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: var(--laranja); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.25s ease;
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============ ANIMAÇÕES ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ============ PÁGINAS INTERNAS ============ */
.page-hero {
  background: linear-gradient(135deg, var(--preto) 0%, var(--preto-soft) 100%);
  padding: 140px 0 80px;
  color: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(192, 64, 0, 0.12), transparent 60%);
}
.page-hero h1 {
  color: var(--branco);
  margin-bottom: 16px;
  position: relative;
}
.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.breadcrumbs a { color: var(--laranja); }
.breadcrumbs a:hover { text-decoration: underline; }

.service-detail {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail h2 { margin-bottom: 20px; }
.service-detail p { margin-bottom: 16px; font-size: 16px; }
.benefits-list { list-style: none; margin: 24px 0; }
.benefits-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 15px;
}
.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--laranja);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}
.service-sidebar {
  background: var(--offwhite);
  border-radius: var(--r-md);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.service-sidebar h3 { font-size: 20px; margin-bottom: 16px; }
.service-sidebar p { font-size: 14px; margin-bottom: 24px; color: var(--cinza-soft); }

/* ============ MAPA ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 12px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--offwhite);
  border-radius: var(--r-md);
  margin-bottom: 12px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--laranja-soft);
  border-radius: var(--r-sm);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-text strong {
  display: block;
  color: var(--preto);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-text { font-size: 15px; }
.map-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 450px; border: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .depoimentos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta .btn-cta-desktop { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--preto);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--branco);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--cinza-borda);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 16px;
    border-radius: var(--r-sm);
    color: var(--preto);
    font-weight: 500;
    transition: background 0.2s ease;
  }
  .mobile-menu a:hover { background: var(--laranja-soft); }
  .mobile-menu .btn { margin-top: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .diferenciais { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-final-buttons { flex-direction: column; align-items: stretch; }
  .cta-final-buttons .btn { width: 100%; }
}

/* Mobile menu desktop sempre escondido */
.mobile-menu { display: none; }
