/* ============================================================
   Daniella de Paula Advocacia — Landing Page
   Faithful reproduction of the Figma layout
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --burgundy-1: #470a13;
  --burgundy-2: #5c0d22;
  --maroon: #6c1129;
  --maroon-dark: #470013;
  --maroon-deep: #4f0015;
  --maroon-tag: #7c142f;
  --gold: #c9a961;
  --gold-2: #bc9354;
  --gold-border: #f5deab;
  --gold-soft: #e6cf9a;
  --pink-soft: #fdd1dc;
  --cream: #fefcf9;
  --cream-2: #f7f2eb;
  --cream-3: #f8f3ea;
  --cream-4: #f4ebdb;
  --cream-5: #fffbf4;
  --ink: #544c47;
  --body: #7f7b78;
  --muted: #a49e9b;
  --dark: #1b1b1a;
  --dark-2: #2b292a;
  --border-cream: #e8e0d5;
  --border-cream-2: #f4eee3;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", system-ui, sans-serif;

  --content: 1280px;
  --pad: clamp(20px, 5vw, 80px);
  --radius: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { position: relative; }

/* Icon mask helper — urls are relative to THIS stylesheet (assets/) */
.ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: var(--ico) no-repeat center / contain;
  mask: var(--ico) no-repeat center / contain;
  flex: none;
}
.ico-whatsapp { --ico: url(icons/whatsapp.svg); }
.ico-arrow-right-long { --ico: url(icons/arrow-right-long.svg); }
.ico-angle-down { --ico: url(icons/angle-down.svg); }
.ico-money-bill-trend-up { --ico: url(icons/money-bill-trend-up.svg); }
.ico-file-excel { --ico: url(icons/file-excel.svg); }
.ico-car-on { --ico: url(icons/car-on.svg); }
.ico-file-lines { --ico: url(icons/file-lines.svg); }
.ico-car-side { --ico: url(icons/car-side.svg); }
.ico-handshake { --ico: url(icons/handshake.svg); }
.ico-file-invoice-dollar { --ico: url(icons/file-invoice-dollar.svg); }
.ico-circle-question { --ico: url(icons/circle-question.svg); }
.ico-paper-plane { --ico: url(icons/paper-plane.svg); }
.ico-envelope { --ico: url(icons/envelope.svg); }
.ico-clock { --ico: url(icons/clock.svg); }
.ico-location-dot { --ico: url(icons/location-dot.svg); }
.ico-facebook-f { --ico: url(icons/facebook-f.svg); }
.ico-instagram { --ico: url(icons/instagram.svg); }
.ico-linkedin-in { --ico: url(icons/linkedin-in.svg); }
.ico-x-twitter { --ico: url(icons/x-twitter.svg); }
.ico-plus { --ico: url(icons/plus.svg); }
.ico-caret-right { --ico: url(icons/caret-right.svg); }
.ico-phone { --ico: url(icons/phone.svg); }

/* Section eyebrow / tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13.4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: 999px;
}
.eyebrow.light { background: var(--cream-3); color: var(--gold); }
.eyebrow.dark { background: var(--dark-2); color: var(--gold-soft); }
.eyebrow.wine { background: var(--maroon-tag); color: var(--pink-soft); }

/* Decorative underline bar */
.bar {
  width: 77px;
  height: 5px;
  background: var(--gold);
  border: 0;
  margin: 22px 0 0;
}
.bar.center { margin-inline: auto; }
.section-head .bar { margin-top: 22px; }

.section-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-top: 20px;
}
.section-head .sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--body);
  letter-spacing: 0.02em;
  max-width: 720px;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 17.5px;
  font-weight: 500;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn .ico { width: 26px; height: 26px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); filter: brightness(1.05); }
.btn-gold { background: var(--gold-2); }
.btn-wine { background: var(--maroon); }
.btn .arrow { width: 30px; height: 16px; }
/* WhatsApp icon ringed inside buttons */
.btn .ico-whatsapp {
  width: 42px; height: 42px;
  margin-block: -8px;            /* grow icon without increasing button height */
  border: 2px solid currentColor;
  border-radius: 50%;
  -webkit-mask-size: 82%;
  mask-size: 82%;
  -webkit-mask-position: center;
  mask-position: center;
}

/* ============================================================
   BLOCK 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #2a0f0f;
  overflow: hidden;
}
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: #2a0f0f;
  overflow: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: url("img/fundo_hero.jpg") center right / cover no-repeat;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2c0d0d 30%, rgba(44,13,13,.82) 46%, rgba(0,0,0,0) 74%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-block: 56px 104px; }
.hero__logo { width: 234px; max-width: 50vw; height: auto; margin-bottom: 38px; }
.hero__content { max-width: 640px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.014em;
}
.hero h1 .light { font-weight: 400; }
.hero__highlight {
  display: block;
  margin-top: 20px;
  font-family: var(--serif);
  color: var(--gold);
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
}
.hero__text {
  margin-top: 18px;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  max-width: 560px;
}
.hero__cta {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background: #fff;
  border-radius: 0 999px 999px 0;
  padding: 8px 10px 8px var(--pad);
  z-index: 3;
}
.hero__cta .btn { box-shadow: 0 10px 26px rgba(0,0,0,.22); }

/* ============================================================
   BLOCK 2 — CAUSAS COMUNS
   ============================================================ */
.causas { position: relative; background: #fff; padding-block: clamp(64px, 8vw, 104px); overflow: hidden; }
.causas__bg { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; pointer-events: none; }
.causas__bg span {
  position: absolute;
  left: 0; right: 0;
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #ededed 100%);
}
.causas .container { position: relative; z-index: 1; }
.causas .video {
  position: relative;
  width: min(660px, 100%);
  aspect-ratio: 660 / 446;
  margin: 48px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 10px solid #fff;
  background: #4d4940;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  cursor: pointer;
}
.video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000000;
}
.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, opacity .3s ease;
  z-index: 2;
}
.video__play svg { width: 90px; height: 90px; filter: drop-shadow(0 4px 14px rgba(0,0,0,.4)); }
.causas .video:hover .video__play { transform: scale(1.08); }
.causas .video.playing { cursor: default; }
.causas .video.playing .video__play { opacity: 0; pointer-events: none; }

.causas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.cause {
  position: relative;
  background: #fff;
  border: 2px solid var(--border-cream);
  border-radius: 0 28px 0 28px;
  padding: 52px 30px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(84,76,71,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cause:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(84,76,71,.12); border-color: var(--gold-border); }
.cause__icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--cream-4);
}
.cause__icon .ico { width: 26px; height: 26px; }
.cause h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.cause p { margin-top: 16px; font-size: 16px; line-height: 1.4; color: var(--body); }
.cause::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--border-cream);
  border-radius: 2px;
  margin: 22px auto 0;
}
.cause h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.cause p { margin-top: 16px; font-size: 16px; line-height: 1.4; color: var(--body); }

.causas__cta { text-align: center; margin-top: 56px; }
.causas__cta .lead { font-size: 18px; color: var(--body); letter-spacing: 0.02em; }
.causas__cta .btn { margin-top: 28px; }

/* ============================================================
   BLOCK 3 — SOLUÇÕES
   ============================================================ */
.solucoes {
  background: linear-gradient(160deg, var(--burgundy-1) 0%, var(--burgundy-2) 100%);
  padding-block: clamp(70px, 8vw, 110px);
  color: #fff;
}
.solucoes__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.solucoes__media { position: relative; }
.solucoes__frame {
  position: absolute;
  inset: -28px 28px 28px -28px;
  border: 2px solid var(--gold-border);
  border-radius: 30px;
  z-index: 0;
}
.solucoes__head .bar { margin-top: 20px; }
.solucoes__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  background: var(--cream-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.solucoes__head .eyebrow { box-shadow: 0 4px 4px rgba(0,0,0,.1); }
.solucoes h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.029em;
  color: #fff;
  margin-top: 20px;
}
.solucoes__list { margin-top: 38px; display: flex; flex-direction: column; gap: 24px; }
.sol-card {
  position: relative;
  background: var(--maroon);
  border-radius: 30px;
  padding: 26px 30px 26px 78px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sol-card__icon {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 61px;
  height: 61px;
  border-radius: 18px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.sol-card__icon .ico { width: 30px; height: 30px; }
.sol-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
}
.sol-card p { margin-top: 12px; font-size: 16px; line-height: 1.4; color: rgba(255,255,255,.85); }

/* ============================================================
   BLOCK 4 — SERVIÇOS
   ============================================================ */
.servicos {
  background: linear-gradient(180deg, var(--cream-5) 0%, #fff 60%);
  padding-block: clamp(70px, 8vw, 110px);
}
.servicos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 58px;
}
.service {
  background: #fff;
  border: 2px solid var(--border-cream-2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(84,76,71,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.service:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(84,76,71,.14); }
.service__img { aspect-ratio: 579 / 228; overflow: hidden; background: var(--maroon-dark); }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service:hover .service__img img { transform: scale(1.05); }
.service__body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.service h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon-deep);
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.service p { margin-top: 14px; font-size: 16px; line-height: 1.4; color: var(--body); flex: 1; }
.service .btn { margin-top: 26px; align-self: flex-start; }

/* ============================================================
   BLOCK 5 — SOBRE
   ============================================================ */
.sobre {
  position: relative;
  background: #0c0c10;
  color: #fff;
  overflow: hidden;
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.sobre__media { position: relative; align-self: stretch; min-height: 560px; }
.sobre__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sobre__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,12,16,0) 52%, #0c0c10 100%);
}
.sobre__content { padding: clamp(60px, 7vw, 96px) var(--pad) clamp(60px, 7vw, 96px) clamp(40px, 5vw, 90px); max-width: 700px; }
.sobre .eyebrow { background: var(--dark-2); color: var(--gold-2); }
.sobre h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 45px);
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.sobre__role { margin-top: 18px; color: var(--gold-soft); font-weight: 600; letter-spacing: 0.04em; font-size: 16px; }
.sobre__text { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.sobre__text p { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.86); letter-spacing: 0.01em; text-align: left; }
.sobre__text strong { color: #fff; font-weight: 700; }
.sobre .bar { margin-top: 18px; }
.sobre .btn { margin-top: 32px; }

/* ============================================================
   BLOCK 6 — COMO FUNCIONA
   ============================================================ */
.como { background: var(--cream-2); padding-block: clamp(70px, 8vw, 110px); }
.como .eyebrow.light { background: var(--cream-5); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-cream);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.step__circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  color: var(--maroon);
  box-shadow: 0 10px 26px rgba(84,76,71,.08);
}
.step h3 { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--ink); margin-top: 26px; letter-spacing: -0.01em; }
.step p { margin-top: 12px; font-size: 15px; line-height: 1.45; color: var(--body); max-width: 240px; }
.como__cta { text-align: center; margin-top: 56px; }

/* ============================================================
   BLOCK 7 — ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas {
  position: relative;
  background: var(--dark);
  padding-block: clamp(64px, 7vw, 96px);
  overflow: hidden;
}
.areas__bg {
  position: absolute;
  inset: 0;
  background: url("img/fundo_termos.jpg") center / cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}
.areas__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,18,18,0.28);
}
.areas .container { position: relative; z-index: 1; }
.areas h2 { color: #fff; }
.areas .eyebrow { background: var(--dark-2); color: var(--gold-soft); }
.areas__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  max-width: 880px;
  margin-inline: auto;
}
.area-tag {
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.area-tag:hover { transform: translateY(-3px); background: var(--gold); color: #fff; }

/* ============================================================
   BLOCK 8 — FAQ
   ============================================================ */
.faq { background: #fff; padding-block: clamp(70px, 8vw, 110px); }
.faq__list { max-width: 902px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 18px; }
.faq-item {
  border: 2px solid var(--border-cream);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] { border-color: var(--gold-border); box-shadow: 0 12px 34px rgba(84,76,71,.08); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .qico { width: 30px; height: 30px; color: var(--gold); flex: none; }
.faq-q .qico .ico { width: 30px; height: 30px; }
.faq-q .qtext { flex: 1; }
.faq-q .chev {
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform .3s ease;
}
.faq-q .chev .ico { width: 22px; height: 14px; }
.faq-item[open] .faq-q .qico,
.faq-item[open] .faq-q .chev { color: var(--maroon); }
.faq-item[open] .faq-q .chev { transform: rotate(180deg); }
.faq-a { padding: 0 30px 0 72px; overflow: hidden; }
.faq-a__inner { padding-bottom: 26px; font-size: 16px; line-height: 1.5; color: var(--body); letter-spacing: 0.01em; }
.faq-item[open] .faq-a { animation: faqOpen .35s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.faq__cta { text-align: center; margin-top: 50px; }
.faq__cta .lead { font-size: 18px; color: var(--body); letter-spacing: 0.02em; }
.faq__cta .btn { margin-top: 26px; }

/* ============================================================
   BLOCK 9 — CONTATO
   ============================================================ */
.contato { background: var(--cream); padding-block: clamp(70px, 8vw, 110px); }
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contato__intro h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 45px);
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-top: 20px;
}
.contato__intro .sub { margin-top: 18px; font-size: 18px; color: var(--body); letter-spacing: 0.02em; }
.contato__media { position: relative; margin-top: 48px; max-width: 534px; }
.contato__frame {
  position: absolute;
  inset: -26px 26px 26px -26px;
  border: 2px solid var(--gold-border);
  border-radius: 30px;
  z-index: 0;
}
.contato__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.form-card {
  background: #fff;
  border: 2px solid var(--border-cream);
  border-radius: 26px;
  padding: clamp(28px, 3vw, 40px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--body);
  margin-bottom: 10px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 14px 18px;
  border: 2px solid var(--border-cream);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.16);
}
.form-card .btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  margin-top: 6px;
}
.form-card .privacy {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.form-card .privacy a { color: var(--gold-2); text-decoration: underline; }
.form-card .field input.invalid,
.form-card .field textarea.invalid { border-color: #c0556a; box-shadow: 0 0 0 3px rgba(192,85,106,.14); }
.form-status {
  margin-top: 16px;
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-align: left;
}
.form-status::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: none;
  margin-top: 1px;
  background-color: currentColor;
  -webkit-mask: var(--status-ico) no-repeat center / contain;
  mask: var(--status-ico) no-repeat center / contain;
}
.form-status:not([hidden]) { display: flex; animation: statusIn .45s cubic-bezier(.22,.61,.36,1); }
.form-status.success {
  color: #157049;
  background: #e7f6ee;
  border-color: #b7e4cd;
  --status-ico: url("icons/circle-check.svg");
}
.form-status.error {
  color: #b23a4f;
  background: #fdeaed;
  border-color: #f4c4cd;
  --status-ico: url("icons/circle-exclamation.svg");
}
@keyframes statusIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   BLOCK 10 — FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--cream);   /* page cream shows above blocks 2 & 3 */
  overflow: hidden;
  --notch: 64px;             /* how much taller block 1 is vs blocks 2 & 3 */
  --fg: linear-gradient(160deg, #3f0011 0%, #4f0015 100%);
}
.footer__top {
  position: relative;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.55fr 0.82fr 1.33fr;
  column-gap: 48px;
}

/* ---- Block 1: brand (taller, rounded top-right corner, bleeds left) ---- */
.f-brand {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 22px 40px 0 0;
}
.f-brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: -24px;
  left: -100vw;
  background: var(--fg);
  border-top-right-radius: 30px;
}
.f-brand__logo { width: 190px; height: auto; margin-bottom: 26px; }
.f-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.82); letter-spacing: 0.01em; max-width: 430px; }

/* social box: #38000f, rounded top-right only, bleeds left, merges into copyright */
.f-social {
  position: relative;
  margin-top: auto;
  margin-bottom: 0;
  padding: 18px 26px;
  display: inline-flex;
  gap: 7px;
  width: fit-content;
}
.f-social::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 35px;           /* starts at the icons' mid-height -> top half sticks out */
  bottom: -120px;      /* extend down to merge seamlessly with copyright filete */
  right: 0;
  left: -100vw;
  background: #38000f;
  border-top-right-radius: 26px;
}
.f-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  color: #38000f;
  transition: background .25s ease, transform .25s ease;
}
.f-social a:hover { background: var(--gold); transform: translateY(-3px); }
.f-social a .ico { width: 18px; height: 18px; }

/* ---- Blocks 2 & 3 (own gradient each, backgrounds touching, content spaced) ---- */
.f-col {
  position: relative;
  z-index: 1;
  padding-top: 82px;
}
.f-col::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--notch);
  bottom: 0;
  background: var(--fg);
}
.f-col--nav::before { left: -24px; right: -24px; }
.f-col--contact::before { left: -24px; right: -100vw; }
.f-col h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 22px;
}
.f-nav li { margin-bottom: 16px; }
.f-nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.01em;
  transition: color .2s ease, padding .2s ease;
}
.f-nav a .nav-caret { width: 12px; height: 8px; color: var(--gold); flex: none; transform: rotate(-90deg); }
.f-nav a:hover { color: #fff; padding-left: 4px; }

.f-contact { display: flex; flex-direction: column; gap: 14px; }
.f-contact .row { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.35; }
.f-contact .row .ico { width: 18px; height: 18px; color: var(--gold); margin-top: 2px; flex: none; }
.f-contact .row a { color: inherit; transition: color .2s ease; }
.f-contact .row a:hover { color: var(--gold-2); text-decoration: underline; }
.f-map {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  background: #7a2538;
  color: #fff;
  font-size: 13.4px;
  padding: 8px 20px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: filter .2s ease;
}
.f-map:hover { filter: brightness(1.15); }

/* ---- Part 4: copyright filete (#38000f, full width, glued to columns) ---- */
.footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: #38000f;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 16px;
  flex-wrap: wrap;
}
.footer__sign { display: flex; gap: 10px; align-items: center; }
.footer__sign a { display: inline-flex; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.footer__sign a:hover { opacity: 1; transform: translateY(-2px); }
.footer__sign img { height: 30px; width: auto; }
.footer__copy { font-family: "Roboto", var(--sans); font-weight: 300; font-size: 14px; color: rgba(255,255,255,.82); letter-spacing: 0.01em; }

/* Floating whatsapp */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 50;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .25s ease;
  animation: waPulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .ico { width: 46px; height: 46px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(0,0,0,.28), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,.28), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- WhatsApp lead modal ---------- */
.wa-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wa-modal[hidden] { display: none; }
.wa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,10,14,.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}
.wa-modal.show .wa-modal__backdrop { opacity: 1; }
.wa-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}
.wa-modal.show .wa-modal__dialog { transform: none; opacity: 1; }
.wa-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.wa-modal__close:hover { background: var(--cream-2); color: var(--maroon); transform: scale(1.06); }
.wa-field { margin-bottom: 20px; }
.wa-field label {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--body);
  margin-bottom: 10px;
  text-align: left;
}
.wa-field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 14px 18px;
  border: 2px solid var(--border-cream);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.wa-field input::placeholder { color: var(--muted); }
.wa-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.16);
}
.wa-field input.invalid { border-color: #c0556a; box-shadow: 0 0 0 3px rgba(192,85,106,.14); }
.wa-modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.wa-modal__privacy {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.wa-modal__privacy a { color: var(--gold-2); text-decoration: underline; }
.wa-modal__privacy a:hover { color: var(--maroon); }

/* ---------- Map modal ---------- */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.map-modal[hidden] { display: none; }
.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28,10,14,.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}
.map-modal.show .map-modal__backdrop { opacity: 1; }
.map-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}
.map-modal.show .map-modal__dialog { transform: none; opacity: 1; }
.map-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--maroon);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: background .2s ease, transform .2s ease;
}
.map-modal__close:hover { background: #fff; transform: scale(1.08); }
.map-modal__head {
  padding: 26px 30px 18px;
  background: linear-gradient(135deg, var(--burgundy-1) 0%, var(--burgundy-2) 100%);
  color: #fff;
}
.map-modal__head h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.map-modal__head p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
  max-width: 560px;
}
.map-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--cream-2);
}
.map-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--gold-2);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: filter .2s ease;
}
.map-modal__cta:hover { filter: brightness(1.06); }

/* ---------- Top alert bar ---------- */
.alert-bar {
  position: relative;
  z-index: 40;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 56px;
  color: #856404;
  background-color: #fff3cd;
  border-bottom: 1px solid #ffeeba;
  text-align: center;
}
.alert-bar.dismissed { display: none; }
.alert-bar__text {
  font-size: 14.5px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.alert-bar__text b { font-weight: 700; }
.alert-bar__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #856404;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.alert-bar__close:hover { background: rgba(133,100,4,.14); }

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fefcf9;
  box-shadow: 0 -4px 24px rgba(84,76,71,.12);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar.dismissed { display: none; }
.cookie-bar__inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.cookie-bar__text {
  font-size: 15px;
  line-height: 1.5;
  color: #7f7b78;
  letter-spacing: 0.01em;
}
.cookie-bar__text a {
  color: #7f7b78;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.cookie-bar__text a:hover { color: var(--gold-2); }
.cookie-bar__btn {
  flex: none;
  background: #c9a961;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 16px 38px;
  border-radius: 10px;
  transition: filter .25s ease, transform .25s ease;
}
.cookie-bar__btn:hover { filter: brightness(1.06); transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   DIRECT-EDIT CONSOLIDATION
   Valores antes inline (style="...") movidos para classes.
   ============================================================ */
/* Eyebrows (selo de seção) */
.eyebrow { padding: 5px 12px; font-weight: 500; }
.sobre .eyebrow,
.como .eyebrow,
.areas .eyebrow { padding-inline: 10px; }
.faq .eyebrow { padding-inline: 32px; }
.contato__intro .eyebrow { padding-inline: 22px; }

/* Botões — paddings ajustados por seção */
.hero__cta .btn,
.causas__cta .btn { padding: 10px 18px 10px 28px; }
.service .btn,
.sobre .btn { padding: 5px 18px 5px 28px; }
.como__cta .btn { padding: 8px 28px 10px; }
.faq__cta .btn { padding: 10px 28px; }
.btn .arrow { width: 35px; height: 26px; }
/* Ícone WhatsApp do topo — sem anel, cantos custom */
.hero__cta .ico-whatsapp { border-width: 0; border-radius: 30px 30px 30px 50px; }

/* Bloco Serviços — título sem espaço acima (não há selo) */
.servicos .section-head h2 { margin-top: 0; }

/* Causas — cards e ícones */
.cause { padding: 52px 30px 20px; }
.cause__icon { width: 66px; height: 66px; border-width: 5px; border-color: #fff; }
.cause__icon .ico { width: 36px; height: 36px; }

/* Soluções — ícones maiores */
.sol-card__icon .ico { width: 40px; height: 40px; }

/* Sobre — cargo em branco */
.sobre__role { color: #fff; }

/* Áreas — fundo e pills */
.areas .areas__bg { height: 538px; }
.area-tag { padding: 10px 30px; height: 43px; }

/* FAQ — seta maior */
.faq-q .chev .ico { width: 32px; height: 24px; }

/* Formulário — rótulos e recaptcha */
.form-card .field label { margin: 0 0 5px 10px; }
.g-recaptcha { margin-bottom: 18px; }
input[name="botcheck"] { display: none !important; }

/* Rodapé — alturas das colunas, redes e contatos */
.f-brand,
.f-col--nav,
.f-col--contact { height: 357px; }
.f-brand p { letter-spacing: 0; }
.f-social a { width: 35px; height: 35px; }
.f-social a .ico { width: 22px; height: 22px; color: #4e0015; }
.f-nav a { line-height: 1.3; }
.f-nav a .nav-caret { width: 20px; height: 14px; }
.f-contact { height: 346px; }
.f-contact .row .ico-whatsapp { width: 28px; height: 28px; margin: 0; }
.f-contact .row .ico-phone { width: 28px; height: 20px; margin: 4px 0 0; -webkit-mask-size: 19px 20px; mask-size: 19px 20px; -webkit-mask-position: left center; mask-position: left center; }
.f-contact .row .ico-envelope { width: 26px; height: 26px; margin: 0; }
.f-contact .row .ico-location-dot { width: 28px; height: 28px; margin: 12px 0 0; }
.f-map { margin: 0 0 250px 40px; padding: 2px 10px; }
.cookie-bar__btn { padding: 8px 38px; border-radius: 99px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .solucoes__inner { grid-template-columns: 1fr; }
  .solucoes__media { max-width: 560px; margin-inline: auto; }
  .solucoes__frame { inset: -20px 20px 20px -20px; }
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__media { min-height: 420px; }
  .sobre__media::after { background: linear-gradient(0deg, #0c0c10 0%, rgba(12,12,16,0) 45%); }
  .sobre__content { padding: 44px var(--pad) 72px; max-width: none; }
  .contato__inner { grid-template-columns: 1fr; }
  .contato__media { margin-inline: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .f-brand { grid-column: 1 / -1; padding-right: 0; }
  .f-brand::before { border-top-right-radius: 26px; right: 0; }
  .f-col { padding-top: 28px; }
  .f-col::before { top: 0; }
  .f-col--nav::before { left: -100vw; right: -16px; }
  .f-col--contact::before { left: -16px; right: -100vw; }
  .f-social { margin-top: 30px; }
  .f-social::before { top: 0; left: 0; bottom: 0; border-radius: 16px 26px 16px 16px; }
}

@media (max-width: 760px) {
  :root { --radius: 18px; }
  .causas__grid { grid-template-columns: 1fr; }
  .servicos__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 36px 16px; }
  .steps::before { display: none; }
  .sol-card { padding: 24px 24px 24px 30px; }
  .sol-card__icon { position: static; transform: none; margin-bottom: 16px; }
  .sol-card { flex-direction: column; align-items: flex-start; }
  .faq-q { font-size: 18px; padding: 20px 22px; }
  .faq-a { padding-left: 22px; padding-right: 22px; }

  /* (1) Hero gradient covers more width for legibility */
  .hero__overlay {
    background: linear-gradient(90deg, #2c0d0d 56%, rgba(44,13,13,.9) 80%, rgba(0,0,0,.5) 100%);
  }
  /* (2) Hero CTA smaller so it fits the screen */
  .hero__cta { padding: 7px 9px 7px 16px; }
  .hero__cta .btn {
    font-size: 13.5px;
    padding: 8px 12px 8px 18px !important;
    gap: 8px;
  }
  .hero__cta .btn .ico-whatsapp { width: 32px; height: 32px; margin-block: -6px; }

  /* (3) Contato image fits the screen */
  .contato__media { max-width: 330px; }
  .contato__frame { inset: -16px 16px 16px -16px; }
  /* (4) Contato subtitle wraps instead of clipping */
  .contato__intro .sub { font-size: 15.5px; letter-spacing: 0 !important; text-wrap: pretty; }
  /* (5) Form fits within the screen width */
  .form-card { padding: 22px 16px; }
  .form-card .btn-submit { font-size: 15px; padding: 14px 18px; }
  .form-card .btn-submit span { white-space: normal; text-align: center; }

  /* (6) Footer: clean single-column stack, no bleed gaps */
  .footer { background: linear-gradient(160deg, #3f0011 0%, #4f0015 100%); }
  .footer__top { grid-template-columns: 1fr; row-gap: 4px; padding-top: 40px; }
  .f-brand { grid-column: auto; padding: 0 0 4px; }
  .f-brand::before { display: none; }
  .f-brand p { max-width: none; }
  .f-col { padding-top: 26px; }
  .f-col::before { display: none; }
  .f-social {
    margin-top: 26px;
    background: #38000f;
    border-radius: 16px;
    padding: 14px 18px;
    gap: 10px;
  }
  .f-social::before { display: none; }
  .f-brand,
  .f-col--nav,
  .f-col--contact,
  .f-contact { height: auto; }
  .f-map { margin: 2px 0 15px 0; }
  .cookie-bar__inner { flex-direction: column; gap: 16px; text-align: center; padding: 16px var(--pad); }
  .cookie-bar__text { font-size: 13.5px; }
}

@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
  .footer__bottom .container { justify-content: center; text-align: center; }
  .hero__cta .btn { font-size: 12.5px; padding: 7px 10px 7px 16px !important; }
  .hero__cta .btn .ico-whatsapp { width: 28px; height: 28px; }
  .contato__media { max-width: 280px; }
}
