/* ============================================================
   MONTE CARMO CAFÉS ESPECIAIS — STYLE.CSS
   Paleta: Espresso #3A2110 | Ouro #9B8246 | Creme #F5EDE3
   ============================================================ */

/* ── VARIÁVEIS ─────────────────────────────────────────────── */
:root {
  --espresso:  #3A2110;
  --espresso2: #2A1608;
  --ouro:      #9B8246;
  --ouro-claro:#C4A96A;
  --creme:     #F5EDE3;
  --creme2:    #EDE0D0;
  --texto:     #2C1D0E;
  --texto-soft:#5A3E28;
  --branco:    #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', sans-serif;

  --radius: 8px;
  --sombra: 0 4px 24px rgba(58,33,16,.13);
  --trans:  .3s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--texto);
  background: var(--creme);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── BARRA DE PROGRESSO ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--ouro), var(--ouro-claro));
  z-index: 10000;
  transition: width .1s linear;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER ─────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}

#header.scrolled {
  background: rgba(58,33,16,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-header {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Nav desktop */
.nav-desktop {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--trans);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--ouro-claro);
  transition: width var(--trans);
}

.nav-link:hover,
.nav-link.active { color: var(--ouro-claro); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Toggle mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV MOBILE ─────────────────────────────────────────────── */
#navMenu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px; height: 100%;
  background: var(--espresso2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 0;
  transition: right var(--trans);
  overflow-y: auto;
}

#navMenu.open { right: 0; }

#navMenu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#navMenu .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
}

#navMenu .nav-link:hover { color: var(--ouro-claro); }

.nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--trans);
}
.nav-close:hover { color: var(--ouro-claro); }

.nav-social {
  margin-top: auto;
  display: flex;
  gap: 20px;
  padding-top: 32px;
}
.nav-social a {
  color: rgba(255,255,255,.6);
  font-size: 1.3rem;
  transition: color var(--trans);
}
.nav-social a:hover { color: var(--ouro-claro); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('img/hero.jpg') center / cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42,22,8,.82) 0%,
    rgba(58,33,16,.70) 50%,
    rgba(42,22,8,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  height: 160px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0,0,0,.4));
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--ouro-claro);
  margin-bottom: 36px;
  letter-spacing: .03em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botão primário */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--ouro);
  color: var(--branco);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--ouro);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-primary:hover {
  background: var(--ouro-claro);
  border-color: var(--ouro-claro);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,130,70,.4);
}

/* Botão outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--branco);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color var(--trans), color var(--trans), transform var(--trans);
}

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

/* Botão WhatsApp grande */
.btn-wpp-grande {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: var(--branco);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
}

.btn-wpp-grande:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}

.btn-wpp-grande i { font-size: 1.15rem; }

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  z-index: 2;
  transition: color var(--trans);
}
.hero-scroll:hover { color: var(--ouro-claro); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Partículas hero */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0%   { transform: translateY(0) rotate(0deg);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* ── SEÇÕES GERAIS ───────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  background: rgba(155,130,70,.1);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.section-tag.light {
  color: var(--ouro-claro);
  background: rgba(196,169,106,.15);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ouro), var(--ouro-claro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light { color: var(--creme); }
.section-title.light em {
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--texto-soft);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc.light { color: rgba(245,237,227,.8); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── SOBRE ───────────────────────────────────────────────────── */
.sobre-section {
  background: var(--creme);
}

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

.sobre-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  position: relative;
}

.sobre-img-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--ouro);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  z-index: -1;
}

.sobre-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sobre-img-wrap:hover img { transform: scale(1.03); }

.sobre-texto { padding: 8px 0; }
.sobre-texto .section-tag { margin-bottom: 16px; }
.sobre-texto p {
  color: var(--texto-soft);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

/* Badges */
.badges-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--creme2);
  border-radius: var(--radius);
  padding: 20px 28px;
  border-bottom: 3px solid var(--ouro);
  flex: 1;
  min-width: 100px;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}

.badge-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--texto-soft);
  margin-top: 6px;
}

/* ── PROPÓSITO ───────────────────────────────────────────────── */
.proposito-section {
  position: relative;
  background:
    linear-gradient(rgba(42,22,8,.86), rgba(42,22,8,.86)),
    url('img/proposito.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.proposito-overlay { display: none; }

.proposito-header {
  text-align: center;
  margin-bottom: 56px;
}

.proposito-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.prop-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,169,106,.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background var(--trans), transform var(--trans);
}

.prop-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
}

.prop-icon {
  width: 64px; height: 64px;
  background: rgba(155,130,70,.2);
  border: 1px solid var(--ouro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--ouro-claro);
}

.prop-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ouro-claro);
  margin-bottom: 12px;
}

.prop-card p {
  color: rgba(245,237,227,.8);
  font-size: .97rem;
}

/* ── PRODUTOS ────────────────────────────────────────────────── */
.produtos-section {
  background: var(--creme2);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.produto-card {
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(58,33,16,.18);
}

/* Shimmer */
.produto-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,.3) 50%,
    transparent 60%
  );
  transition: left .5s ease;
  pointer-events: none;
}

.produto-card:hover::after { left: 140%; }

.produto-img-wrap {
  overflow: hidden;
  height: 200px;
}

.produto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.produto-card:hover .produto-img-wrap img { transform: scale(1.06); }

.produto-info {
  padding: 24px;
}

.produto-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 10px;
}

.produto-info p {
  font-size: .9rem;
  color: var(--texto-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-produto {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--espresso);
  color: var(--branco);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
  overflow: hidden;
  position: relative;
}

.btn-produto:hover {
  background: var(--ouro);
  transform: translateY(-1px);
}

/* ── SERVIÇOS B2B ────────────────────────────────────────────── */
.servicos-section {
  position: relative;
  background:
    linear-gradient(rgba(42,22,8,.88), rgba(42,22,8,.88)),
    url('img/servicos.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.servico-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(196,169,106,.2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background var(--trans), transform var(--trans);
}

.servico-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.servico-item i {
  font-size: 1.8rem;
  color: var(--ouro-claro);
  margin-bottom: 14px;
  display: block;
}

.servico-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--creme);
  margin-bottom: 8px;
}

.servico-item p {
  font-size: .9rem;
  color: rgba(245,237,227,.7);
}

.servicos-cta {
  text-align: center;
}

/* ── GALERIA ─────────────────────────────────────────────────── */
.galeria-section {
  background: var(--espresso);
}

.galeria-section .section-tag { color: var(--ouro-claro); background: rgba(196,169,106,.15); }
.galeria-section .section-title { color: var(--creme); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gal-tall {
  grid-row: span 2;
}

.gal-wide {
  grid-column: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gal-item:hover img { transform: scale(1.05); }

/* ── CONTATO ─────────────────────────────────────────────────── */
.contato-section {
  position: relative;
  background:
    linear-gradient(rgba(42,22,8,.88), rgba(42,22,8,.88)),
    url('img/sobre.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

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

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--ouro);
  backdrop-filter: blur(4px);
}

.contato-item i {
  font-size: 1.4rem;
  color: var(--ouro-claro);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.contato-item div {
  display: flex;
  flex-direction: column;
}

.contato-item strong {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ouro-claro);
  margin-bottom: 2px;
}

.contato-item span {
  color: rgba(245,237,227,.85);
  font-size: .97rem;
}

.contato-wpp {
  text-align: center;
}

.contato-wpp p {
  color: rgba(245,237,227,.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contato-wpp strong { color: var(--ouro-claro); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--espresso2);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.7);
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,.5);
  font-size: 1.1rem;
  transition: color var(--trans);
}
.footer-social a:hover { color: var(--ouro-claro); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  cursor: zoom-out;
}

.lightbox img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
  transform: scale(.92);
  transition: transform .3s ease;
}

.lightbox.open img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--branco);
  font-size: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── BOTÃO FLUTUANTE WPP ─────────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--branco);
  font-size: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--trans), box-shadow var(--trans);
  animation: wppPulse 2.5s infinite;
}

.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ── RIPPLE ──────────────────────────────────────────────────── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: rippleAnim .65s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVIDADE ──────────────────────────────────────────── */

/* Widescreen / 4K (≥ 1440px) */
@media (min-width: 1440px) {
  .container,
  .header-inner,
  .footer-inner {
    max-width: 1380px;
    padding: 0 48px;
  }

  .section { padding: 120px 0; }

  .section-title { font-size: 3.4rem; }
  .hero-logo { height: 190px; }
}

/* Laptop médio (1024px – 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav-desktop { gap: 20px; }

  .sobre-grid { gap: 44px; }
  .sobre-img-wrap img { height: 420px; }

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

  .contato-grid { gap: 44px; }
}

/* Tablet + Mobile (≤ 1023px) */
@media (max-width: 1023px) {
  /* Desativa parallax */
  .proposito-section,
  .servicos-section,
  .contato-section { background-attachment: scroll, scroll; }
  .hero { background-attachment: scroll; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }

  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sobre-img-wrap img { height: 340px; }

  .proposito-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }

  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-tall  { grid-row:    auto; }
  .gal-wide  { grid-column: auto; }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }

  .hero-logo { height: 120px; }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .sobre-img-wrap img { height: 260px; }

  .badges-row { gap: 10px; }
  .badge-item { padding: 14px 14px; }
  .badge-num  { font-size: 1.9rem; }

  .proposito-cards { grid-template-columns: 1fr; }

  .produtos-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }

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

  .contato-grid { grid-template-columns: 1fr; }

  .btn-wpp-grande {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile pequeno (≤ 480px) */
@media (max-width: 480px) {
  .section { padding: 48px 0; }

  .hero-logo { height: 96px; }

  .galeria-grid { grid-template-columns: 1fr; }

  .prop-card  { padding: 28px 20px; }
  .servico-item { padding: 24px 16px; }

  .sobre-img-wrap img { height: 220px; }

  .badge-item { padding: 12px 10px; min-width: 80px; }
  .badge-num  { font-size: 1.7rem; }
  .badge-label { font-size: .72rem; }
}

/* Mobile muito pequeno (≤ 360px) */
@media (max-width: 360px) {
  .section { padding: 40px 0; }
  .container { padding: 0 12px; }

  .hero-logo { height: 80px; }

  .section-title { font-size: 1.75rem; }

  .btn-primary,
  .btn-outline,
  .btn-wpp-grande { font-size: .8rem; padding: 12px 20px; }

  .badge-item { padding: 10px 8px; }
  .badge-num  { font-size: 1.5rem; }

  .produto-info { padding: 16px; }
  .contato-item { padding: 16px; gap: 14px; }
}
