/* =============================================
   NÉCIA BATISTA ADVOCACIA — style.css
   Desenvolvido por RBX Tech Solutions
   ============================================= */

:root {
  --navy:    #0F2744;
  --navy2:   #163459;
  --teal:    #1A7A6E;
  --teal-lt: #22A898;
  --cream:   #F8F4EE;
  --cream2:  #EDE8DF;
  --white:   #FFFFFF;
  --ink:     #1C1C1C;
  --muted:   #5C6B7A;
  --muted2:  #8899AA;
  --gold:    #B89A5A;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,244,238,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,39,68,0.08);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(15,39,68,0.1); }

.logo img { height: 66px; width: auto; object-fit: contain; }

nav.desktop { display: flex; align-items: center; gap: 34px; }
nav.desktop a {
  color: var(--muted); font-size: 13px; font-weight: 500;
  letter-spacing: 0.3px; transition: color 0.25s; position: relative;
}
nav.desktop a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s;
}
nav.desktop a:hover { color: var(--navy); }
nav.desktop a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important; color: #fff !important;
  padding: 10px 24px; border-radius: 100px;
  font-weight: 700 !important; font-size: 13px !important;
  transition: background 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal) !important; color: #fff !important; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 80px 60px 100px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 72% 45%, rgba(26,122,110,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 5% 95%, rgba(26,122,110,0.1) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg, transparent, transparent 79px,
      rgba(255,255,255,0.02) 80px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 79px,
      rgba(255,255,255,0.02) 80px
    );
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  width: 100%; max-width: 1200px;
}

.pill-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,122,110,0.18);
  border: 1px solid rgba(26,122,110,0.4);
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal-lt);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-lt);
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 em { color: var(--teal-lt); font-style: italic; }

.hero-text p {
  font-size: 16px; line-height: 1.85;
  color: rgba(255,255,255,0.6); margin-bottom: 38px; font-weight: 300;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-green {
  background: var(--teal); color: #fff;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s;
}
.btn-green:hover {
  background: var(--teal-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,122,110,0.4);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  padding: 15px 30px; border-radius: 100px;
  font-size: 14px; transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff; background: rgba(255,255,255,0.06);
}

.hero-img-frame {
  position: relative;
  border-radius: 20px; overflow: visible;
}
.hero-img-frame img {
  width: 100%; height: 500px;
  object-fit: cover; object-position: center top;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-img-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--teal); color: #fff;
  padding: 14px 20px; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26,122,110,0.5);
  text-align: center; line-height: 1.2;
}
.hero-img-badge strong { display: block; font-size: 22px; font-family: 'Cormorant Garamond', serif; }
.hero-img-badge span { font-size: 11px; opacity: 0.8; letter-spacing: 1px; text-transform: uppercase; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== NUMEROS ===== */
.numeros {
  background: var(--cream2);
  border-bottom: 1px solid rgba(15,39,68,0.08);
  padding: 52px 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; text-align: center;
}
.num-item { position: relative; }
.num-item:not(:last-child)::after {
  content: ''; position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(15,39,68,0.1);
}
.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.num-val span { color: var(--teal); }
.num-lbl { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ===== LABELS & TITLES ===== */
.tag-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 16px;
}
.tag-label::before {
  content: ''; width: 28px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.tag-label.light { color: var(--teal-lt); }
.tag-label.light::before { background: var(--teal-lt); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.18; color: var(--navy); margin-bottom: 16px;
}
h2 em { color: var(--teal); font-style: italic; }
.light-title { color: #fff; }
.light-title em { color: var(--teal-lt); }

.light-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.85; font-weight: 300; }

p.lead { font-size: 16px; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 28px; }

/* ===== SOBRE ===== */
.sobre { background: var(--white); padding: 110px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.sobre-fotos { position: relative; }
.foto-principal {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(15,39,68,0.14);
}
.foto-principal img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: center top;
}
.foto-selo {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--navy); color: #fff;
  padding: 18px 22px; border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(15,39,68,0.3);
}
.selo-icon { font-size: 28px; }
.selo-texto strong { display: block; font-size: 15px; font-weight: 700; }
.selo-texto span { font-size: 11px; opacity: 0.65; letter-spacing: 1px; text-transform: uppercase; }

.pilares { display: flex; flex-direction: column; gap: 18px; }
.pilar {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; background: var(--cream);
  border-radius: 12px; border-left: 3px solid var(--teal);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pilar:hover { transform: translateX(6px); box-shadow: 0 4px 18px rgba(15,39,68,0.08); }
.pilar-icon {
  width: 40px; height: 40px; background: rgba(26,122,110,0.1);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.pilar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: var(--navy); font-weight: 700; margin-bottom: 4px;
}
.pilar p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ===== SERVIÇOS ===== */
.servicos { background: var(--navy); padding: 110px 0; }
.servicos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.serv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
}
.serv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--teal-lt);
  transform: scaleX(0); transition: transform 0.4s;
}
.serv-card:hover { border-color: rgba(26,122,110,0.4); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,0.3); }
.serv-card:hover::after { transform: scaleX(1); }
.serv-card.destaque {
  background: rgba(26,122,110,0.15);
  border-color: rgba(26,122,110,0.35);
}

.serv-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 10px; right: 20px; line-height: 1;
}
.serv-icon { font-size: 36px; margin-bottom: 20px; }
.serv-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: #fff; font-weight: 700; margin-bottom: 14px; }
.serv-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.85; font-weight: 300; margin-bottom: 28px; }
.serv-link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal-lt); font-weight: 700; transition: letter-spacing 0.3s; }
.serv-link:hover { letter-spacing: 3px; }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--cream); padding: 110px 0; }
.difs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.dif {
  background: var(--white); padding: 36px 28px; border-radius: 16px;
  box-shadow: 0 2px 14px rgba(15,39,68,0.06);
  border-bottom: 3px solid transparent;
  transition: all 0.35s;
}
.dif:hover { border-bottom-color: var(--teal); transform: translateY(-6px); box-shadow: 0 14px 40px rgba(15,39,68,0.11); }
.dif-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(15,39,68,0.2);
}
.dif h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--navy); font-weight: 700; margin-bottom: 10px; }
.dif p { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ===== GALERIA ===== */
.galeria { background: var(--cream2); padding: 110px 0; }
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px; margin-top: 50px;
  border-radius: 18px; overflow: hidden;
}
.galeria-grid > div { overflow: hidden; border-radius: 14px; }
.galeria-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.galeria-grid > div:hover img { transform: scale(1.05); }

.g-tall  { grid-column: 1; grid-row: 1 / 3; }
.g-top-r { grid-column: 2; grid-row: 1; }
.g-mid-r { grid-column: 3; grid-row: 1; }
.g-bot   { grid-column: 2 / 4; grid-row: 2; }

/* ===== DEPOIMENTOS ===== */
.depoimentos { background: var(--white); padding: 110px 0; }
.depo-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.google-rating { text-align: right; }
.g-stars { color: #F5A623; font-size: 22px; letter-spacing: 3px; margin-bottom: 4px; }
.g-score { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; }
.g-count { font-size: 12px; color: var(--muted2); margin-top: 2px; }

.depo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.depo-card {
  background: var(--cream); padding: 32px;
  border-radius: 16px; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(15,39,68,0.09); }
.depo-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; line-height: 1;
  color: var(--teal); opacity: 0.12;
  position: absolute; top: 10px; left: 18px;
}
.depo-card p { font-size: 14px; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 22px; position: relative; z-index: 1; }
.depo-autor { display: flex; align-items: center; gap: 12px; }
.depo-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0;
}
.depo-autor strong { font-size: 13px; color: var(--navy); display: block; }
.depo-stars { color: #F5A623; font-size: 11px; }

.depo-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 32px; border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  border: 1px solid rgba(26,122,110,0.25);
}
.depo-cta-icon { font-size: 42px; margin-bottom: 16px; }
.depo-cta-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.depo-cta-card p { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 22px; }
.depo-cta-card a {
  background: var(--teal); color: #fff;
  padding: 12px 26px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  transition: background 0.3s;
}
.depo-cta-card a:hover { background: var(--teal-lt); }

/* ===== CTA FAIXA ===== */
.cta-faixa {
  background: var(--teal); padding: 72px 48px;
  position: relative; overflow: hidden;
}
.cta-faixa::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 85% 50%, rgba(255,255,255,0.09) 0%, transparent 60%);
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-faixa h2 { font-size: clamp(24px,3vw,38px); color: #fff; margin-bottom: 8px; }
.cta-faixa p { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 300; }
.btn-white {
  background: #fff; color: var(--teal);
  padding: 15px 36px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s; white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }

/* ===== CONTATO ===== */
.contato { background: var(--navy); padding: 110px 0; }
.contato-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }

.contato-lista { display: flex; flex-direction: column; gap: 14px; margin: 30px 0; }
.contato-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: all 0.3s;
}
.contato-item:hover { border-color: rgba(26,122,110,0.5); background: rgba(26,122,110,0.08); }
.ci-icon {
  width: 42px; height: 42px; background: rgba(26,122,110,0.2);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
  color: var(--teal-lt);
}
.ci-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.contato-item strong { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }

.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
}
.social-btn:hover { border-color: var(--teal-lt); color: var(--teal-lt); background: rgba(26,122,110,0.1); }

.mapa-wrap { display: flex; flex-direction: column; gap: 14px; }
.mapa-frame {
  border-radius: 18px; overflow: hidden;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.mapa-frame iframe { width: 100%; height: 100%; border: 0; }
.mapa-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 12px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  transition: all 0.3s; align-self: flex-start;
}
.mapa-link:hover { background: rgba(26,122,110,0.2); border-color: var(--teal-lt); color: #fff; }

/* ===== FOOTER ===== */
footer { background: #090F1A; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 72px 48px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px; margin: 0 auto;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 18px; border-radius: 8px; padding: 6px 12px; background: rgba(255,255,255,0.08); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; font-weight: 300; margin-bottom: 22px; }

.footer-links h5 { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 2px; }
.footer-links h5 { margin-bottom: 18px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); padding: 5px 0; transition: color 0.25s; }
.footer-links a:hover { color: var(--teal-lt); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom strong { color: var(--teal-lt); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  color: #fff;
  transition: all 0.3s;
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up { animation: fadeUp 1s ease both; }
.delay-2 { animation-delay: 0.3s; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .difs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .sobre-grid, .contato-grid { grid-template-columns: 1fr; gap: 50px; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .numeros { grid-template-columns: repeat(2,1fr); }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall, .g-top-r, .g-mid-r, .g-bot { grid-column: auto; grid-row: auto; }
  .galeria-grid img, .galeria-grid > div { height: 220px; }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav.desktop { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(248,244,238,0.98); flex-direction: column; align-items: flex-start; padding: 24px 28px; gap: 18px; border-bottom: 1px solid rgba(15,39,68,0.1); z-index: 998; }
  nav.desktop.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .numeros { padding: 40px 20px; }
  .container { padding: 0 20px; }
  .sobre, .servicos, .diferenciais, .galeria, .depoimentos, .contato { padding: 80px 0; }
  .servicos-grid, .difs-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-grid > div { height: 220px; }
  .depo-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; padding: 50px 20px 40px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px; }
  .num-item::after { display: none; }
  .foto-selo { position: relative; bottom: auto; right: auto; display: inline-flex; margin-top: 16px; }
  .mapa-frame { height: 280px; }
}



/* ===== SERVIÇOS 2 COLUNAS ===== */
.servicos-2 { grid-template-columns: 1fr 1fr !important; max-width: 900px; margin: 0 auto; }

/* ===== SEÇÃO DRA. NÉCIA ===== */
.necia-section { background: var(--cream); padding: 110px 0; }

.necia-intro {
  text-align: center; max-width: 780px; margin: 0 auto 70px;
}
.necia-lead {
  font-size: 18px; line-height: 1.9; color: var(--muted);
  font-weight: 300; font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Story cards grid */
.necia-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 70px;
}

.story-card {
  background: var(--white);
  padding: 40px 36px; border-radius: 20px;
  box-shadow: 0 2px 20px rgba(15,39,68,0.06);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--cream2);
  transition: background 0.35s;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(15,39,68,0.1); }
.story-card:hover::before { background: var(--teal); }

.story-card--accent {
  background: var(--navy);
}
.story-card--accent::before { background: var(--teal); }
.story-card--accent .story-icon { background: rgba(26,122,110,0.2); }
.story-card--accent h4 { color: #fff; }
.story-card--accent p { color: rgba(255,255,255,0.65); }

.story-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.story-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.2;
}
.story-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.85; font-weight: 300;
}

/* Conquistas bar */
.necia-conquistas {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border-radius: 20px;
  padding: 40px 48px; gap: 0; flex-wrap: wrap;
}
.conquista-item {
  text-align: center; padding: 0 40px; flex: 1; min-width: 120px;
}
.conquista-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; color: var(--teal-lt);
  line-height: 1; margin-bottom: 8px;
}
.conquista-txt {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; font-weight: 400;
}
.conquista-txt span { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.conquista-sep {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.1); flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .necia-story { grid-template-columns: 1fr; }
  .servicos-2 { grid-template-columns: 1fr !important; }
  .necia-conquistas { gap: 20px; padding: 32px 24px; }
  .conquista-sep { display: none; }
  .conquista-item { min-width: 100px; padding: 0 16px; }
}
