:root {
  --verde: #1f3d2b;
  --verde-claro: #2d5a3d;
  --verde-suave: #e8f0eb;
  --bege: #c5ac82;
  --bege-claro: #f5efe4;
  --bege-escuro: #a8905e;
  --branco: #fafaf8;
  --cinza-quente: #f0ede8;
  --cinza-medio: #e8e4de;
  --texto: #1a1a18;
  --texto-suave: #5a5a50;
  --linha: rgba(31, 61, 43, 0.1);
  --max: 1270px;
  --px: clamp(20px, 4vw, 48px);
  --ff: "Inter", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff);
  background: var(--branco);
  color: var(--texto);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  height: 64px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texto-suave);
  transition: color 0.2s;
}
nav a:hover {
  color: var(--verde);
}
.btn-header {
  background: var(--verde);
  color: var(--branco) !important;
  padding: 10px 22px;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.btn-header:hover {
  background: var(--verde-claro) !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--verde);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-right {
  position: relative;
  overflow: hidden; /* corta o que sobrar */
  max-height: 100vh; /* nunca passa da altura da tela */
}
.hero-foto {
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center top; /* ajuste o foco da imagem */
  display: block;
}

.hero-left {
  background: var(--verde);
  display: flex;
  align-items: flex-end;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(197, 172, 130, 0.12);
  border-radius: 50%;
}
.hero-left::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(197, 172, 130, 0.15);
  border-radius: 50%;
}
.hero-left-content {
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 32px;
}
.hero-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bege);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--branco);
  margin-bottom: 28px;
}
.hero-title strong {
  font-weight: 600;
  display: block;
}
.hero-title em {
  color: var(--bege);
  font-style: italic;
  display: block;
  font-weight: 300;
}
.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 250, 248, 0.65);
  max-width: 380px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--bege);
  color: var(--verde);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: #d4bc91;
  transform: translateY(-1px);
}
.btn-outline-hero {
  display: inline-block;
  border: 1px solid rgba(250, 250, 248, 0.3);
  color: rgba(250, 250, 248, 0.85);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline-hero:hover {
  border-color: rgba(250, 250, 248, 0.7);
  background: rgba(250, 250, 248, 0.05);
}

.hero-right {
  background: var(--cinza-quente);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(160deg, #d4cfc4 0%, #c8c0b0 50%, #bab0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.hero-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%231F3D2B' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-ph-icon {
  opacity: 0.18;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-ph-icon svg {
  width: 60px;
  height: 60px;
  fill: var(--verde);
}
.hero-ph-icon span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
}
.hero-badges {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 300;
  color: var(--verde);
  border: 1px solid rgba(31, 61, 43, 0.08);
}
.hero-badge strong {
  font-weight: 500;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bege);
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  padding: 28px 0;
  text-align: center;
}
.stat-num {
  font-size: 30px;
  font-weight: 600;
  color: var(--verde);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  opacity: 0.65;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(31, 61, 43, 0.18);
}

/* ── SEÇÕES ── */
section {
  padding: 100px var(--px);
}
.inner {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bege-escuro);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--bege-escuro);
}
.section-title {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--verde);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title strong {
  font-weight: 600;
}
.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--texto-suave);
  max-width: 520px;
  line-height: 1.85;
}
.section-head {
  margin-bottom: 60px;
}
.section-head.flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.section-head.flex .section-desc {
  max-width: 360px;
}

/* ── SOBRE ── */
#sobre {
  background: var(--cinza-quente);
  padding: 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sobre-img {
  min-height: 560px;
  background: var(--verde-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.sobre-img::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(31, 61, 43, 0.1);
  pointer-events: none;
}
.sobre-img-ph {
  opacity: 0.2;
  text-align: center;
}
.sobre-img-ph svg {
  width: 56px;
  height: 56px;
  fill: var(--verde);
}
.sobre-img-ph p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  margin-top: 10px;
}
.sobre-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.85;
  margin-bottom: 20px;
}
.difs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--linha);
  border: 1px solid var(--linha);
  margin: 36px 0;
}
.dif {
  background: var(--branco);
  padding: 22px 18px;
  transition: background 0.2s;
}
.dif:hover {
  background: var(--bege-claro);
}
.dif-icon {
  width: 28px;
  height: 28px;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.dif-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--bege);
}
.dif h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 4px;
}
.dif p {
  font-size: 12px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.6;
}
.btn-verde {
  display: inline-block;
  background: var(--verde);
  color: var(--branco);
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-verde:hover {
  background: var(--verde-claro);
}

/* ── PRODUTOS ── */
#produtos {
  background: var(--branco);
}
.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linha);
  border: 1px solid var(--linha);
  margin-bottom: 1px;
}
.prod-card {
  background: var(--branco);
  overflow: hidden;
  transition: background 0.2s;
}
.prod-card:hover {
  background: var(--bege-claro);
}
.prod-thumb {
  aspect-ratio: 4/3;
  background: var(--cinza-quente);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.2s;
}
.prod-card:hover .prod-thumb {
  background: var(--cinza-medio);
}
.prod-thumb-ph {
  opacity: 0.12;
}
.prod-thumb-ph svg {
  width: 44px;
  height: 44px;
  fill: var(--verde);
}
.prod-body {
  padding: 18px 20px;
}
.prod-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.prod-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.6;
}

/* AVISO */
.aviso {
  max-width: var(--max);
  margin: 32px auto 0;
  background: var(--bege-claro);
  border: 1px solid rgba(197, 172, 130, 0.3);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.aviso-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.aviso-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--texto-suave);
}
.aviso-dot {
  width: 5px;
  height: 5px;
  background: var(--bege);
  border-radius: 50%;
  flex-shrink: 0;
}
.aviso-item strong {
  color: var(--verde);
  font-weight: 500;
}

/* SERVIÇOS */
.servs-wrap {
  max-width: var(--max);
  margin: 80px auto 0;
}
.servs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--linha);
}
.servs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.serv-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--bege-escuro);
  margin-bottom: 14px;
  display: block;
}
.serv-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--verde);
  margin-bottom: 8px;
}
.serv-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.7;
}

/* ── PORTFÓLIO ── */
#portfolio {
  background: var(--cinza-quente);
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linha);
  border: 1px solid var(--linha);
}
.port-card {
  background: var(--cinza-medio);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.port-card:first-child {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 280px;
}
.port-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0.15;
}
.port-ph svg {
  width: 36px;
  height: 36px;
  fill: var(--verde);
}
.port-ph span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde);
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 61, 43, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s;
}
.port-card:hover .port-overlay {
  opacity: 1;
}
.port-client {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.port-info {
  font-size: 11px;
  color: var(--bege);
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ── CONTATO ── */
#contato {
  background: var(--branco);
}
.contato-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cinfo-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--linha);
}
.cinfo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--linha);
  transition: background 0.15s;
}
.cinfo-row:last-child {
  border-bottom: none;
}
.cinfo-row:hover {
  background: var(--bege-claro);
}
.cinfo-ico {
  width: 34px;
  height: 34px;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cinfo-ico svg {
  width: 15px;
  height: 15px;
  fill: var(--bege);
}
.cinfo-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texto-suave);
  display: block;
  margin-bottom: 1px;
}
.cinfo-val {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto);
}
.cinfo-val a {
  transition: color 0.15s;
}
.cinfo-val a:hover {
  color: var(--verde);
}

/* FORMULÁRIO */
.fg {
  margin-bottom: 16px;
}
.fg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bege-escuro);
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--linha);
  background: var(--branco);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 300;
  color: var(--texto);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--verde);
}
input::placeholder,
textarea::placeholder {
  color: rgba(90, 90, 80, 0.4);
}
textarea {
  resize: vertical;
  min-height: 96px;
}
.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--verde);
  color: var(--branco);
  border: none;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
  margin-top: 8px;
}
.form-btn:hover {
  background: var(--verde-claro);
}

/* MAPA — largura total abaixo do grid */
.mapa-wrapper {
  max-width: var(--max);
  margin: 48px auto 0;
  height: 340px;
  background: var(--cinza-quente);
  border: 1px solid var(--linha);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.mapa-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
}
.mapa-ph svg {
  width: 28px;
  height: 28px;
  fill: var(--verde);
}
.mapa-ph span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
}

/* ── NEWSLETTER ── */
.nl {
  background: var(--bege-claro);
  border-top: 1px solid rgba(197, 172, 130, 0.25);
}
.nl-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nl h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.nl p {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto-suave);
}
.nl-form {
  display: flex;
  flex: 1;
  max-width: 400px;
}
.nl-form input {
  border-right: none;
  font-size: 13px;
  flex: 1;
}
.nl-form button {
  background: var(--verde);
  color: var(--branco);
  border: none;
  padding: 11px 22px;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.nl-form button:hover {
  background: var(--verde-claro);
}

/* ── FOOTER ── */
footer {
  background: var(--verde);
  padding: 64px var(--px) 32px;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-logo img {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 240px;
}
.foot-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-col li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}
.foot-col li a:hover {
  color: #fff;
}
.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}
.foot-bottom a {
  color: rgba(197, 172, 130, 0.7);
  transition: color 0.15s;
}
.foot-bottom a:hover {
  color: var(--bege);
}

/* ── WHATSAPP ── */
.wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.wa svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.sr.on {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #home {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 80px var(--px);
  }
  .sobre-grid {
    grid-template-columns: 1fr;
  }
  .sobre-img {
    min-height: 300px;
  }
  .sobre-content {
    padding: 60px var(--px);
  }
  .prods-grid {
    grid-template-columns: 1fr 1fr;
  }
  .servs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .port-grid {
    grid-template-columns: 1fr 1fr;
  }
  .port-card:first-child {
    grid-column: span 2;
  }
  .contato-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  section {
    padding: 72px var(--px);
  }
  .prods-grid {
    grid-template-columns: 1fr;
  }
  .servs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .servs-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .port-grid {
    grid-template-columns: 1fr;
  }
  .port-card:first-child {
    grid-column: span 1;
    min-height: 220px;
  }
  .difs {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .aviso {
    flex-direction: column;
    align-items: flex-start;
  }
  .aviso-items {
    flex-direction: column;
    gap: 10px;
  }
  .fg2 {
    grid-template-columns: 1fr;
  }
  .nl-inner {
    flex-direction: column;
  }
  .nl-form {
    max-width: 100%;
    width: 100%;
  }
  .stats-inner {
    gap: 0;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    flex: 1;
    min-width: 120px;
  }
  .section-head.flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .wa {
    bottom: 20px;
    right: 20px;
  }
}
