/* =========================================================
   FUNERÁRIA CAMPO SANTO FERNANDEZ — LANDING PAGE
   Estilos globais
   ========================================================= */

/* ---------- 1. VARIÁVEIS / TOKENS ---------- */
:root {
  /* Paleta extraída da logo/fachada da funerária */
  --navy-950: #0a1730;
  --navy-900: #0f1f3d;
  --navy-800: #16294f;
  --navy-700: #1e3763;
  --gold-500: #c9a24b;
  --gold-400: #d8b968;
  --gold-300: #e8d29c;
  --cream-100: #f8f5ee;
  --cream-50: #fdfcf9;
  --white: #ffffff;
  --ink-900: #201d18;
  --ink-700: #4a453d;
  --ink-500: #726b5f;
  --line: #e7e0d1;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', Arial, sans-serif;

  --shadow-sm: 0 2px 10px rgba(15, 31, 61, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 31, 61, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 31, 61, 0.18);
  --shadow-gold: 0 10px 24px rgba(201, 162, 75, 0.35);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --container: 1180px;
  --header-h: 88px;
}

/* ---------- 2. RESET ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy-900); }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
::selection { background: var(--gold-400); color: var(--navy-950); }

/* Scrollbar sutil */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-100); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 10px; }

/* ---------- 3. UTILITÁRIOS ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-700); font-size: 1.08rem; }
.section-head.left { margin-left: 0; text-align: left; }

.section-pad { padding: 100px 0; }
.bg-navy { background: var(--navy-900); color: var(--cream-100); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-cream { background: var(--cream-100); }
.bg-texture {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,162,75,0.07) 0%, transparent 45%);
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0;
  color: var(--gold-500);
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500));
}
.divider-ornament::after { background: linear-gradient(to left, transparent, var(--gold-500)); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(201,162,75,0.45); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(248,245,238,0.6);
  color: var(--cream-100);
}
.btn-outline:hover { background: rgba(248,245,238,0.12); border-color: var(--cream-100); transform: translateY(-3px); }
.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }

/* ---------- 4. TOPO DE URGÊNCIA ---------- */
.top-bar {
  background: var(--navy-950);
  color: var(--cream-100);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(201,162,75,0.25);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.top-bar-msg { display: flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: .3px; }
.top-bar-msg i { color: var(--gold-400); }
.top-bar-links { display: flex; align-items: center; gap: 18px; }
.top-bar-links a { display: flex; align-items: center; gap: 6px; opacity: .92; transition: opacity .2s ease, color .2s ease; }
.top-bar-links a:hover { color: var(--gold-400); opacity: 1; }

/* ---------- 5. HEADER / NAV ---------- */
header.site-header {
  position: relative;
  z-index: 1000;
  background: var(--navy-900);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: height .3s ease, box-shadow .3s ease;
}
header.site-header.scrolled { height: 70px; }
.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 58px; width: auto; border-radius: 4px; transition: height .3s ease; }
header.site-header.scrolled .brand img { height: 46px; }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--cream-100);
  position: relative;
  padding: 6px 0;
  opacity: .88;
  transition: opacity .2s ease, color .2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-400);
  transition: width .25s ease;
}
.nav-menu a:hover, .nav-menu a.active { opacity: 1; color: var(--gold-300); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 12px 22px; font-size: 0.86rem; }
.phone-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-100);
  font-weight: 700;
  font-size: 0.9rem;
}
.phone-chip i { color: var(--gold-400); font-size: 1.05rem; }
.phone-chip small { display: block; font-weight: 400; opacity: .7; font-size: .68rem; letter-spacing: .5px; text-transform: uppercase; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}
.nav-toggle span { height: 2px; background: var(--cream-100); border-radius: 2px; transition: all .3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(10,23,48,0.94) 30%, rgba(10,23,48,0.72) 65%, rgba(10,23,48,0.55) 100%),
    url('../assets/images/fachada-funeraria.jpg') center/cover no-repeat;
  color: var(--cream-100);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(201,162,75,0.14), transparent 55%);
  pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 0; }
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-content h1 span { color: var(--gold-400); font-style: italic; font-family: var(--font-accent); }
.hero-content p.lead {
  font-size: 1.15rem;
  color: rgba(248,245,238,0.88);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-actions .btn i { font-size: 1.1rem; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 640px;
  border-top: 1px solid rgba(248,245,238,0.18);
  padding-top: 28px;
}
.hero-badge { display: flex; flex-direction: column; gap: 4px; }
.hero-badge strong { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-400); }
.hero-badge span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: .5px; color: rgba(248,245,238,0.75); }

.hero-scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  color: rgba(248,245,238,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- 7. FAIXA DE CONFIANÇA ---------- */
.trust-strip {
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 16px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: .2px;
}
.trust-strip span { display: flex; align-items: center; gap: 8px; }

/* ---------- 8. SOBRE ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-media-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--navy-900);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--gold-500);
}
.about-media-badge strong { display: block; font-family: var(--font-heading); font-size: 2.1rem; color: var(--gold-400); }
.about-media-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: .8px; }

.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-text p { color: var(--ink-700); margin-bottom: 18px; }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.pillar { text-align: left; }
.pillar i { color: var(--gold-500); font-size: 1.5rem; margin-bottom: 10px; display: block; }
.pillar strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 4px; color: var(--navy-900); }
.pillar p { font-size: 0.88rem; color: var(--ink-500); margin: 0; }

/* ---------- 9. SERVIÇOS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--navy-800));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.service-icon i { color: var(--gold-400); font-size: 1.5rem; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------- 10. URNAS ---------- */
.urn-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.urn-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-700);
  transition: all .25s ease;
}
.urn-tab:hover { border-color: var(--gold-500); color: var(--navy-900); }
.urn-tab.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

.urn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.urn-card {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.urn-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.urn-card i { font-size: 2.1rem; color: var(--gold-500); margin-bottom: 16px; }
.urn-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.urn-card p { font-size: 0.85rem; color: var(--ink-500); margin-bottom: 16px; }
.urn-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(201,162,75,0.14);
  color: var(--gold-500);
  margin-bottom: 14px;
}
.urn-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-500);
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 1.15rem;
}

/* ---------- 11. DIFERENCIAIS / STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-box {
  padding: 38px 20px;
  border: 1px solid rgba(248,245,238,0.14);
  border-radius: var(--radius-md);
  background: rgba(248,245,238,0.04);
  transition: background .3s ease, transform .3s ease;
}
.stat-box:hover { background: rgba(201,162,75,0.08); transform: translateY(-6px); }
.stat-box i { color: var(--gold-400); font-size: 1.6rem; margin-bottom: 14px; display: block; }
.stat-number { font-family: var(--font-heading); font-size: 2.6rem; color: var(--white); display: block; }
.stat-number span { color: var(--gold-400); }
.stat-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: .6px; color: rgba(248,245,238,0.7); margin-top: 6px; display: block; }

.diff-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.diff-item { display: flex; gap: 18px; }
.diff-item i { color: var(--gold-400); font-size: 1.4rem; margin-top: 4px; }
.diff-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.diff-item p { color: rgba(248,245,238,0.72); font-size: 0.88rem; margin: 0; }

/* ---------- 12. CONVÊNIOS ---------- */
.partners-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  max-width: 780px;
  margin: 0 auto 50px;
  box-shadow: var(--shadow-sm);
}
.partners-highlight i { font-size: 2rem; color: var(--gold-500); flex-shrink: 0; }
.partners-highlight p { color: var(--ink-700); font-size: 0.95rem; margin: 0; }
.partners-highlight strong { color: var(--navy-900); }

.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: scroll-left 80s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 168px;
  height: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.marquee-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(35%);
  opacity: 0.88;
  transition: filter .3s ease, opacity .3s ease;
}
.marquee-item:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 13. CEMITÉRIOS ---------- */
.cem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.cem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cem-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-900);
  transition: border-color .25s ease, transform .25s ease;
}
.cem-item:hover { border-color: var(--gold-500); transform: translateX(4px); }
.cem-item i { color: var(--gold-500); }
.cem-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 380px; border: 1px solid var(--line); }
.cem-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(15%); }
.cem-callout {
  margin-top: 26px;
  background: var(--navy-900);
  color: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 16px;
}
.cem-callout i { color: var(--gold-400); font-size: 1.6rem; }
.cem-callout p { margin: 0; font-size: 0.92rem; }
.cem-callout strong { color: var(--gold-300); }

/* ---------- 14. FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--navy-900);
}
.faq-question i { color: var(--gold-500); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer p { padding: 0 4px 24px; color: var(--ink-700); font-size: 0.94rem; max-width: 700px; }
.faq-item.open .faq-answer { max-height: 260px; }

/* ---------- 15. CONTATO ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; }
.contact-info-card {
  background: var(--navy-900);
  color: var(--cream-100);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
}
.contact-info-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.contact-info-card > p { color: rgba(248,245,238,0.75); margin-bottom: 32px; font-size: 0.94rem; }
.contact-line { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(248,245,238,0.14); }
.contact-line:first-of-type { border-top: none; }
.contact-line i { color: var(--gold-400); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.contact-line > div { min-width: 0; }
.contact-line strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-line span, .contact-line a {
  color: rgba(248,245,238,0.78);
  font-size: 0.9rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-line a:hover { color: var(--gold-400); }
.contact-social { display: flex; gap: 12px; margin-top: 30px; }
.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(248,245,238,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.contact-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { color: var(--ink-500); margin-bottom: 28px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink-900);
  background: var(--cream-50);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15);
}
.form-note { font-size: 0.78rem; color: var(--ink-500); margin-top: 14px; text-align: center; }
.form-note i { color: var(--gold-500); }

/* ---------- 16. FOOTER ---------- */
footer.site-footer { background: var(--navy-950); color: rgba(248,245,238,0.7); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(248,245,238,0.1);
}
.footer-brand img { height: 56px; margin-bottom: 18px; border-radius: 4px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.88rem; transition: color .2s ease; }
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-badge-24 {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-300);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold-400); }

/* ---------- 17. FLUTUANTES ---------- */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.whatsapp-float {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-tooltip {
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s ease;
}
.whatsapp-tooltip.show { opacity: 1; transform: translateX(0); }
.whatsapp-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
  position: relative;
  animation: pulse-wa 2.6s infinite;
}
.whatsapp-btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ring 2.6s infinite;
}
@keyframes pulse-wa { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- 18. RESPONSIVO ---------- */
@media (max-width: 992px) {
  .about-grid, .cem-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-media img { height: 360px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cem-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-menu { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    background: var(--navy-950); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px 36px; gap: 26px; transform: translateX(100%); transition: transform .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.3); }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline-hide { display: none; }
  .phone-chip { display: none; }
  .hero-badges { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  html { font-size: 17px; }
  body { overflow-x: hidden; }
  .container { padding: 0 18px; max-width: 100%; }

  /* Esconde a faixa de urgência e o botão de WhatsApp do cabeçalho no mobile
     (o botão flutuante já cobre essa ação) */
  .top-bar { display: none; }
  .nav-cta .btn-gold { display: none; }

  .section-pad { padding: 70px 0; }
  .hero { min-height: auto; padding-top: 40px; padding-bottom: 60px; }
  .hero-content { padding: 30px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  /* Faixa de confiança: 1 item por vez, em slide automático */
  .trust-strip .container {
    position: relative;
    display: block;
    min-height: 24px;
    padding: 2px 0;
  }
  .trust-strip span {
    position: absolute;
    inset: 0;
    justify-content: center;
    opacity: 0;
    transform: translateX(14px);
    pointer-events: none;
    transition: opacity .5s ease, transform .5s ease;
  }
  .trust-strip span.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .diff-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cem-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Selo "1924 / Ano de fundação" sobreposto à foto, dentro da moldura */
  .about-media-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    margin: 0;
    padding: 14px 18px;
    width: auto;
  }
  .about-media-badge strong { font-size: 1.6rem; }

  .partners-highlight { flex-direction: column; text-align: center; }
  .float-stack { right: 16px; bottom: 16px; }
  .whatsapp-btn { width: 56px; height: 56px; font-size: 1.6rem; }
  .whatsapp-tooltip { display: none; }
}
