/* ─── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ─── TOKENS ────────────────────────────────────────────── */
:root {
  --terracota:      #C4826D;
  --terracota-deep: #A8614F;
  --terracota-light:#E8B89F;
  --sage:           #9DB5A8;
  --sage-deep:      #7A9B8C;
  --areia:          #F0E6D9;
  --areia-deep:     #E0CDB8;
  --nude:           #EDE0D0;
  --gold:           #C9A97A;
  --text-dark:      #2C1F18;
  --text-mid:       #6B4F42;
  --text-light:     #9C7D70;
  --white:          #FDFAF7;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;

  --radius:   4px;
  --radius-lg:12px;
  --shadow:   0 4px 32px rgba(44,31,24,.08);
  --shadow-lg:0 12px 48px rgba(44,31,24,.14);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --container: 1160px;
  --gap:        clamp(1.5rem, 4vw, 3rem);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1rem;
}
.label--light { color: var(--terracota-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-sub {
  margin-top: 1rem;
  color: var(--text-mid);
  font-size: 1.05rem;
}

h1,h2,h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--terracota); }

p { color: var(--text-mid); }
p + p { margin-top: 1rem; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terracota);
  color: var(--white);
  border-color: var(--terracota);
}
.btn--primary:hover {
  background: var(--terracota-deep);
  border-color: var(--terracota-deep);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn--outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border-color: rgba(44,31,24,.35);
}
.btn--ghost:hover {
  background: rgba(44,31,24,.07);
  border-color: var(--text-dark);
}

.btn--full { width: 100%; }

.link-arrow {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--terracota);
  transition: gap var(--transition), color var(--transition);
}
.link-arrow:hover { color: var(--terracota-deep); }

/* ─── FADE-IN ANIMATION ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44,31,24,.08);
  padding: .75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition), opacity var(--transition);
}

/* Topo: branca visível, escura oculta */
.nav__logo--branca { display: block; }
.nav__logo--escura { display: none; }

/* Scrolled: escura visível, branca oculta */
.nav.scrolled .nav__logo--branca { display: none; }
.nav.scrolled .nav__logo--escura { display: block; }

.nav.scrolled .nav__logo img { height: 40px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.2;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text-dark); }

.nav__mobile-cta { display: none; }

.nav__cta {
  font-size: .8rem;
  padding: .625rem 1.5rem;
  border-color: var(--white);
  color: var(--white);
  white-space: nowrap;
  text-align: center;
}
.nav__cta:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--terracota);
}

/* Scrolled: volta para terracota */
.nav.scrolled .nav__cta {
  border-color: var(--terracota);
  color: var(--terracota);
}
.nav.scrolled .nav__cta:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--white);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--areia);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__texture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 6rem;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero__text {
  flex: 1 1 0;
  min-width: 0;
}

.hero__logo-aside {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-aside img {
  width: clamp(180px, 20vw, 280px);
  opacity: .92;
  filter: drop-shadow(0 4px 24px rgba(44,31,24,.18));
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 1.75rem;
}

/* "como é." e "mais inteira." — as <em> do hero ficam brancas */
.hero__title em {
  color: var(--white);
  font-style: italic;
}

.hero__sub {
  color: var(--text-mid);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(44,31,24,.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.7); }
}

/* ─── PROPÓSITO ──────────────────────────────────────────── */
.proposito {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--white);
}

.proposito__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap) clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.proposito__text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.proposito__valores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.valor {
  padding: 1.5rem;
  background: var(--areia);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--terracota);
}
.valor h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--terracota-deep);
  margin-bottom: .5rem;
}
.valor p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── COMO FUNCIONA ──────────────────────────────────────── */
.como-funciona {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--areia);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--terracota);
  opacity: .4;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  color: var(--text-dark);
  margin-bottom: .75rem;
  font-size: 1.25rem;
}
.step p { font-size: .95rem; }

.step__divider {
  align-self: center;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--terracota-light), transparent);
  margin-top: -2rem;
}

/* ─── SOBRE ──────────────────────────────────────────────── */
.sobre {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--areia);
  overflow: hidden;
}

.sobre__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sobre__texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.sobre__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap) clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.sobre__quote {
  padding: 3rem;
  border-left: 3px solid var(--terracota);
  background: rgba(253,250,247,.55);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
}
.sobre__quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.sobre__quote cite {
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--terracota-deep);
  font-style: normal;
}

.sobre__text .label { color: var(--terracota-deep); }
.sobre__text h2 { color: var(--text-dark); margin-bottom: 1.5rem; }
.sobre__text p  { color: var(--text-mid); }
.sobre__text .btn--primary { margin-top: 2rem; }
.sobre__farewell {
  font-style: italic;
  color: var(--areia);
}

/* ─── JORNADAS ───────────────────────────────────────────── */
.jornadas {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--white);
}

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

.jornada-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.jornada-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.jornada-card__texture {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--areia);
  border-bottom: 1px solid var(--areia-deep);
}
.jornada-icon {
  width: 80px;
  height: 80px;
  color: var(--terracota);
}

/* Imagens PNG: colorir para terracota (#C4826D) */
.jornada-icon--img {
  object-fit: contain;
  opacity: .75;
  filter: brightness(0) saturate(100%) invert(59%) sepia(28%) saturate(530%) hue-rotate(318deg) brightness(97%);
}

.jornada-card__body {
  padding: .5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.jornada-card__body h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  text-align: center;
  margin-top: .5rem;
  margin-bottom: 0;
}
.jornada-card__body p {
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ─── SUA JORNADA, COMPLETA ─────────────────────────────── */
.servicos {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--nude);
}

/* Card destaque — Roteiro Personalizado + chips internos */
.servicos__destaque {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(135deg, rgba(196,130,109,.12) 0%, rgba(157,181,168,.1) 100%);
  border: 1.5px solid rgba(196,130,109,.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.servicos__destaque-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,130,109,.1);
  border-radius: 50%;
  color: var(--terracota);
  flex-shrink: 0;
}
.servicos__destaque-icon svg { width: 40px; height: 40px; }

.servicos__destaque-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracota-deep);
  background: rgba(196,130,109,.15);
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.servicos__destaque-body h3 {
  color: var(--text-dark);
  margin-bottom: .75rem;
}
.servicos__destaque-body p {
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

/* Divisor interno */
.servicos__outros-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,130,109,.2);
}

.servicos__destaque-btn.selected {
  background: var(--terracota);
  color: var(--white);
  border-color: var(--terracota);
}

/* Grid de chips */
.servicos__grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-start;
  margin-bottom: 0;
}

.servico-chip {
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--areia-deep);
  border-radius: 40px;
  padding: .625rem 1.5rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform .15s ease;
}
.servico-chip:hover {
  border-color: var(--terracota-light);
  color: var(--text-dark);
}
.servico-chip.selected {
  border-color: var(--terracota);
  background: rgba(196,130,109,.1);
  color: var(--terracota-deep);
  font-weight: 700;
}
.servico-chip.selected::before {
  content: '✓ ';
}

/* Aviso seleção alterada */
.servicos__aviso {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(201,169,122,.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: .875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-style: normal;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-inline: auto;
  white-space: normal;
}
.servicos__aviso svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }
.servicos__aviso em { font-style: italic; color: var(--terracota-deep); }

/* Botão e hint */
.servicos__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 1rem;
}

.servicos__cta:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pontilhado = seleção pronta para aplicar */
.servicos__cta--ativo {
  border: 2px dashed var(--terracota) !important;
  background: transparent !important;
  color: var(--terracota) !important;
}
.servicos__cta--ativo:hover {
  background: rgba(196,130,109,.1) !important;
}

.servicos__hint {
  font-size: .8rem;
  color: var(--text-light);
  font-style: italic;
}

/* Botão de envio do formulário — esmaecido quando seleção pendente */
.btn--bloqueado {
  opacity: .4;
  cursor: not-allowed;
}

/* ─── DOCUMENTAÇÃO ──────────────────────────────────────── */
.documentacao {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--areia);
}

.doc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.doc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doc-card__icon {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-card__icon svg {
  width: 56px;
  height: 56px;
  color: var(--sage-deep);
}
.doc-icon {
  width: 56px;
  height: 56px;
}
.doc-icon--img {
  object-fit: contain;
  opacity: .75;
  filter: brightness(0) saturate(100%) invert(59%) sepia(28%) saturate(530%) hue-rotate(318deg) brightness(97%);
}

.doc-card__body {
  padding: .5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.doc-card__body h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
}
.doc-card__body p {
  font-size: .9rem;
  flex: 1;
}

.doc__nota {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  max-width: 560px;
  margin-inline: auto;
  font-style: italic;
}

/* ─── DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--nude);
}

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

.depoimento {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.depoimento::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--terracota);
  opacity: .15;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}

.depoimento__texto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.depoimento__autora {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.depoimento__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracota);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.depoimento__autora strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
}
.depoimento__autora span {
  font-size: .8rem;
  color: var(--text-light);
}

/* ─── CONTATO ────────────────────────────────────────────── */
.contato {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--nude);
  overflow: hidden;
}

.contato__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contato__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.contato__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.contato__inner .label { color: var(--white); }

.contato__inner h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.contato__inner > p {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}

.contato__form {
  text-align: left;
  background: rgba(253,250,247,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(44,31,24,.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea {
  background: rgba(253,250,247,.85);
  border: 1px solid var(--areia-deep);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracota);
  background: var(--white);
}

.form-note {
  text-align: center;
  font-size: .85rem;
  color: var(--text-light);
  margin-top: 1rem;
}
.form-note a {
  color: var(--terracota-deep);
  text-decoration: underline;
}

.contato__canais {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.canal-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--text-mid);
  transition: color var(--transition);
}
.canal-link:hover { color: var(--terracota-deep); }
.canal-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── INSTAGRAM ─────────────────────────────────────────── */
.instagram {
  position: relative;
  padding-block: clamp(4rem, 8vw, 8rem);
  background: var(--areia);
  overflow: hidden;
}

.instagram__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.instagram__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.instagram__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* Layout centralizado (sem mosaico) */
.instagram__centered {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}
.instagram__centered .label { color: var(--white); }
.instagram__centered h2 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.instagram__centered p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.instagram__text .label { color: var(--white); }
.instagram__text h2 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.instagram__text p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.btn--instagram {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: rgba(253,250,247,.6);
  border: 1.5px solid var(--terracota);
  color: var(--terracota-deep);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .875rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn--instagram svg { width: 18px; height: 18px; }
.btn--instagram:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--white);
  transform: translateY(-2px);
}

/* Mosaico */
.instagram__mosaic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .5rem;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
}

.mosaic__tile { border-radius: var(--radius); overflow: hidden; }
.mosaic__tile--1 { grid-column: 1; grid-row: 1 / 3; }

/* Each tile crops a different area of the texture for variety */
.mosaic__tile--1 img { object-position: 10% 20%; }
.mosaic__tile--2 img { object-position: 80% 10%; }
.mosaic__tile--3 img { object-position: 40% 70%; }
.mosaic__tile--4 img { object-position: 90% 80%; }

.mosaic__inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mosaic__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.85);
  transition: filter var(--transition), transform var(--transition);
}
.mosaic__tile:hover .mosaic__inner img {
  filter: saturate(1.1) brightness(.95);
  transform: scale(1.04);
}

.mosaic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,130,109,.3);
  opacity: 0;
  transition: opacity var(--transition);
}
.mosaic__tile:hover .mosaic__overlay { opacity: 1; }
.mosaic__overlay svg { width: 32px; height: 32px; }

.mosaic__handle {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #1A110C;
  padding-block: 3rem;
  text-align: center;
}
.footer__logo img {
  height: 80px;
  margin-inline: auto;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(60%) sepia(30%) saturate(500%) hue-rotate(330deg) brightness(95%);
  opacity: .8;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(253,250,247,.35);
  margin-bottom: .5rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.footer__links a {
  font-size: .8rem;
  color: rgba(253,250,247,.35);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--terracota-light); }
.footer__links span { color: rgba(253,250,247,.15); font-size: .7rem; }

.footer__copy {
  font-size: .78rem;
  color: rgba(253,250,247,.2);
}

/* ─── FORM SUCCESS STATE ──────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-dark);
}
.form-success h3 {
  color: var(--terracota-deep);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.form-success p { color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-First Breakpoints
   ── 1024px  tablet landscape
   ── 768px   tablet portrait
   ── 480px   mobile large
   ── 360px   mobile small
═══════════════════════════════════════════════════════════ */

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proposito__inner  { gap: 3rem; }
  .sobre__inner      { gap: 3rem; }
  .instagram__inner  { gap: 3rem; }
}

/* ── 900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Layouts 2-col → 1-col */
  .proposito__inner,
  .sobre__inner,
  .instagram__inner {
    grid-template-columns: 1fr;
  }

  /* Propósito: quote first on mobile */
  .sobre__quote { order: -1; }

  /* Instagram: text first, mosaic second */
  .instagram__text  { order: 1; }
  .instagram__mosaic { order: 2; }
  .mosaic__grid {
    max-width: 100%;
    aspect-ratio: 2 / 1;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
  }
  .mosaic__tile--1 { grid-column: auto; grid-row: auto; }

  /* Steps: horizontal → vertical */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step__divider {
    width: 60px;
    height: 1px;
    margin: .5rem auto;
    background: linear-gradient(to right, transparent, var(--terracota-light), transparent);
  }

  /* Card grids → 1 col */
  .jornadas__grid,
  .depoimentos__track,
  .doc__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav: hide links, show burger */
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  /* Mobile menu overlay */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--areia);
    padding: 5.5rem 2rem 2.5rem;
    gap: 1.75rem;
    z-index: 99;
    overflow-y: auto;
  }
  .nav.scrolled .nav__links.open { background: var(--white); }
  .nav__links.open a {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-serif);
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid var(--areia-deep);
    padding-bottom: 1.25rem;
  }
  .nav.scrolled .nav__links.open a { color: var(--text-dark); border-color: var(--areia-deep); }
  /* CTA inside mobile open menu */
  .nav__mobile-cta {
    display: none;
    margin-top: .5rem;
    text-align: center;
    border-bottom: none !important;
  }
  .nav__links.open .nav__mobile-cta { display: flex; }

  /* Hero */
  .hero__content { padding-block: 7rem 4rem; gap: 2rem; }
  .hero__logo-aside img { width: clamp(120px, 16vw, 200px); }
  .hero__actions { flex-direction: column; gap: .75rem; }
  .hero__actions .btn { justify-content: center; width: 100%; max-width: 320px; }

  /* Valores */
  .proposito__valores { grid-template-columns: 1fr; }

  /* Sobre */
  .sobre__quote { padding: 1.5rem; }

  /* Cards full-width */
  .jornadas__grid,
  .depoimentos__track,
  .doc__grid { max-width: 100%; }

  /* Instagram mosaic simpler on tablet */
  .mosaic__grid {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    max-width: 420px;
    margin-inline: auto;
  }
  .mosaic__tile--1 { grid-column: 1; grid-row: 1 / 3; }

  /* Contato canais */
  .contato__canais { flex-direction: column; align-items: center; gap: 1rem; }
  .contato__form { padding: 1.75rem 1.25rem; }
}

/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Typography */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.15rem; }

  /* Nav */
  .nav { padding: 1rem 0; }
  .nav__logo img { height: 44px; }
  .nav.scrolled .nav__logo img { height: 36px; }

  /* Hero */
  .hero__content { padding-block: 6rem 3.5rem; flex-direction: column; gap: 1.5rem; }
  .hero__logo-aside { order: -1; }
  .hero__logo-aside img { width: clamp(100px, 40vw, 160px); }
  .hero__eyebrow { font-size: .72rem; }

  /* Steps */
  .step { padding: 1.5rem 1rem; }
  .step__number { font-size: 2.8rem; }

  /* Cards */
  .jornada-card__texture { height: 140px; }
  .jornada-icon { width: 60px; height: 60px; }
  .jornada-icon--img { width: 60px; height: 60px; }
  .jornada-card__body, .doc-card__body { padding: 1.25rem; }
  .doc-card__icon { padding: 1.5rem 1.5rem .75rem; }
  .doc-icon { width: 48px; height: 48px; }

  /* Sua Jornada */
  .servicos__destaque { grid-template-columns: 60px 1fr; gap: 1.25rem; padding: 1.75rem; }
  .servicos__destaque-icon { width: 60px; height: 60px; }
  .servicos__destaque-icon svg { width: 30px; height: 30px; }

  /* Depoimento */
  .depoimento { padding: 1.5rem; }

  /* Sua Jornada — mobile */
  .servicos__destaque { grid-template-columns: 1fr; padding: 1.5rem; }
  .servicos__destaque-icon { display: none; }

  /* Instagram */
  .instagram__mosaic { display: none; }
  .instagram__inner { grid-template-columns: 1fr; }

  /* Contato */
  .contato__inner { text-align: left; }
  .contato__form { padding: 1.25rem; }
  .form-group input,
  .form-group textarea { font-size: 1rem; } /* prevent zoom on iOS */

  /* Footer */
  .footer__links { flex-wrap: wrap; gap: .5rem; }
}

/* ── 360px ──────────────────────────────────────────────── */
@media (max-width: 360px) {
  h1 { font-size: 2rem; }
  .btn { padding: .75rem 1.25rem; font-size: .8rem; }
  .hero__actions .btn { max-width: 100%; }
}
