:root {
  --preto: #070b12;
  --cinza-escuro: #0d121c;
  --cinza-medio: #141b28;
  --cinza-claro: #1e2738;
  /* destaque (nomes legados: --amarelo) — azul em dois tons, como antes */
  --amarelo: #3d7dd9;
  --amarelo-claro: #6eb0f5;
  --branco: #eef2f8;
  --texto-suave: #9aa8bc;
  --madeira: #1a2d4a;
  --madeira-clara: #2a4570;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--preto);
  color: var(--branco);
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--amarelo);
}

.nav-links {
  flex: 0 0 auto;
}

.nav-logo img {
  height: 44px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--branco);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amarelo);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--amarelo);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  transition:
    background 0.2s,
    transform 0.15s;
}

.nav-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.04);
}
.nav-whatsapp::after {
  display: none !important;
}

/* Ícones de marca (WhatsApp / Instagram) — URLs externas, tamanhos alinhados ao layout anterior */
.brand-icon {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-icon--float {
  width: 30px;
  height: 30px;
}

.brand-icon--nav {
  width: 18px;
  height: 18px;
}

.brand-icon--card {
  width: 32px;
  height: 32px;
}

.brand-icon--btn-big {
  width: 26px;
  height: 26px;
}

.brand-icon--social {
  width: 22px;
  height: 22px;
}

.brand-icon--footer-inline {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Topo alinhado ao invés de centralizado: botões ficam visíveis no primeiro quadro no desktop */
  padding: clamp(1rem, 3vh, 2.25rem) 6% clamp(1.75rem, 5vh, 3.5rem) 7%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amarelo);
  border: 1px solid var(--amarelo);
  padding: 5px 14px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-logo {
  width: 340px;
  max-width: 100%;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.9s ease both;
}

.hero-tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeSlideUp 1s 0.15s ease both;
}

.hero-tagline span {
  color: var(--amarelo);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  animation: fadeSlideUp 1s 0.3s ease both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s 0.45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amarelo);
  color: var(--preto);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-primary:hover {
  background: var(--amarelo-claro);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--cinza-claro);
  color: var(--branco);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}

.btn-outline:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) saturate(0.75) hue-rotate(-8deg);  
  animation: zoomIn 1.4s ease both;
}

.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--preto) 0%, transparent 35%);
  z-index: 1;
}

.hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--preto), transparent);
  z-index: 1;
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--amarelo) 0 40px,
    var(--preto) 40px 48px
  );
  z-index: 10;
}

/* ── SOBRE NÓS ── */
#sobre {
  padding: 100px 7%;
  background: var(--cinza-escuro);
  position: relative;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 32px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--texto-suave);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sobre-text p strong {
  color: var(--branco);
}

.stats-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cinza-claro);
}

.stat h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--amarelo);
  line-height: 1;
}

.stat p {
  font-size: 0.85rem;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0 !important;
  margin-top: 4px;
}

.sobre-img-block {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.85);
}

.sobre-tag {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--amarelo);
  color: var(--preto);
  padding: 20px 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: 3px;
}

/* ── NOSSO TRABALHO ── */
#trabalho {
  padding: 100px 7%;
  background: var(--preto);
}

.trabalho-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cinza-medio);
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.72) hue-rotate(-6deg);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(0.95) hue-rotate(-4deg);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--amarelo);
  outline-offset: 3px;
}

/* Visualizador de fotos (lightbox) */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  border: none;
  cursor: pointer;
  padding: 0;
}

.gallery-lightbox__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.gallery-lightbox__content > * {
  pointer-events: auto;
}

.gallery-lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gallery-lightbox__figure img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox__caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--branco);
  text-align: center;
  max-width: 560px;
  line-height: 1.35;
}

.gallery-lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cinza-claro);
  border-radius: 4px;
  background: rgba(7, 11, 18, 0.65);
  color: var(--branco);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.gallery-lightbox__close:hover {
  border-color: var(--amarelo);
  background: var(--cinza-medio);
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--cinza-claro);
  background: rgba(7, 11, 18, 0.65);
  color: var(--branco);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.gallery-lightbox__nav:hover {
  border-color: var(--amarelo);
  background: var(--cinza-medio);
}

.gallery-lightbox__nav--prev {
  left: 16px;
}

.gallery-lightbox__nav--next {
  right: 16px;
}

@media (max-width: 640px) {
  .gallery-lightbox {
    padding: 56px 12px 24px;
  }

  .gallery-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .gallery-lightbox__nav--prev {
    left: 8px;
  }

  .gallery-lightbox__nav--next {
    right: 8px;
  }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-left: 3px solid var(--amarelo);
  padding-left: 12px;
  line-height: 1.2;
}

.gallery-label small {
  display: block;
  font-size: 0.78rem;
  color: var(--amarelo);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 2px;
}

/* placeholder images using CSS gradients */
.ph-1 {
  background: linear-gradient(135deg, #0c1524 0%, #1a2d4a 40%, #244872 100%);
}
.ph-2 {
  background: linear-gradient(135deg, #0a0e16 0%, #152238 50%, #1f3a5c 100%);
}
.ph-3 {
  background: linear-gradient(135deg, #101a2a 0%, #1e3555 60%, #2a5080 100%);
}
.ph-4 {
  background: linear-gradient(135deg, #080c14 0%, #1a2840 60%, #254066 100%);
}
.ph-5 {
  background: linear-gradient(135deg, #121c2e 0%, #223552 50%, #2f4a72 100%);
}

.ph-truck {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 260px;
  font-size: 5rem;
  opacity: 0.35;
}

/* ── LOCALIZAÇÃO ── */
#localizacao {
  padding: 100px 7%;
  background: var(--cinza-escuro);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}

.loc-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--amarelo);
}

.loc-info p {
  font-size: 1rem;
  color: var(--texto-suave);
  line-height: 1.8;
  margin-bottom: 12px;
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.loc-icon {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.loc-detail p {
  margin-bottom: 0;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--cinza-medio);
  border-radius: 6px;
  border: 1px solid var(--cinza-claro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--texto-suave);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* ── CONTATO ── */
#contato {
  padding: 100px 7%;
  background: var(--preto);
  text-align: center;
}

.contato-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contato-inner p {
  font-size: 1.1rem;
  color: var(--texto-suave);
  line-height: 1.7;
  margin-bottom: 48px;
}

.contato-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.contato-card {
  background: var(--cinza-medio);
  border: 1px solid var(--cinza-claro);
  border-radius: 6px;
  padding: 28px 36px;
  text-align: center;
  text-decoration: none;
  color: var(--branco);
  transition:
    border-color 0.25s,
    transform 0.2s;
  min-width: 180px;
}

.contato-card:hover {
  border-color: var(--amarelo);
  transform: translateY(-4px);
  color: var(--branco);
}

.contato-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-bottom: 10px;
}
.contato-card .label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amarelo);
  margin-bottom: 6px;
}
.contato-card .value {
  font-size: 0.95rem;
  color: var(--texto-suave);
}

.whatsapp-btn-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn-big:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* ── FOOTER ── */
footer {
  background: var(--cinza-escuro);
  border-top: 2px solid var(--amarelo);
  padding: 64px 7% 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.9rem;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--amarelo);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--texto-suave);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  line-height: 1;
  font-size: 1.15rem;
}

.social-link:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
  transform: scale(1.12);
}

/* Logos SVG: centralização óptica dentro do círculo (evita “subir” e estourar a borda) */
.social-link .brand-icon--social {
  width: 19px;
  height: 19px;
  object-fit: contain;
  object-position: center center;
  transform: translateY(1px);
}

.social-link .brand-icon {
  opacity: 0.92;
}

.social-link:hover .brand-icon {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--cinza-claro);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--texto-suave);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2s infinite;
  transition: transform 0.15s;
}

.float-wa:hover {
  transform: scale(1.12);
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.75);
  }
}

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

@keyframes zoomIn {
  from {
    transform: scale(1.08);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── RESPONSIVO ── */
/* Hero: notebooks / janelas baixas — compacta um pouco sem quebrar legibilidade */
@media (min-width: 901px) and (max-height: 820px) {
  .hero-badge {
    margin-bottom: 18px;
  }

  .hero-logo {
    margin-bottom: 18px;
    max-width: min(300px, 85vw);
  }

  .hero-tagline {
    margin-bottom: 14px;
  }

  .hero-sub {
    margin-bottom: 22px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    /* Mobile: respiro inferior + safe-area em aparelhos com barra de gestos */
    padding: clamp(1.25rem, 4vh, 2rem) 6%
      calc(clamp(2rem, 8vh, 3.5rem) + env(safe-area-inset-bottom, 0px)) 7%;
  }

  .hero-right {
    display: none;
  }
  .sobre-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Sobre nós: tag não pode ficar com offset negativo (overflow em mobile) */
  .sobre-img-block {
    margin-bottom: 8px;
  }

  .sobre-tag {
    left: 12px;
    bottom: 12px;
    right: auto;
    top: auto;
    padding: 16px 20px;
    font-size: 1rem;
  }

  .sobre-img-main {
    height: auto;
    min-height: 260px;
    max-height: 420px;
    aspect-ratio: 4 / 3;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 28px 20px;
    justify-content: space-between;
  }

  .stat {
    flex: 1 1 28%;
    min-width: 0;
    text-align: center;
  }

  .stat h3 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .trabalho-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  #sobre {
    padding: 64px 5% 72px;
  }

  .sobre-text p {
    font-size: 1rem;
  }

  .section-title {
    line-height: 1.05;
  }

  .sobre-grid {
    gap: 32px;
  }

  .sobre-img-main {
    min-height: 200px;
    max-height: 52vh;
  }

  .sobre-tag {
    left: 8px;
    bottom: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    max-width: calc(100% - 16px);
  }

  .stats-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 28px;
    margin-top: 28px;
  }

  .stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cinza-claro);
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .stat h3 {
    font-size: 1.85rem;
    flex-shrink: 0;
  }

  .stat p {
    flex: 1;
    text-align: right;
    margin-top: 0;
  }
}
