/* =========================================================
   LEVI DIOLI · Consultoria de Imagem
   Estilo base — tipografia, tokens, layout
   ========================================================= */

/* ---------- FONTES ---------- */
/* Display serif equivalente a The Seasons (Google Fonts — sem marca d'água) */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,500;0,6..96,700;0,6..96,800;1,6..96,500;1,6..96,700;1,6..96,800&display=swap');

@font-face {
  font-family: 'Garet';
  src: url('../fonts/Garet-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Questrial';
  src: url('../fonts/Questrial-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  /* paleta oficial */
  --marrom:        #261A18;
  --marrom-soft:   #3A2A26;
  --greyge:        #A57D62;
  --greyge-light:  #C9A88E;
  --marrom-claro:  #CEC1B2;
  --bege-soft:     #E6DCCB;
  --offwhite:      #FFFAF3;
  --offwhite-2:    #F7F0E4;
  --line:          rgba(38, 26, 24, 0.12);
  --line-light:    rgba(255, 250, 243, 0.18);

  /* tipografia */
  --ff-display: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Garet', 'Inter', system-ui, sans-serif;
  --ff-detail:  'Questrial', 'Garet', sans-serif;

  /* escala */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* timing */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--marrom);
  background: var(--offwhite);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- TIPOGRAFIA ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 0.98;
  color: var(--marrom);
}
.display em {
  font-style: italic;
  color: var(--greyge);
}
.detail {
  font-family: var(--ff-detail);
  text-transform: uppercase;
  letter-spacing: 0.4em;  /* ~ tracking 400 */
  font-size: 11px;
  color: var(--greyge);
  font-weight: 400;
}
.detail--light { color: var(--marrom-claro); }
.detail--dark  { color: var(--marrom); }
.detail--bullet::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 14px;
  transform: translateY(-2px);
}
.lead {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--marrom-soft);
  max-width: 56ch;
}
.lead em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  color: var(--greyge);
  font-size: 1.05em;
}

/* ---------- LAYOUT ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ---------- BRAND MARK (logo solta, sem header) ---------- */
.brand-mark {
  position: absolute;
  top: clamp(28px, 3.6vw, 48px);
  left: var(--gutter);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark img {
  height: clamp(40px, 4vw, 56px);
  width: auto;
  display: block;
}
.brand-mark__wordmark {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: 0.02em;
  color: var(--greyge);
  line-height: 1;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  font-family: var(--ff-detail);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 260ms var(--ease), color 260ms var(--ease), border 260ms var(--ease), transform 260ms var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--marrom);
  color: var(--offwhite);
  border-color: var(--marrom);
}
.btn--primary:hover {
  background: var(--greyge);
  border-color: var(--greyge);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--marrom);
  border-color: var(--marrom);
}
.btn--ghost:hover { background: var(--marrom); color: var(--offwhite); }
.btn--light {
  background: var(--offwhite);
  color: var(--marrom);
  border-color: var(--offwhite);
}
.btn--light:hover { background: var(--marrom-claro); border-color: var(--marrom-claro); }
.btn--outline-light {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(255,250,243,0.5);
}
.btn--outline-light:hover { background: var(--offwhite); color: var(--marrom); border-color: var(--offwhite); }
.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: currentColor;
}
.btn__arrow svg { color: var(--marrom); transition: transform 260ms var(--ease); }
.btn--primary .btn__arrow svg { color: var(--marrom); }
.btn--primary:hover .btn__arrow svg { color: var(--greyge); }
.btn--ghost .btn__arrow svg { color: var(--offwhite); }
.btn--light .btn__arrow svg { color: var(--offwhite); }
.btn:hover .btn__arrow svg { transform: translateX(3px); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  min-height: 100vh;
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.hero__copy {
  padding: clamp(180px, 18vw, 220px) var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow { display: flex; align-items: center; gap: 18px; }
.hero__eyebrow .line {
  width: 56px; height: 1px;
  background: var(--greyge);
}
.hero__title {
  font-size: clamp(44px, 5.6vw, 88px);
  margin: 0;
}
.hero__title .row { display: block; }
.hero__title em {
  font-style: italic;
  color: var(--greyge);
}
.hero__lead {
  max-width: 48ch;
}
.hero__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__quote {
  margin-top: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: 44ch;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.35;
  color: var(--marrom);
}
.hero__quote::before {
  content: "“";
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 0;
  color: var(--greyge);
  margin-right: 6px;
  vertical-align: -10px;
}

.hero__visual {
  position: relative;
  background: var(--marrom);
  overflow: hidden;
}
.hero__portrait {
  position: absolute;
  inset: 0;
  background: url('../img/levi-portrait.png') center/cover no-repeat;
}
.hero__portrait::before {
  /* placeholder "retrato" — silhueta sutil */
  content: "";
  position: absolute;
  inset: 12% 18% 0 18%;
  background:
    radial-gradient(ellipse 50% 30% at 50% 20%, rgba(206,193,178,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 65% 50% at 50% 70%, rgba(165,125,98,0.18) 0%, transparent 70%);
}
.hero__portrait::after {
  /* grão */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,250,243,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hero__visual .placeholder-tag {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--ff-detail);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.55);
}
.hero__visual .placeholder-tag::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}
.hero__visual .crop {
  position: absolute;
  top: 22%; left: 30%;
  width: 40%; height: 56%;
  border: 1px solid rgba(255,250,243,0.18);
  pointer-events: none;
}
.hero__visual .crop::before, .hero__visual .crop::after {
  content: "";
  position: absolute;
  background: rgba(255,250,243,0.28);
}
.hero__visual .crop::before { left: -16px; right: -16px; top: 50%; height: 1px; }
.hero__visual .crop::after  { top: -16px; bottom: -16px; left: 50%; width: 1px; }

.hero__mono {
  position: absolute;
  right: -3%;
  bottom: -3%;
  width: 38%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}
.hero__sigil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--greyge);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.hero__sigil::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(206,193,178,0.5);
  border-radius: 50%;
}

/* .hero__meta removida — sem cidade nem ano flutuante */

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto {
  background: var(--marrom-claro) url('../img/fundo-1.png') center / cover no-repeat;
  position: relative;
  text-align: center;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(206,193,178,0.0) 0%, rgba(206,193,178,0.0) 100%);
  pointer-events: none;
}
.manifesto__o {
  position: absolute;
  top: 50%; left: 50%;
  width: 28vw;
  max-width: 360px;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.manifesto h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 28px 0 0;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--greyge);
}

/* ===========================================================
   MÉTODO DIOLI
   =========================================================== */
.metodo {
  background: var(--offwhite);
}
.metodo__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.metodo__head h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  margin: 22px 0 0;
}
.metodo__head h2 em { color: var(--greyge); font-style: italic; }
.metodo__head p { margin: 0; }

.metodo__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.metodo__row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr 60px;
  gap: 48px;
  align-items: center;
  padding: 44px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 320ms var(--ease), padding 320ms var(--ease);
  cursor: default;
}
.metodo__row:hover {
  background: var(--offwhite-2);
  padding-left: 24px;
}
.metodo__letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  color: var(--greyge);
}
.metodo__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--marrom);
}
.metodo__name small {
  display: block;
  font-family: var(--ff-detail);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--greyge);
  font-weight: 400;
  margin-top: 10px;
}
.metodo__desc {
  font-size: 15.5px;
  color: var(--marrom-soft);
  line-height: 1.62;
  margin: 0;
  max-width: 52ch;
}
.metodo__num {
  font-family: var(--ff-detail);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--marrom-claro);
  text-align: right;
}

/* ===========================================================
   AUTORIDADE — cards
   =========================================================== */
.autoridade {
  background: var(--marrom) url('../img/fundo-2.png') center / cover no-repeat;
  color: var(--offwhite);
  position: relative;
}
.autoridade::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,26,24,0.65) 0%, rgba(38,26,24,0.85) 100%);
  pointer-events: none;
}
.autoridade > * { position: relative; z-index: 1; }
.autoridade .detail { color: var(--marrom-claro); }
.autoridade__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.autoridade__head h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  margin: 22px 0 0;
  color: var(--offwhite);
}
.autoridade__head h2 em { color: var(--greyge-light); font-style: italic; }
.autoridade__head p {
  color: var(--marrom-claro);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--marrom-soft);
  border: 1px solid rgba(206,193,178,0.10);
  padding: 40px 32px 44px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: transform 360ms var(--ease), background 360ms var(--ease), border-color 360ms var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: #2e211d;
  border-color: rgba(206,193,178,0.25);
}
.card__num {
  font-family: var(--ff-detail);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--greyge);
}
.card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  color: var(--offwhite);
  margin: auto 0 18px;
}
.card__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--marrom-claro);
  margin: 0;
}

/* ===========================================================
   SOBRE LEVI
   =========================================================== */
.sobre {
  background: var(--offwhite);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.sobre__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: url('../img/levi-portrait.png') center/cover no-repeat;
  overflow: hidden;
}
.sobre__photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(206,193,178,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 75%, rgba(165,125,98,0.20) 0%, transparent 70%);
}
.sobre__photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,250,243,0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.55;
}
.sobre__photo .tag {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--ff-detail);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,250,243,0.55);
  z-index: 2;
}
.sobre__photo .tag::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}
.sobre__photo .frame {
  position: absolute;
  inset: 18% 22% 16% 22%;
  border: 1px solid rgba(255,250,243,0.18);
  z-index: 1;
}
.sobre__signature {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  position: absolute;
  bottom: 28px; right: 28px;
  font-size: 26px;
  color: rgba(255,250,243,0.75);
  z-index: 2;
}

.sobre__body h2 {
  font-size: clamp(36px, 4.2vw, 60px);
  margin: 22px 0 24px;
  line-height: 1.02;
}
.sobre__body h2 em { color: var(--greyge); font-style: italic; }
.sobre__body p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--marrom-soft);
}
.sobre__body p strong { color: var(--marrom); font-weight: 400; font-family: var(--ff-display); font-style: italic; font-size: 1.05em; }
.sobre__facts {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.fact__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(38px, 3.4vw, 52px);
  color: var(--greyge);
  line-height: 1;
}
.fact__label {
  margin-top: 10px;
  font-family: var(--ff-detail);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--marrom-soft);
}
.sobre__cta { margin-top: 40px; }

/* ===========================================================
   DEPOIMENTOS
   =========================================================== */
.depoimentos {
  background: var(--offwhite-2);
  position: relative;
}
.depoimentos__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.depoimentos__head h2 {
  font-size: clamp(36px, 4vw, 60px);
  margin: 22px 0 0;
  max-width: 18ch;
}
.depoimentos__head h2 em { color: var(--greyge); font-style: italic; }

.depo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.depo {
  background: var(--offwhite);
  border: 1px solid var(--line);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  min-height: 360px;
}
.depo--feature {
  grid-row: span 2;
  background: var(--marrom);
  color: var(--offwhite);
  border-color: var(--marrom);
  padding: 48px 44px;
}
.depo--feature .depo__quote { color: var(--offwhite); }
.depo--feature .depo__name { color: var(--offwhite); }
.depo--feature .depo__role { color: var(--marrom-claro); }
.depo__mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 64px;
  line-height: 0.4;
  color: var(--greyge);
  height: 30px;
}
.depo--feature .depo__mark { color: var(--greyge-light); }
.depo__quote {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
  color: var(--marrom);
  margin: 0;
  flex-grow: 1;
}
.depo--feature .depo__quote { font-size: clamp(24px, 2vw, 32px); line-height: 1.3; }
.depo__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.depo--feature .depo__author { border-top-color: rgba(206,193,178,0.18); }
.depo__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--greyge), var(--marrom-soft));
  flex-shrink: 0;
  position: relative;
}
.depo__avatar::after {
  content: "[ foto ]";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-detail);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255,250,243,0.6);
}
.depo__name {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--marrom);
}
.depo__role {
  font-family: var(--ff-detail);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--greyge);
  margin-top: 4px;
}
.depo__note {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--ff-detail);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--marrom-claro);
  text-transform: uppercase;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  background: var(--offwhite);
}
.faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.faq__head h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin: 22px 0 24px;
  line-height: 1.04;
}
.faq__head h2 em { color: var(--greyge); font-style: italic; }
.faq__head p { margin: 0; }

.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  color: var(--marrom);
}
.faq-item__q {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.005em;
  line-height: 1.3;
  flex: 1;
}
.faq-item__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--marrom);
  flex-shrink: 0;
  position: relative;
  transition: background 240ms var(--ease), border-color 240ms var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--marrom);
  transition: transform 320ms var(--ease), background 240ms var(--ease);
}
.faq-item__icon::before { width: 12px; height: 1px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 1px; height: 12px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-item__icon { background: var(--marrom); }
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after { background: var(--offwhite); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease);
}
.faq-item__a-inner {
  padding: 0 0 28px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--marrom-soft);
}
.faq-item.is-open .faq-item__a { max-height: 480px; }

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final {
  background: var(--marrom) url('../img/fundo-2.png') center / cover no-repeat;
  color: var(--offwhite);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,26,24,0.55) 0%, rgba(38,26,24,0.85) 100%);
  pointer-events: none;
}
.cta-final__o {
  position: absolute;
  top: 50%; left: 50%;
  width: 90%;
  max-width: 900px;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-final h2 {
  font-size: clamp(40px, 5.4vw, 80px);
  margin: 28px auto 32px;
  color: var(--offwhite);
  line-height: 1.04;
}
.cta-final h2 em { color: var(--greyge-light); font-style: italic; }
.cta-final p {
  max-width: 60ch;
  margin: 0 auto 44px;
  color: var(--marrom-claro);
  font-size: 16px;
  line-height: 1.7;
}
.cta-final .detail { color: var(--marrom-claro); }

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: var(--marrom);
  color: var(--marrom-claro);
  padding: 40px var(--gutter);
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer__logo img { height: 36px; width: auto; display: block; }
.footer__copy {
  font-family: var(--ff-detail);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(206,193,178,0.7);
}

/* ===========================================================
   RESPONSIVO
   =========================================================== */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { height: 80vh; min-height: 540px; order: 2; }
  .hero__copy   { order: 1; padding: 140px var(--gutter) 60px; }
  .metodo__head,
  .autoridade__head,
  .sobre__grid,
  .faq__layout { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .depo--feature { grid-row: auto; grid-column: span 2; }
  .metodo__row { grid-template-columns: 64px 1fr 48px; row-gap: 16px; padding: 32px 8px; }
  .metodo__row .metodo__desc { grid-column: 2 / -1; }
  .metodo__row:hover { padding-left: 8px; }
}
@media (max-width: 640px) {
  .hero__copy { padding: 130px 24px 50px; gap: 26px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: space-between; }
  .cards, .depo-grid { grid-template-columns: 1fr; }
  .depo--feature { grid-column: auto; }
  .sobre__facts { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .metodo__row { grid-template-columns: 56px 1fr; gap: 16px 20px; }
  .metodo__num { display: none; }
  .brand-mark { top: 20px; }
  .brand-mark img { height: 36px; }
}
