/* ═══════════════════════════════════════════════════════════════
   style.css — Minas Escapamentos | Estilos compartilhados
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─── */
:root {
  --bordo: #7B1818;
  --bordo-dark: #5C1010;
  --preto: #1A1A1A;
  --vermelho: #E81C2E;
  --creme: #F9F5F0;
  --cinza: #E0D9D0;
  --cinza-medio: #9B9390;
  --branco: #FFFFFF;
  --font-display: 'Barlow', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: #555; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--bordo); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 13px; color: var(--cinza-medio); font-weight: 500; }
.nav-phone strong { color: var(--preto); }

/* ─── NAV DROPDOWN ─── */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-arrow { transition: transform 0.2s; flex-shrink: 0; color: #999; }
.nav-item-dropdown:hover .nav-dropdown-arrow,
.nav-item-dropdown:focus-within .nav-dropdown-arrow {
  transform: rotate(180deg); color: var(--bordo);
}
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--branco); border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--cinza); min-width: 400px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200; overflow: hidden;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 8px; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: #444;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: var(--creme); color: var(--bordo); }
.nav-dropdown-item.current { background: var(--creme); color: var(--bordo); font-weight: 600; }
.nav-dropdown-num {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  color: var(--vermelho); letter-spacing: 1px; flex-shrink: 0; width: 18px;
}
.nav-dropdown-footer { border-top: 1px solid var(--cinza); padding: 12px 16px; text-align: center; }
.nav-dropdown-footer a {
  font-size: 12px; font-weight: 700; color: var(--bordo);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px; transition: opacity 0.2s;
}
.nav-dropdown-footer a:hover { opacity: 0.7; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s; letter-spacing: 0.2px;
}
.btn-red { background: var(--vermelho); color: white; }
.btn-red:hover { background: #C5001F; transform: translateY(-1px); }
.btn-bordo { background: var(--bordo); color: white; }
.btn-bordo:hover { background: var(--bordo-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--bordo); border: 2px solid var(--bordo); }
.btn-outline:hover { background: var(--bordo); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-whatsapp { background: #25D366; color: white; font-size: 15px; padding: 14px 28px; }
.btn-whatsapp:hover { background: #1fba57; transform: translateY(-1px); }

/* ─── PAGE HERO BASE ─── */
.page-hero {
  background: var(--preto);
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,24,24,0.45) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 28px; font-size: 13px; color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { font-size: 11px; }

.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.page-hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--vermelho); border-radius: 50%; flex-shrink: 0;
}

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800; font-size: 72px; line-height: 1.0;
  color: var(--branco); letter-spacing: -2px; margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--vermelho); }

.page-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 560px; line-height: 1.75; margin-bottom: 36px;
}

/* ─── SECTION BASE ─── */
.section { padding: 80px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 700; color: var(--vermelho);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; display: block;
}
.section-title {
  font-family: var(--font-display); font-weight: 800; font-size: 48px;
  line-height: 1.05; letter-spacing: -1.5px; color: var(--preto); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--bordo); }
.section-desc { font-size: 15px; color: #666; line-height: 1.75; max-width: 560px; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px;
}

/* ─── INCLUDES GRID (service pages) ─── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.includes-card {
  border: 1.5px solid var(--cinza);
  border-radius: 14px;
  padding: 28px;
  background: var(--branco);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.includes-card:hover {
  border-color: var(--bordo);
  box-shadow: 0 8px 28px rgba(123,24,24,0.08);
  transform: translateY(-3px);
}
.includes-icon {
  width: 44px; height: 44px;
  background: var(--creme); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordo); margin-bottom: 16px;
}
.includes-title {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--preto); letter-spacing: -0.3px; margin-bottom: 8px;
}
.includes-desc { font-size: 13px; color: #666; line-height: 1.65; }

/* ─── TIPO BADGE / SECTION (service pages) ─── */
.tipo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--creme); color: var(--bordo);
  border: 1.5px solid var(--cinza);
  padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.tipo-section { padding: 80px 48px; }
.tipo-section-inner { max-width: 1200px; margin: 0 auto; }
.tipo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}
.tipo-header-right { padding-top: 8px; }
.tipo-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.tipo-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #555; line-height: 1.6;
}
.tipo-feature-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--creme); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bordo); margin-top: 1px;
}

/* ─── SECTION CREME ─── */
.section-creme { background: var(--creme); }

/* ─── SYMPTOMS GRID ─── */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.symptom-card {
  background: var(--branco);
  border-radius: 12px;
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.symptom-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.symptom-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bordo); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.symptom-title {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--preto); margin-bottom: 4px; letter-spacing: -0.2px;
}
.symptom-desc { font-size: 13px; color: #666; line-height: 1.6; }

/* ─── SECTION DARK (processo) ─── */
.section-dark {
  background: var(--preto); padding: 80px 48px;
  position: relative; overflow: hidden;
}
.section-dark::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bordo), var(--vermelho));
}
.section-dark .section-tag { color: var(--vermelho); }
.section-dark .section-title { color: var(--branco); }
.section-dark .section-desc { color: rgba(255,255,255,0.5); }

/* ─── PROCESS STEPS (service pages) ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px; height: 1px;
  background: rgba(255,255,255,0.1);
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-step-num {
  width: 56px; height: 56px;
  background: var(--bordo); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: var(--branco); margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.process-step-title {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--branco); margin-bottom: 10px; letter-spacing: -0.3px;
}
.process-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ─── NAV SERVIÇO ─── */
.service-nav {
  background: var(--creme);
  border-top: 1px solid var(--cinza);
  border-bottom: 1px solid var(--cinza);
  padding: 20px 48px;
}
.service-nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.service-nav-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--bordo);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px;
  transition: opacity 0.2s;
}
.service-nav-link:hover { opacity: 0.7; }

/* ─── SECTION DIVIDER ─── */
.section-divider {
  border: none;
  border-top: 1px solid var(--cinza);
  margin: 0;
}

/* ─── HERO TRUST BADGES ─── */
.hero-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 10px 16px;
  font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500;
}
.hero-trust-badge svg { color: var(--vermelho); flex-shrink: 0; }

/* ─── CTA SECTION ─── */
.section-cta {
  background: var(--bordo); padding: 100px 48px;
  position: relative; overflow: hidden;
}
.section-cta::after {
  content: 'MINAS';
  position: absolute; font-family: var(--font-display); font-weight: 900; font-size: 260px;
  color: rgba(255,255,255,0.04); bottom: -40px; right: -20px;
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -4px;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.cta-tag {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; display: block;
}
.cta-title {
  font-family: var(--font-display); font-weight: 800; font-size: 60px;
  color: var(--branco); line-height: 1.02; margin-bottom: 20px; letter-spacing: -2px;
}
.cta-desc { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.cta-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 15px; }
.contact-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { color: var(--branco); }
.cta-wa-card {
  background: var(--branco); border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.cta-wa-title {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  letter-spacing: -0.5px; color: var(--preto);
}
.cta-wa-sub { font-size: 13px; color: var(--cinza-medio); line-height: 1.5; }

/* ─── FOOTER ─── */
footer {
  background: var(--preto);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 48px 0;
  position: relative; overflow: hidden;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; margin-top: 20px; }
.footer-col-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-links span { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-links span:hover { color: var(--branco); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0 32px;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-brand-big {
  font-family: var(--font-display); font-weight: 900; font-size: 120px;
  color: rgba(255,255,255,0.025);
  position: absolute; bottom: 32px; left: 0; right: 0;
  text-align: center; pointer-events: none; user-select: none;
  line-height: 1; letter-spacing: -2px;
}
.footer-logo { height: 44px; width: auto; }
@media (min-width: 1025px) {
  .footer-logo { width: 155px; height: auto; }
}

/* ─── SOCIAL ─── */
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: all 0.2s;
}
.social-link:hover { border-color: var(--vermelho); color: var(--vermelho); background: rgba(232,28,46,0.08); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: #25D366; color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ─── MOBILE NAV HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.05); }
.nav-hamburger span {
  display: block; height: 2px; width: 22px;
  background: var(--preto); border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--branco);
  overflow-y: auto;
  padding: 72px 24px 120px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--preto);
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: rgba(0,0,0,0.06); }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; }
.mobile-menu-links > li { border-bottom: 1px solid var(--cinza); }
.mobile-menu-links > li > a {
  display: block; padding: 16px 0;
  font-size: 18px; font-weight: 600;
  color: var(--preto); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-links > li > a:hover { color: var(--bordo); }
.mobile-submenu {
  list-style: none; padding: 0 0 12px 0;
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-submenu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px;
  font-size: 14px; font-weight: 500;
  color: #666; text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-submenu a:hover { background: var(--creme); color: var(--bordo); }
.mobile-submenu .nav-dropdown-num {
  font-size: 10px; font-weight: 700;
  color: var(--vermelho); letter-spacing: 1px;
  width: 18px; flex-shrink: 0; font-family: var(--font-display);
}

/* ─── MOBILE BOTTOM BAR ─── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--preto);
  border-top: 1px solid rgba(255,255,255,0.08);
  height: 64px;
  align-items: stretch;
}
.mobile-bottom-phone {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; color: var(--branco);
  font-size: 13px; font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.mobile-bottom-phone:hover { background: rgba(255,255,255,0.06); }
.mobile-bottom-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; background: #25D366; color: white;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s;
}
.mobile-bottom-wa:hover { background: #1fba57; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  right: 16px; bottom: 80px;
  z-index: 140;
  width: 36px; height: 36px;
  background: rgba(26,26,26,0.65);
  color: white; border: none; border-radius: 8px;
  align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0; display: none;
  transition: opacity 0.25s;
}
.back-to-top.visible { opacity: 1; }

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .tipo-header { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-wa-card { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {
  nav { position: static; z-index: auto; }
  .nav-hamburger { display: flex; }
  .nav-right { display: none; }
  .whatsapp-float { display: none !important; }
  .mobile-bottom-bar { display: flex; }
  .back-to-top { display: flex; }
  body { padding-bottom: 64px; }

  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 60px 24px; }
  .page-hero-title { font-size: 42px; }
  .section { padding: 60px 24px; }
  .section-dark { padding: 60px 24px; }
  .tipo-section { padding: 60px 24px; }
  .includes-grid { grid-template-columns: 1fr; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .section-cta { padding: 60px 24px; }
  .cta-title { font-size: 38px; }
  .service-nav { padding: 16px 24px; }
  footer { padding: 48px 24px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-trust-badges { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILIDADES — Substituem atributos style="" inline
   ═══════════════════════════════════════════════════════════════ */
.cta-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.cta-wa-icon { width: 64px; height: 64px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }
.btn-nowrap { white-space: nowrap; flex-shrink: 0; }
.cta-wa-phones { font-size: 12px; color: #aaa; }
.footer-links-row { display: flex; gap: 20px; }
.footer-link-small { font-size: 12px; color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-inner .social-links { margin-top: 24px; }
.wa-detail:last-child { margin-bottom: 0; }
.wa-card .btn-whatsapp { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.cta-wa-card .btn-whatsapp { width: 100%; justify-content: center; }
.section-dark .section-desc { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   INDEX (body.page-home) — Overrides e estilos exclusivos
   ═══════════════════════════════════════════════════════════════ */
.page-home nav { border-bottom: 1px solid rgba(255,255,255,0.15); }
.page-home .section { padding: 100px 48px; }
.page-home .section-tag { margin-bottom: 12px; letter-spacing: 2px; }
.page-home .section-title { font-size: 58px; line-height: 1.02; }
.page-home .section-title em { color: var(--vermelho); font-weight: 800; }
.page-home .section-desc { font-size: 16px; max-width: 580px; }
.page-home .section-cta { padding: 100px 48px; }
.page-home .cta-title { font-size: 68px; }

/* Hero */
.hero-wrap { position: relative; overflow: hidden; min-height: calc(100vh - 72px); display: flex; align-items: center; }
.hero-wrap::before { content: ''; position: absolute; inset: -32px; background: url('imagens/bg-hero-site-miasescapamentos.webp') center/cover no-repeat; filter: blur(10px); transform: scale(1.05); z-index: 0; }
.hero-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,4,4,0.82) 0%, rgba(18,8,8,0.72) 60%, rgba(8,4,4,0.55) 100%); z-index: 1; }
.hero { max-width: 1200px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; width: 100%; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(4px); }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--vermelho); border-radius: 50%; flex-shrink: 0; }
.hero-headline { font-family: var(--font-display); font-weight: 800; font-size: 88px; line-height: 1.0; color: var(--branco); margin-bottom: 20px; letter-spacing: -2px; }
.hero-headline em { font-style: italic; color: var(--vermelho); font-weight: 800; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 500px; margin-bottom: 36px; line-height: 1.75; }
.hero-stats { display: flex; gap: 36px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.hero-stats .hero-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: var(--branco); line-height: 1; letter-spacing: -1px; }
.hero-stats .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.7px; margin-top: 4px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; align-items: center; }

/* WA Card (hero) */
.wa-card { background: var(--branco); border-radius: 16px; padding: 40px 36px; box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 4px 20px rgba(0,0,0,0.2); }
.wa-card-title { font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -1px; color: var(--preto); margin-bottom: 6px; line-height: 1.05; }
.wa-card-sub { font-size: 14px; color: var(--cinza-medio); margin-bottom: 32px; font-weight: 400; line-height: 1.6; }
.wa-card-divider { height: 1px; background: var(--cinza); margin: 28px 0; }
.wa-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.wa-detail-icon { width: 36px; height: 36px; background: var(--creme); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--bordo); }
.wa-detail-text { font-size: 13px; color: #666; line-height: 1.5; }
.wa-detail-text strong { color: var(--preto); display: block; font-size: 14px; margin-bottom: 1px; }

/* Brands Strip */
.brands-strip { background: var(--preto); padding: 32px 48px; }
.brands-strip-inner { max-width: 1200px; margin: 0 auto; }
.brands-label { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-tag { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; transition: all 0.2s; cursor: default; }
.brand-tag:hover { color: white; border-color: var(--vermelho); background: rgba(232,28,46,0.06); }

/* Google Reviews */
.section-greviews { background: var(--creme); padding: 72px 48px; }
.greviews-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.greviews-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.greviews-badge { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.g-logo { display: flex; align-items: center; gap: 8px; }
.g-logo-icon { width: 32px; height: 32px; }
.g-logo-text { font-size: 14px; font-weight: 600; color: #555; }
.greview-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.greview-card { background: var(--branco); border-radius: 12px; padding: 24px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.greview-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.greview-author { display: flex; align-items: center; gap: 12px; }
.greview-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bordo); color: white; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.greview-name { font-weight: 600; font-size: 14px; color: var(--preto); }
.greview-date { font-size: 12px; color: var(--cinza-medio); margin-top: 2px; }
.greview-g-icon { opacity: 0.5; }
.greview-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.greview-text { font-size: 14px; color: #555; line-height: 1.7; }

/* Services Grid (home) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.service-card { border: 1.5px solid var(--cinza); border-radius: 14px; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; background: var(--branco); }
.service-card:hover { border-color: var(--bordo); box-shadow: 0 12px 36px rgba(123,24,24,0.12); transform: translateY(-3px); }
.service-card-body { padding: 24px 28px 28px; }
.service-card-num { font-family: var(--font-display); font-size: 13px; letter-spacing: 2px; color: var(--vermelho); margin-bottom: 10px; }
.service-card-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--preto); margin-bottom: 8px; letter-spacing: -0.5px; line-height: 1.1; }
.service-card-desc { font-size: 13px; color: #666; line-height: 1.65; }

/* Trust Section */
.section-trust { background: var(--preto); padding: 100px 48px; position: relative; overflow: hidden; }
.section-trust::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--bordo), var(--vermelho)); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; }
.trust-left .section-tag { color: var(--vermelho); }
.trust-left .section-title { color: var(--branco); font-size: 54px; letter-spacing: -1.5px; }
.trust-desc { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.8; max-width: 460px; margin-bottom: 48px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: var(--vermelho); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; font-weight: 500; }
.trust-image { border-radius: 14px; overflow: hidden; position: relative; }
.trust-image img { width: 100%; height: 520px; object-fit: cover; display: block; filter: brightness(0.9); }
.trust-badge { position: absolute; bottom: 24px; left: 24px; background: var(--vermelho); color: white; padding: 14px 22px; border-radius: 10px; font-weight: 700; font-size: 13px; }
.trust-badge span { display: block; font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.5px; line-height: 1; }

/* Process Section (home) */
.section-process { background: var(--creme); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; }
.process-img-wrap { margin-top: 64px; border-radius: 16px; overflow: hidden; position: relative; }
.process-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.process-img-wrap::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); z-index: 1; pointer-events: none; }
.process-img-caption { position: absolute; bottom: 28px; left: 32px; color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; z-index: 2; }
.process-grid .process-step { padding: 32px 24px; text-align: left; }
.process-grid .process-step::after { content: '\2192'; position: absolute; top: 36px; right: -8px; font-size: 20px; color: var(--cinza); }
.process-grid .process-step:last-child::after { display: none; }
.process-num { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: var(--cinza); line-height: 1; margin-bottom: 16px; letter-spacing: -1px; }
.process-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--preto); margin-bottom: 8px; letter-spacing: -0.3px; }
.process-desc { font-size: 13px; color: #777; line-height: 1.65; }

/* About Section */
.section-about { background: var(--branco); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: 14px; overflow: hidden; }
.about-image img { width: 100%; height: 580px; object-fit: cover; display: block; }
.about-image-badge { position: absolute; bottom: 28px; right: 28px; background: var(--branco); border-radius: 12px; padding: 20px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); text-align: center; }
.about-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--bordo); line-height: 1; letter-spacing: -1px; }
.about-badge-text { font-size: 11px; color: var(--cinza-medio); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; font-weight: 500; }
.values-list { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-accent { width: 3px; height: 48px; background: var(--bordo); border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-weight: 700; font-size: 15px; color: var(--preto); margin-bottom: 4px; }
.value-desc { font-size: 13px; color: #777; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   PÁGINA DE SERVIÇOS (body.page-servicos)
   ═══════════════════════════════════════════════════════════════ */
.page-servicos .section-title { font-size: 52px; }
.page-servicos .section-desc { max-width: 400px; }
.page-hero-stats { display: flex; gap: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.page-hero-stats .hero-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 36px; color: var(--branco); line-height: 1; letter-spacing: -1px; }
.page-hero-stats .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.7px; margin-top: 4px; font-weight: 500; }
.services-section { padding: 80px 48px; background: var(--branco); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-intro { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 40px; }
.services-section .services-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.svc-card { border: 1.5px solid var(--cinza); border-radius: 16px; overflow: hidden; background: var(--branco); display: flex; flex-direction: column; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.svc-card:hover { border-color: var(--bordo); box-shadow: 0 12px 40px rgba(123,24,24,0.1); transform: translateY(-4px); }
.svc-card-accent { height: 4px; background: linear-gradient(90deg, var(--bordo), var(--vermelho)); }
.svc-card-body { padding: 28px 32px 32px; flex: 1; display: flex; flex-direction: column; }
.svc-card-num { font-family: var(--font-display); font-size: 12px; letter-spacing: 2px; color: var(--vermelho); margin-bottom: 12px; font-weight: 700; }
.svc-card-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--preto); margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.1; }
.svc-card-desc { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.svc-card-list { list-style: none; margin-bottom: 28px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.svc-card-list li { font-size: 13px; color: #555; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.svc-card-list li::before { content: ''; width: 5px; height: 5px; background: var(--vermelho); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.svc-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--cinza); margin-top: auto; }
.svc-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--bordo); text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px; transition: gap 0.2s; }
.svc-card-link:hover { gap: 10px; }
.svc-card-link svg { transition: transform 0.2s; }
.svc-card-link:hover svg { transform: translateX(3px); }
.svc-card-wa { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #25D366; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.svc-card-wa:hover { opacity: 0.75; }
.promise-strip { background: var(--creme); padding: 60px 48px; border-top: 1px solid var(--cinza); border-bottom: 1px solid var(--cinza); }
.promise-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.promise-item { display: flex; flex-direction: column; gap: 10px; }
.promise-icon { width: 44px; height: 44px; background: var(--bordo); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.promise-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--preto); letter-spacing: -0.3px; }
.promise-desc { font-size: 13px; color: #666; line-height: 1.6; }

/* ─── TABLET (≤ 1024px) — index + servicos ─── */
@media (max-width: 1024px) {
  .page-home nav { padding: 0 24px; }
  .page-home .nav-phone { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-headline { font-size: 64px; }
  #orcamento { max-width: 480px; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-image img { height: 360px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid .process-step:nth-child(3)::after { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 400px; }
  .page-home .section { padding: 72px 24px; }
  .section-trust { padding: 72px 24px; }
  .page-home .section-cta { padding: 72px 24px; }
  .section-greviews { padding: 56px 24px; }
  .brands-strip { padding: 32px 24px; }
  .page-home .section-title { font-size: 44px; }
  .trust-left .section-title { font-size: 44px; }
  .page-home .cta-title { font-size: 52px; }
  .services-section { padding: 60px 24px; }
  .services-section .services-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ─── MOBILE (≤ 768px) — index + servicos ─── */
@media (max-width: 768px) {
  .page-home nav { padding: 0 16px; height: 60px; }
  .page-home .nav-logo img { height: 40px; }
  .hero { grid-template-columns: 1fr; padding: 48px 16px; gap: 32px; }
  .hero-headline { font-size: 48px; letter-spacing: -1px; }
  .hero-stats { gap: 20px; }
  .hero-stats .hero-stat-num { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  #orcamento { max-width: 100%; }
  .page-home .section { padding: 56px 16px; }
  .section-trust { padding: 56px 16px; }
  .page-home .section-cta { padding: 56px 16px; }
  .section-greviews { padding: 48px 16px; }
  .brands-strip { padding: 24px 16px; }
  .page-home footer { padding: 40px 16px 0; }
  .page-home .section-title { font-size: 36px; letter-spacing: -1px; }
  .trust-left .section-title { font-size: 36px; }
  .page-home .cta-title { font-size: 40px; letter-spacing: -1px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .greviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .greviews-badge { align-items: flex-start; }
  .greview-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid .process-step::after { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 300px; }
  .page-home .section-cta::after { font-size: 140px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .services-section { padding: 60px 24px; }
  .services-section .services-grid { grid-template-columns: 1fr; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .promise-strip { padding: 48px 24px; }
  .promise-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .page-hero-stats { gap: 28px; flex-wrap: wrap; }
}

/* ─── MOBILE (≤ 480px) — index ─── */
@media (max-width: 480px) {
  .hero-headline { font-size: 38px; }
  .hero-stats .hero-stat-num { font-size: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .wa-card { padding: 28px 20px; }
  .wa-card-title { font-size: 26px; }
  .page-home .cta-title { font-size: 32px; }
  .page-home .section-title { font-size: 30px; letter-spacing: -0.5px; }
}
