﻿:root {
  --bg: #0e0f10;
  --surface: #151719;
  --surface-strong: #1d2024;
  --surface-raised: #23272c;
  --ink: #e8ecef;
  --muted: #a7afb9;
  --line: #2a2f36;
  --line-soft: rgba(226, 232, 240, 0.08);
  --dark: #0b0d0f;
  --dark-2: #111418;
  --steel: #c2c9d1;
  --metal: #eef1f3;
  --accent: #d6dce2;
  --accent-2: #8d98a6;
  --success: #1f7a4d;
  --brass: #b4bdc6;
  --brass-strong: #e2e7ec;
  --brass-soft: rgba(180, 189, 198, 0.16);
  --brass-line: rgba(180, 189, 198, 0.4);
  --shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
  --shadow-lift: 0 28px 72px rgba(0, 0, 0, 0.5);
  --radius: 2px;
  --radius-soft: 6px;
  --container: 1180px;
  --container-narrow: 880px;
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-snap: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(100, 116, 139, 0.16), transparent 32rem),
    linear-gradient(180deg, #111315 0, var(--bg) 28rem);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #0a0b0d;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brass), #6a5236);
  border: 2px solid #0a0b0d;
}

body {
  scrollbar-color: var(--brass) #0a0b0d;
  scrollbar-width: thin;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--metal);
}

.brand,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  font-variation-settings: "opsz" 144;
  line-height: 1.04;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-variation-settings: "opsz" 96;
  line-height: 1.1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 500;
  font-variation-settings: "opsz" 36;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

p {
  font-size: 1rem;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

[id] {
  scroll-margin-top: 110px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--metal);
  color: var(--dark);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header floating glass pill */

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 1180px;
  background: rgba(15, 17, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.3);
  transition: background 320ms ease, top 320ms ease, max-width 320ms ease, border-color 320ms ease;
}

.site-header.scrolled {
  top: 12px;
  background: rgba(10, 12, 14, 0.72);
  border-color: rgba(255, 255, 255, 0.06);
}

.site-header .container {
  width: 100%;
  margin: 0;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  position: relative;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--metal);
  font-size: 1rem;
  text-transform: none;
}

.brand img {
  width: auto;
  height: 52px;
  max-height: 52px;
  object-fit: contain;
  background: transparent;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: opacity 200ms ease;
}

.main-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 14px;
  background: #0d1014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

@supports (backdrop-filter: blur(20px)) {
  .main-nav {
    background: rgba(13, 16, 20, 0.94);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
  }
}

.nav-toggle:checked ~ .main-nav {
  display: grid;
}

.menu-links {
  display: grid;
  gap: 2px;
}

.main-nav a {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  border-radius: 10px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav .menu-links a:hover,
.main-nav .menu-links a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: block;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  list-style: none;
  text-transform: none;
  border-radius: 10px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] summary {
  color: #fff;
}

.nav-dropdown-menu {
  display: grid;
  padding: 6px;
  background: #0d0f12;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-menu a {
  min-width: 200px;
  white-space: nowrap;
}

/* Telefone limpo, sem borda */
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  height: 40px;
  padding: 0 14px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border: none !important;
  border-radius: 0;
  background: transparent !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
  transition: color 180ms ease !important;
  box-shadow: none !important;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: #ffffff !important;
  background: transparent !important;
}

/* CTA Orcamento solido verde, alinhado */
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px !important;
  background: linear-gradient(135deg, #2fd36f 0%, #25d366 50%, #1fbe5a 100%);
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important;
  text-align: center;
  font-family: var(--font-body) !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Mobile menu — telefone e CTA dentro do dropdown */
@media (max-width: 719px) {
  .main-nav .nav-phone {
    display: flex !important;
    justify-content: center;
    height: 48px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 999px;
    color: #ffffff !important;
    font-size: 0.95rem !important;
  }

  .main-nav .nav-cta {
    display: flex !important;
    justify-content: center;
    height: 48px;
    margin-top: 8px;
    border-radius: 999px;
    font-size: 0.95rem !important;
  }

  /* Hero mobile: H1 ligeiramente maior + esconde o indicador
     de scroll que sobrepunha o conteúdo final do hero */
  .hero-title {
    font-size: clamp(2.05rem, 7.5vw, 2.55rem);
  }

  .hero-scroll {
    display: none;
  }
}

/* Sections */

.section {
  padding: clamp(72px, 11vw, 140px) 0;
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
    var(--surface-strong);
}

/* Hero */

.hero {
  position: relative;
  min-height: 620px;
  min-height: min(86svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.02) contrast(1.22) brightness(0.98) saturate(1.12);
  transform: scale(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    /* Camada 1 — escurecimento concentrado no centro (legibilidade do texto) */
    radial-gradient(
      ellipse 52% 78% at 50% 52%,
      rgba(6, 8, 11, 0.62) 0%,
      rgba(6, 8, 11, 0.5) 28%,
      rgba(6, 8, 11, 0.28) 56%,
      rgba(6, 8, 11, 0.08) 78%,
      rgba(6, 8, 11, 0) 100%
    ),
    /* Camada 2 — vinheta sutil nas bordas (profundidade cinematográfica) */
    radial-gradient(
      ellipse 90% 110% at 50% 50%,
      transparent 0%,
      transparent 55%,
      rgba(6, 8, 11, 0.18) 85%,
      rgba(6, 8, 11, 0.38) 100%
    ),
    /* Camada 3 — fade leve no topo pro header glass respirar */
    linear-gradient(
      180deg,
      rgba(6, 8, 11, 0.38) 0%,
      rgba(6, 8, 11, 0.08) 16%,
      rgba(6, 8, 11, 0) 28%
    ),
    /* Camada 4 — fade no rodapé pra transição com a próxima seção */
    linear-gradient(
      0deg,
      rgba(6, 8, 11, 0.82) 0%,
      rgba(6, 8, 11, 0.32) 14%,
      rgba(6, 8, 11, 0) 30%
    );
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 40px;
  gap: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.82), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 7px 16px;
  background: rgba(15, 17, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.28), 0 0 12px rgba(37, 211, 102, 0.4);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.28), 0 0 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.12), 0 0 16px rgba(37, 211, 102, 0.5); }
}

.hero-title {
  max-width: 920px;
  margin: 0 0 20px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 3.65rem);
  font-variation-settings: "opsz" 144;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  color: var(--brass-strong);
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.hero-cta-primary,
.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  text-align: left;
  font-family: var(--font-body);
  text-shadow: none;
  transition: transform 220ms var(--ease-out-snap), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-cta-primary {
  background: linear-gradient(135deg, #2fd36f 0%, #25d366 44%, #149a4f 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 14px 36px rgba(37, 211, 102, 0.34);
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 18px 44px rgba(37, 211, 102, 0.45);
}

.hero-cta-primary .whatsapp-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
}

.hero-cta-primary span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-cta-primary strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-cta-primary small {
  font-size: 0.74rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-cta-phone {
  background: rgba(20, 22, 26, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-cta-phone:hover,
.hero-cta-phone:focus-visible {
  transform: translateY(-2px);
  border-color: var(--brass);
  background: rgba(180, 189, 198, 0.12);
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--brass-strong);
}

.hero-cta-phone span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-cta-phone strong {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-cta-phone small {
  font-size: 0.74rem;
  font-weight: 400;
  opacity: 0.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  text-shadow: none;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 400;
}

.hero-trust span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(180, 189, 198, 0.18);
  color: var(--brass-strong);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-cities {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  text-shadow: none;
}

.cities-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 4px;
}

.hero-cities a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}

.hero-cities a:hover,
.hero-cities a:focus-visible {
  color: var(--brass-strong);
  border-bottom-color: var(--brass);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: none;
  transition: color 220ms ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  color: var(--brass-strong);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), var(--brass));
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot,
  .hero-scroll-line {
    animation: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 0;
  color: var(--accent-2);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.eyebrow-brass,
.section-dark .eyebrow-brass,
.hero .eyebrow-brass {
  color: var(--brass);
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--steel);
}

.lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: #d2d8e0;
  font-size: 1.075rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 240ms var(--ease-out-snap),
    background 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    letter-spacing 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  letter-spacing: 0.13em;
}

.button-primary {
  background: linear-gradient(135deg, #2fd36f 0%, #25d366 44%, #128c4a 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 14px 38px rgba(37, 211, 102, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 18px 46px rgba(37, 211, 102, 0.32);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  color: currentColor;
  flex: 0 0 auto;
}

.button-secondary {
  border-color: rgba(226, 232, 240, 0.32);
  color: var(--metal);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brass);
  color: var(--brass-strong);
  background: rgba(180, 189, 198, 0.06);
}

/* Section heading */

.section-heading {
  position: relative;
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--brass), rgba(180, 189, 198, 0));
}

.section-heading p:not(.eyebrow),
.split p,
.final-cta p,
.site-footer p,
.post-card p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p:not(.eyebrow) {
  margin-top: 8px;
  font-size: 1.05rem;
  max-width: 640px;
}

.section-heading.compact {
  margin-bottom: 40px;
}

/* Services section — tema claro */

.services {
  padding-top: clamp(56px, 7vw, 88px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(180, 189, 198, 0.1), transparent 60%),
    linear-gradient(180deg, #f4f5f7 0%, #ffffff 38%, #ffffff 100%);
  color: #1a1d22;
}

.services .section-heading h2 {
  color: #0f1115;
}

.services .section-heading p:not(.eyebrow) {
  color: #475569;
}

.services .eyebrow {
  color: #6b7280;
}

.services .eyebrow::before {
  background: linear-gradient(90deg, #9ca3af, rgba(156, 163, 175, 0));
  opacity: 0.7;
}

.services .section-heading::after {
  background: linear-gradient(90deg, #9ca3af, rgba(156, 163, 175, 0));
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fbfcfd;
  border: 1px solid #e3e7ec;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
  transition: transform 320ms var(--ease-out-snap),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 44px rgba(15, 17, 21, 0.1);
}

.service-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-soft);
}

.service-card:hover .service-card-media img {
  transform: scale(1.06);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 26px 30px;
}

.service-card h3 {
  margin: 0;
  color: #0f1115;
  font-size: 1.25rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-icon {
  display: inline-block;
  margin: 0 0 6px;
  padding: 0;
  background: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

/* Portfolio */

.work-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--line);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.06) brightness(0.92);
  transition: transform 720ms var(--ease-out-soft), filter 480ms ease;
}

.work-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.08) brightness(0.96);
}

.work-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 22px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  text-transform: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

/* Split section */

.split-grid {
  display: grid;
  gap: 40px;
}

.split-grid > div:first-child p {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.city-links a {
  padding: 11px 16px;
  color: var(--metal);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
}

.city-links a:hover,
.city-links a:focus-visible {
  border-color: var(--brass);
  color: var(--brass-strong);
  background: rgba(180, 189, 198, 0.06);
}

.feature-list div {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
    var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass);
  transition: border-color 240ms ease, background 240ms ease;
}

.feature-list div:hover {
  background:
    linear-gradient(145deg, rgba(180, 189, 198, 0.04), rgba(255, 255, 255, 0.012)),
    var(--surface-raised);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  color: var(--metal);
  text-transform: none;
}

.feature-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Blog preview card */

.post-card {
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
    var(--surface);
  border: 1px solid var(--line);
  transition: border-color 320ms ease, transform 320ms var(--ease-out-snap), box-shadow 320ms ease;
}

.post-card:hover {
  border-color: var(--brass-line);
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
}

.post-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(0.15);
  transition: filter 480ms ease;
}

.post-card:hover img {
  filter: grayscale(0);
}

.post-card div {
  padding: 28px;
}

.post-card h3 {
  font-size: 1.35rem;
}

.post-meta {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.post-card h3 a {
  color: var(--metal);
  transition: color 240ms ease;
}

.post-card h3 a:hover,
.post-card h3 a:focus-visible {
  color: var(--brass-strong);
}

/* Final CTA */

.final-cta {
  position: relative;
  isolation: isolate;
  background-color: #0a0c0f;
  color: #fff;
  overflow: hidden;
}

/* Camada 1 (mais profunda) — imagem de fundo */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../../imagens/funilaria.webp") center / cover no-repeat;
}

/* Camada 2 — gradiente radial (não pixelado, suave) */
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 55% 70% at 50% 50%,
    rgba(9, 11, 13, 0.78) 0%,
    rgba(9, 11, 13, 0.62) 45%,
    rgba(9, 11, 13, 0.35) 75%,
    rgba(9, 11, 13, 0.28) 100%
  );
}

/* Linha decorativa brass — movida para dentro da .cta-box */
.cta-box::before {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, var(--brass), transparent);
}

.cta-box {
  max-width: 760px;
  text-align: center;
}

.cta-box .eyebrow {
  justify-content: center;
}

.cta-box .eyebrow::before {
  display: none;
}

.cta-box p {
  max-width: 600px;
  margin-inline: auto;
  color: #d7dde6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-box .button {
  margin-top: 32px;
}

/* Footer */

.site-footer {
  position: relative;
  padding: 88px 0 28px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(180, 189, 198, 0.06), transparent 70%),
    linear-gradient(180deg, #0a0b0d 0%, #07080a 100%);
  color: #fff;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 189, 198, 0.35) 50%,
    transparent
  );
}

.footer-grid {
  display: grid;
  gap: 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--metal);
  transition: color 220ms ease;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
}

.footer-brand span {
  display: inline-block;
  line-height: 1.1;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: var(--brass-strong);
}

.site-footer p {
  max-width: 380px;
  color: var(--accent-2);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact strong,
.footer-nav-title {
  display: block;
  margin-bottom: 6px;
  color: var(--brass);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
  position: relative;
  color: #d8dee5;
  font-size: 0.94rem;
  line-height: 1.5;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-contact a {
  width: fit-content;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--brass-strong);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  margin-top: 4px;
  border: 1px solid rgba(180, 189, 198, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(180, 189, 198, 0.45);
  background: rgba(180, 189, 198, 0.08);
}

.social-link img {
  width: 16px;
  height: 16px;
}

.site-footer nav {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer nav a {
  position: relative;
  width: fit-content;
  color: #d8dee5;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: color 200ms ease;
}

.site-footer nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--brass-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms var(--ease-out-soft);
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--brass-strong);
}

.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

/* Floating buttons */

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 40;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: transform 240ms var(--ease-out-snap), box-shadow 240ms ease;
}

.floating-whatsapp {
  right: 18px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fd36f, #128c4a);
  font-size: 1.35rem;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.5);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.back-to-top {
  left: 18px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  background: rgba(20, 22, 26, 0.9);
  color: var(--metal);
  font-weight: 600;
  border-color: var(--brass-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 280ms ease, transform 280ms var(--ease-out-snap), color 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--brass-strong);
  transform: translateY(-2px);
}

/* Floating WhatsApp message bubble */

.floating-wa-bubble {
  position: fixed;
  z-index: 41;
  right: 18px;
  bottom: 92px;
  max-width: 248px;
  padding: 14px 36px 14px 16px;
  background: #ffffff;
  color: #1a1d22;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24), 0 2px 6px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  animation: wa-bubble-in 480ms var(--ease-out-soft) 1400ms forwards;
}

.floating-wa-bubble::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -6px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.04);
}

.floating-wa-close {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.floating-wa-close:hover,
.floating-wa-close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1d22;
}

.floating-wa-bubble.is-hidden {
  display: none;
}

@keyframes wa-bubble-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-wa-bubble {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Reveal on scroll */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms var(--ease-out-soft);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 240ms; }

/* Article (blog/cidades) preserva compatibilidade */

/* ============================================
   Map section (localização)
   ============================================ */

.map-section {
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(180, 189, 198, 0.06), transparent 60%),
    var(--surface-strong);
  color: #fff;
  border-top: 1px solid var(--line);
}

.map-section .section-heading {
  margin-bottom: 32px;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.map-section .section-heading::after {
  margin: 16px auto 0;
}

.map-section .section-heading h2 {
  color: var(--metal);
}

.map-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
  background: #0a0c0f;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.92rem;
}

.map-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brass-strong);
  font-weight: 500;
  transition: color 200ms ease, gap 200ms ease;
}

.map-link a:hover,
.map-link a:focus-visible {
  color: #fff;
  gap: 10px;
}

/* Em telas grandes o mapa fica mais baixo proporcionalmente */
@media (min-width: 1024px) {
  .map-wrapper {
    aspect-ratio: 21 / 9;
    max-height: 480px;
  }
}

/* ============================================
   Onde atendemos (hub de cidades)
   ============================================ */

.cities-hero {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 6vw, 72px);
  background:
    radial-gradient(ellipse 60% 70% at 18% 0%, rgba(180, 189, 198, 0.1), transparent 60%),
    linear-gradient(180deg, #0d0e10 0%, #111315 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.cities-hero h1 {
  max-width: 880px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cities-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brass-strong);
}

.cities-hero .lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cities-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(180, 189, 198, 0.1), transparent 60%),
    linear-gradient(180deg, #f4f5f7 0%, #ffffff 100%);
  color: #1a1d22;
  padding-top: clamp(56px, 7vw, 88px);
}

.cities-section .section-heading h2 {
  color: #0f1115;
}

.cities-section .section-heading p:not(.eyebrow) {
  color: #475569;
}

.cities-section .eyebrow {
  color: #6b7280;
}

.cities-section .eyebrow::before {
  background: linear-gradient(90deg, #9ca3af, rgba(156, 163, 175, 0));
  opacity: 0.7;
}

.cities-section .section-heading::after {
  background: linear-gradient(90deg, #9ca3af, rgba(156, 163, 175, 0));
}

.cities-grid {
  display: grid;
  gap: 22px;
}

.city-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #e7eaee;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
  transition: transform 320ms var(--ease-out-snap),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.city-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 18px 44px rgba(15, 17, 21, 0.1);
}

.city-card-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.city-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1;
  color: #9ca3af;
  letter-spacing: 0.04em;
}

.city-card h3 {
  margin: 0;
  color: #0f1115;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.city-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.65;
}

.city-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  color: #0f1115;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, gap 200ms ease;
  align-self: flex-start;
}

.city-card-link span {
  transition: transform 220ms var(--ease-out-soft);
}

.city-card-link:hover,
.city-card-link:focus-visible {
  color: #475569;
  gap: 12px;
}

.city-card-link:hover span,
.city-card-link:focus-visible span {
  transform: translateX(2px);
}

/* Cobertura regional (CTA final) */

.cities-coverage {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(180, 189, 198, 0.06), transparent 60%),
    var(--surface-strong);
  border-top: 1px solid var(--line);
  color: #fff;
}

.cities-coverage-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.cities-coverage h2 {
  margin: 0 0 12px;
  color: var(--metal);
  font-size: clamp(1.55rem, 3.6vw, 2.1rem);
  line-height: 1.15;
}

.cities-coverage p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 580px;
}

.cities-coverage-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cities-coverage-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.cities-coverage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--brass);
}

/* ============================================
   Blog & Artigo — tema claro
   Escopado em .blog-main (não afeta outras páginas)
   ============================================ */

.blog-main {
  background: #eef1f4;
  color: #1a1d22;
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #6b7280;
}

.breadcrumb a {
  color: #6b7280;
  transition: color 200ms ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #0f1115;
}

.breadcrumb [aria-current="page"] {
  color: #0f1115;
  font-weight: 500;
}

.breadcrumb span[aria-hidden] {
  color: #cbd5e1;
}

/* Hero (compartilhado entre blog index e artigo) */

.blog-main .blog-hero,
.blog-main .article-hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 52px);
  background:
    radial-gradient(ellipse 70% 60% at 18% 0%, rgba(180, 189, 198, 0.16), transparent 60%),
    linear-gradient(180deg, #e8ecf0 0%, #eef1f4 100%);
  color: #0f1115;
  border-bottom: 1px solid #d8dde3;
}

.blog-main .blog-hero h1,
.blog-main .article-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #0f1115;
  font-size: clamp(1.85rem, 4.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.blog-main .blog-hero .lead,
.blog-main .article-hero .lead {
  max-width: 680px;
  margin: 0 0 24px;
  color: #475569;
}

.blog-main .blog-hero .eyebrow,
.blog-main .article-hero .eyebrow,
.blog-main .eyebrow {
  color: #6b7280;
}

.blog-main .blog-hero .eyebrow::before,
.blog-main .article-hero .eyebrow::before,
.blog-main .eyebrow::before {
  background: linear-gradient(90deg, #9ca3af, rgba(156, 163, 175, 0));
  opacity: 0.7;
}

/* Section utility */

.section-tight {
  padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px);
}

/* Lista de posts */

.blog-grid {
  display: grid;
  gap: 28px;
}

/* Post card (claro) */

.blog-main .post-card {
  display: grid;
  overflow: hidden;
  background: #fbfcfd;
  border: 1px solid #e3e7ec;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
  transition: border-color 320ms ease, transform 320ms var(--ease-out-snap), box-shadow 320ms ease;
}

.blog-main .post-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 17, 21, 0.1);
}

.blog-main .post-card-media {
  display: block;
  overflow: hidden;
}

.blog-main .post-card-media img,
.blog-main .post-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-soft);
  filter: none;
}

.blog-main .post-card:hover .post-card-media img,
.blog-main .post-card:hover img {
  transform: scale(1.03);
  filter: none;
}

.blog-main .post-card-body,
.blog-main .post-card div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
}

.blog-main .post-card h2,
.blog-main .post-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.blog-main .post-card h2 a,
.blog-main .post-card h3 a {
  color: #0f1115;
  transition: color 240ms ease;
}

.blog-main .post-card h2 a:hover,
.blog-main .post-card h2 a:focus-visible,
.blog-main .post-card h3 a:hover,
.blog-main .post-card h3 a:focus-visible {
  color: #4b5563;
}

.blog-main .post-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.65;
}

.blog-main .post-meta {
  color: var(--brass);
}

.blog-main .post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: #6b7280;
  font-size: 0.82rem;
}

.blog-main .post-card-meta span[aria-hidden] {
  color: #cbd5e1;
}

/* CTA inferior do blog index (claro) */

.blog-main .blog-cta {
  padding: clamp(40px, 6vw, 72px) 0 clamp(56px, 7vw, 96px);
  background: #e6eaee;
  border-top: 1px solid #d8dde3;
}

.blog-main .blog-cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 36px;
  background: #fbfcfd;
  border: 1px solid #e3e7ec;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
}

.blog-main .blog-cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  line-height: 1.15;
  color: #0f1115;
}

.blog-main .blog-cta-inner p {
  margin: 0;
  color: #4b5563;
  max-width: 520px;
}

.blog-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Meta do artigo (data, leitura, autor) */

.blog-main .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
}

.blog-main .article-meta span[aria-hidden] {
  color: #cbd5e1;
}

/* Layout do artigo (conteúdo + aside) */

.blog-main .article-layout {
  display: grid;
  gap: 28px;
  padding: clamp(40px, 6vw, 64px) 0 clamp(64px, 8vw, 96px);
}

/* Conteúdo do artigo (claro) */

.blog-main .article-content {
  padding: clamp(28px, 4vw, 44px);
  background: #fbfcfd;
  border: 1px solid #e3e7ec;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
}

.blog-main .article-content > p,
.blog-main .article-content > ul,
.blog-main .article-content > ol {
  max-width: 68ch;
}

.blog-main .article-content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  color: #0f1115;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  letter-spacing: -0.005em;
}

.blog-main .article-content h2:first-of-type {
  margin-top: 32px;
}

.blog-main .article-content p,
.blog-main .article-content li {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.78;
}

.blog-main .article-content ul {
  padding-left: 1.25rem;
}

.blog-main .article-content li {
  margin-bottom: 6px;
}

.blog-main .article-figure {
  margin: 32px 0;
}

.blog-main .article-figure img,
.blog-main .article-content > img {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  border: 1px solid #e7eaee;
}

.blog-main .article-figure figcaption {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.article-content .button img,
.button .whatsapp-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  flex: 0 0 18px;
}

.blog-main .article-cta {
  display: flex;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e7eaee;
}

.blog-main .article-cta .button {
  width: auto;
  max-width: 100%;
  padding-inline: 26px;
  text-align: center;
}

/* Aside do artigo (claro, sticky) */

.blog-main .article-aside {
  align-self: start;
  position: sticky;
  top: 96px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e7eaee;
  border-top: 1px solid var(--brass-line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 17, 21, 0.04);
  color: #0f1115;
}

.blog-main .article-aside h2 {
  margin: 6px 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #0f1115;
}

.blog-main .article-aside p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.6;
}

.blog-main .article-aside .button {
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.78rem;
}

.blog-main .article-aside-list {
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #e7eaee;
  list-style: none;
}

.blog-main .article-aside-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.5;
}

.blog-main .article-aside-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

/* Tablet+ */

@media (min-width: 720px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav a {
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    border-radius: 0;
  }

  .nav-dropdown summary {
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    border-radius: 0;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    min-width: 200px;
    transform: translateX(-50%);
    border-radius: 12px;
    overflow: hidden;
  }

  .menu-links {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 2px;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .hero-content .hero-actions {
    flex-wrap: nowrap;
    width: auto;
  }

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

  .work-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-card-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .work-card-large img {
    min-height: 576px;
  }

  .split-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: start;
  }

  .blog-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    padding: 44px;
  }

  .cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .cities-coverage-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.55fr) minmax(220px, 0.65fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .article-content {
    padding: 44px;
  }
}

/* Desktop */

@media (min-width: 1024px) {
  .hero {
    min-height: 760px;
    min-height: min(92svh, 860px);
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .post-card {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .post-card-media img,
  .post-card img {
    height: 100%;
    min-height: 280px;
  }
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

