/* ════════════════════════════════════════
   SERINE MAX – style.css
   ════════════════════════════════════════ */

:root {
  --navy:        #0f1c2e;
  --navy-mid:    #162032;
  --navy-light:  #1e2d42;
  --gold:        #b8922a;
  --gold-light:  #d4a84b;
  --gold-pale:   #e8c97a;
  --white:       #f5f0e8;
  --white-dim:   rgba(245,240,232,0.65);
  --white-faint: rgba(245,240,232,0.1);
  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

/* Noise grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1000;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-pale);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: var(--radius);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary.full { width: 100%; text-align: center; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: #2a6e4a;
  box-shadow: 0 4px 20px rgba(42,110,74,0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-whatsapp:hover {
  background: #245f40;
  box-shadow: 0 8px 24px rgba(42,110,74,0.35);
  transform: translateY(-2px);
}

.btn-whatsapp.large {
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  width: 100%;
  justify-content: center;
}

/* ── Section labels & titles ── */
.section-label {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.section-desc {
  color: var(--white-dim);
  max-width: 520px;
  font-size: 0.95rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc { margin: 0 auto; }

/* ── Reveal animations ── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ════════════════════════
   NAV
════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(15,28,46,0.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184,146,42,0.15);
  padding: 1rem 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img { height: 34px; }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,18,28,0.97);
  backdrop-filter: blur(20px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

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

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-pale); }

/* ════════════════════════
   HERO
════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/Banner1.png') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(15,28,46,0.45) 0%, rgba(15,28,46,0.72) 60%, rgba(9,13,20,0.92) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
  z-index: 1;
}

.orb-1 { width: 600px; height: 600px; background: rgba(184,146,42,0.12); top: -200px; left: -200px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(30,50,90,0.35);   bottom: -100px; right: -100px; animation-delay: -6s; }
.orb-3 { width: 300px; height: 300px; background: rgba(184,146,42,0.08); top: 40%; right: 8%; animation-delay: -10s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* empurra os botões para o terço inferior */
  margin-top: 55vh;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(184,146,42,0.5);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 2rem;
}

.hero-banner {
  width: min(520px, 85%);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  margin-bottom: 2rem;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  max-width: 500px;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.5;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ════════════════════════
   SOBRE
════════════════════════ */
#sobre {
  padding: 7rem 0;
  position: relative;
}

#sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

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

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

.sobre-img {
  width: 100%;
  max-width: 440px;
  border-radius: 2px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
}

.sobre-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 2px;
  z-index: 1;
}

.sobre-text p {
  color: var(--white-dim);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sobre-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--white-faint);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-pale);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-transform: uppercase;
}

/* ════════════════════════
   PRODUTOS
════════════════════════ */
#produtos {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(30,45,66,0.6) 0%, rgba(36,54,80,0.8) 50%, rgba(30,45,66,0.6) 100%);
  position: relative;
}

#produtos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

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

.produto-card {
  background: rgba(235, 228, 215, 0.08);
  border: 1px solid rgba(235, 228, 215, 0.2);
  border-radius: 2px;
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}

.produto-card:hover {
  background: rgba(235, 228, 215, 0.14);
  border-color: rgba(235, 228, 215, 0.35);
  transform: translateY(-6px);
}

.produto-icon {
  color: var(--gold);
  width: 54px;
  height: 54px;
}

.produto-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

.produto-card p {
  color: var(--white-dim);
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-block;
  padding: 0.1rem 0.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--transition), transform var(--transition);

}

.card-link:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ════════════════════════
   BANNER MID
════════════════════════ */
#banner-mid {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

#banner-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,45,66,0.6) 0%, rgba(36,54,80,0.8) 50%, rgba(30,45,66,0.6) 100%);
}

#banner-mid::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.4), transparent);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
}

#banner-mid .banner-content {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

#banner-mid .banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
}

.seguradoras-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.seguradoras-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.seguradora-card {
  background: rgba(235, 228, 215, 0.08);
  border: 1px solid rgba(235, 228, 215, 0.2);
  border-radius: 2px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}

.seguradora-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184,146,42,0.2);
  min-height: 80px;
}

.seguradora-logo img {
  width: 140px;
  height: 80px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  border-radius: var(--radius);
  opacity: 0.95;
  transition: opacity 0.3s;
}

.seguradora-card:hover .seguradora-logo img {
  opacity: 1;
}

.seguradora-card:hover {
  background: rgba(235, 228, 215, 0.14);
  border-color: rgba(235, 228, 215, 0.35);
  transform: translateY(-6px);
}

.seguradora-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-pale);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184,146,42,0.2);
  text-align: center;
  letter-spacing: 0.05em;
}

.seguradora-info p {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.seguradora-info strong {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  display: block;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .seguradoras-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ════════════════════════
   LOCALIZAÇÃO
════════════════════════ */
#localizacao {
  padding: 7rem 0;
  position: relative;
}

#localizacao::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.loc-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.loc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}

.loc-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.loc-item p {
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

.loc-map {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(184,146,42,0.15);
}

.loc-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  filter: grayscale(60%) brightness(0.8) sepia(20%);
  display: block;
}

/* ════════════════════════
   CONTATO
════════════════════════ */
#contato {
  padding: 7rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(22,32,50,0.4) 100%);
  position: relative;
}

#contato::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,146,42,0.3), transparent);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
}

input::placeholder, textarea::placeholder {
  color: rgba(245,240,232,0.3);
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(184,146,42,0.5);
  background: rgba(184,146,42,0.04);
}

select option { background: var(--navy-mid); }

textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--gold);
  margin-top: 0.2rem;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}

.label-check {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--white-dim);
  line-height: 1.6;
  cursor: pointer;
}

.contato-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.aside-card {
  background: rgba(184,146,42,0.06);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: 2px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.aside-card p {
  color: var(--white-dim);
  font-size: 0.9rem;
}

.aside-logo img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  border-top: 1px solid rgba(184,146,42,0.15);
  padding: 3rem 0;
  background: rgba(9,13,20,0.6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img { height: 36px; }

.footer-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-sub {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-pale); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
}

/* ════════════════════════
   WHATSAPP FLOAT
════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  width: 58px;
  height: 58px;
  background: #2a6e4a;
  box-shadow: 0 4px 20px rgba(42,110,74,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(42,110,74,0.5);
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  nav.scrolled { padding: 0.9rem 2.5rem; }
  .nav-links { gap: 1.8rem; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { gap: 3.5rem; }
  .loc-grid { gap: 3rem; }
  .contato-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .sobre-grid,
  .loc-grid,
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .sobre-img-wrap { text-align: center; }
  .sobre-img { margin: 0 auto; }
  .sobre-stats { gap: 1.5rem; flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }

  .contato-aside { position: static; }

  .loc-map iframe { height: 280px; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-whatsapp { width: 100%; justify-content: center; text-align: center; }

  .hero-bg {
    background-position: center center;
    background: url('images/Banner-Mobile.png') center/cover no-repeat;
  }

  #hero {
    overflow: hidden;
  }

  .orb-1 { width: 300px; height: 300px; left: -100px; }
  .orb-2 { width: 200px; height: 200px; right: -60px; }
  .orb-3 { display: none; }

  #sobre, #produtos, #localizacao, #contato { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .footer-links { gap: 1.2rem; }

  

  .nav-logo img { height: 28px; }
  .nav-brand { font-size: 0.85rem; letter-spacing: 0.15em; }
}
