/* =============================================
   PRISCILA CHECOLI — style.css
   ============================================= */

/* ── Variáveis ── */
:root {
  --petrol:    #3F5D6B;
  --petrol-dk: #2e4450;
  --sage:      #A8B5A2;
  --sand:      #F5F1EB;
  --beige:     #D8C9B8;
  --graphite:  #2F3133;
  --terra:     #C27A5A;
  --terra-dk:  #a86444;
  --white:     #FFFFFF;
  --text:      #2F3133;
  --text-muted:#6b7280;
  --border:    #e4ddd4;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(47,49,51,.06), 0 1px 2px rgba(47,49,51,.04);
  --shadow-md:  0 4px 16px rgba(47,49,51,.08), 0 2px 6px rgba(47,49,51,.05);
  --shadow-lg:  0 12px 40px rgba(47,49,51,.12), 0 4px 12px rgba(47,49,51,.06);

  --transition: 0.25s ease;
  --max-w: 1180px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Tipografia base ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--petrol);
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--lg { padding: 1rem 2.4rem; font-size: .95rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--terra-dk);
  border-color: var(--terra-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,122,90,.3);
}

.btn--outline {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--petrol);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--light {
  background: var(--white);
  color: var(--petrol);
  border-color: var(--white);
}
.btn--light:hover, .btn--light:focus-visible {
  background: var(--sand);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover, .btn--outline-light:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 72px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--petrol);
  line-height: 1;
}
.logo__title {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.header__nav { margin-inline-start: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--petrol);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--petrol);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  background: var(--sand);
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 8rem 5rem;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(168,181,162,.25) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(63,93,107,.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--petrol);
  margin-bottom: 1.5rem;
}

.hero__subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--petrol);
  box-shadow: var(--shadow-sm);
}

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

/* Foto hero */
.hero__image { position: relative; }
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 580px;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__photo-accent {
  position: absolute;
  inset-block-end: -16px;
  inset-inline-end: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--sage);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: .5;
}
.hero__floating-card {
  position: absolute;
  inset-block-end: 2rem;
  inset-inline-start: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.floating-card__number {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}
.floating-card__label {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  max-width: 110px;
  line-height: 1.4;
  margin-top: .25rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--petrol), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.1); }
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  padding-block: 7rem;
  background: var(--white);
}
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.sobre__photo-wrap {
  border-radius: 0 var(--radius-xl) var(--radius-xl) var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.sobre__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre__credenciais {
  background: var(--sand);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.credencial {
  flex: 1;
  text-align: center;
}
.credencial__sigla {
  display: block;
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--petrol);
  line-height: 1;
}
.credencial__desc {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .2rem;
  line-height: 1.3;
}
.credencial__divider {
  width: 1px;
  height: 36px;
  background: var(--beige);
  flex-shrink: 0;
}

.sobre__content .section-title { margin-bottom: 1.5rem; }
.sobre__text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
.sobre__text p:last-child { margin-bottom: 2rem; }

/* =============================================
   NÚMEROS
   ============================================= */
.numeros {
  background: var(--petrol);
  padding-block: 2.25rem;
}
.numeros__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.numero-item {
  text-align: center;
}
.numero-item__valor {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.numero-item__unidade {
  font-size: .85rem;
  color: var(--sage);
  margin-left: .15rem;
}
.numero-item__label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
  max-width: 150px;
  margin-inline: auto;
}
.numero-item__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* =============================================
   ATENDIMENTOS
   ============================================= */
.atendimentos {
  padding-block: 7rem;
  background: var(--sand);
}
.atendimentos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.atendimento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.atendimento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.atendimento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.atendimento-card:hover::before { transform: scaleX(1); }

.atendimento-card__icon {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  margin-bottom: 1.25rem;
}
.atendimento-card__title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: .75rem;
}
.atendimento-card__text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.atendimento-card__lista {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.atendimento-card__lista li {
  font-size: .83rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.atendimento-card__lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  background: var(--terra);
  border-radius: 50%;
}

/* =============================================
   CTA MEIO
   ============================================= */
.cta-meio {
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-dk) 100%);
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
}
.cta-meio::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,181,162,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-meio__inner { text-align: center; position: relative; }
.cta-meio__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-meio__text {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* =============================================
   ABORDAGEM
   ============================================= */
.abordagem {
  padding-block: 7rem;
  background: var(--white);
}
.abordagem__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.abordagem__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.abordagem__pilares { display: flex; flex-direction: column; gap: 1.75rem; }
.pilar { display: flex; gap: 1rem; align-items: flex-start; }
.pilar__icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  flex-shrink: 0;
}
.pilar__title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: .35rem;
}
.pilar__text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

.abordagem__aside { display: flex; flex-direction: column; gap: 2rem; }

.abordagem__quote {
  background: var(--sand);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 2rem 2rem 2rem 2.5rem;
}
.abordagem__quote p {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--petrol);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.abordagem__quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  color: var(--petrol);
  display: block;
}
.abordagem__quote span {
  font-size: .78rem;
  color: var(--text-muted);
  display: block;
  margin-top: .2rem;
}

.abordagem__winnicott {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.abordagem__winnicott h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: .75rem;
}
.abordagem__winnicott p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   O ESPAÇO
   ============================================= */
.espaco {
  padding-block: 7rem;
  background: var(--beige);
}

.espaco__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.espaco__desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: .75rem;
}

.espaco__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: .875rem;
  overflow: hidden;
}

.espaco__foto {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--sand);
  min-height: 0;
  min-width: 0;
}

.espaco__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.espaco__foto:hover img {
  transform: scale(1.04);
}


/* =============================================
   INSTAGRAM
   ============================================= */
.instagram {
  padding-block: 7rem;
  background: var(--white);
}

.instagram__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

/* Painel de info lateral */
.instagram__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.instagram__info .section-title {
  margin-bottom: 0;
}
.instagram__desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.instagram__handle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--petrol);
  width: fit-content;
  transition: all var(--transition);
}
.instagram__handle:hover {
  border-color: var(--petrol);
  background: var(--sand);
}
.instagram__handle-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.instagram__handle-icon { color: white; }
.instagram__handle-icon svg { stroke: white; }

/* Grid 3×2 de fotos */
.instagram__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: .75rem;
  height: 480px;
}

/* Posts individuais */
.insta-post {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--beige);
  display: block;
  height: 100%;
}
.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.insta-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(63,93,107,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-post:hover img { transform: scale(1.05); }
.insta-post:hover .insta-post__overlay { opacity: 1; }

/* =============================================
   PARA QUEM (removido — estilos mantidos para compatibilidade)
   ============================================= */
.para-quem {
  padding-block: 7rem;
  background: var(--sand);
}
.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pq-item:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}
.pq-item__dot {
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55em;
}
.pq-item p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  padding-block: 7rem;
  background: var(--white);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.diferencial-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.diferencial-card:hover {
  border-color: var(--petrol);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.diferencial-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sand), var(--beige));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  margin-bottom: 1.25rem;
}
.diferencial-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: .6rem;
}
.diferencial-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   LOCAIS
   ============================================= */
.locais {
  padding-block: 7rem;
  background: var(--sand);
}
.locais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.local-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.local-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}
.local-card--online .local-card__header { background: var(--petrol); }
.local-card--online .local-card__header h3,
.local-card--online .local-card__icon { color: var(--white); }
.local-card--online .local-card__icon { background: rgba(255,255,255,.15); }

.local-card__header {
  background: var(--beige);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.local-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  flex-shrink: 0;
}
.local-card__header h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--petrol);
}
.local-card__body { padding: 1.75rem 2rem; }
.local-card__disponivel {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .5rem;
}
.local-card__body ul { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.local-card__body li {
  font-size: .9rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.local-card__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: .8rem;
  font-weight: 700;
}
.local-card__endereco {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: .75rem;
}
.local-card__desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.local-card__nota {
  font-size: .8rem;
  color: var(--terra);
  background: rgba(194,122,90,.08);
  border-radius: var(--radius-sm);
  padding: .6rem .85rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.local-card__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--petrol);
  transition: color var(--transition);
}
.local-card__link:hover { color: var(--terra); }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: linear-gradient(135deg, var(--petrol-dk) 0%, var(--petrol) 100%);
  padding-block: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,181,162,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-inline: auto;
}
.cta-final__text {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.cta-final__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* =============================================
   CONTATO / FORMULÁRIO
   ============================================= */
.contato {
  padding-block: 7rem;
  background: var(--white);
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contato__info .section-title { margin-bottom: 1rem; }
.contato__info > p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contato__canais { display: flex; flex-direction: column; gap: 1rem; }
.contato__canal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.contato__canal:hover {
  border-color: var(--petrol);
  box-shadow: var(--shadow-sm);
  background: var(--sand);
}
.contato__canal-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--petrol);
  flex-shrink: 0;
}
.contato__canal-label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contato__canal-valor {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--petrol);
  margin-top: .1rem;
}

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row--2col { flex-direction: row; }
.form__group { display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.form__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: .02em;
}
.form__label span { color: var(--terra); }
.form__input {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(63,93,107,.1);
}
.form__input.has-error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224,82,82,.1);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__error {
  font-size: .78rem;
  color: #e05252;
  min-height: 1em;
  display: block;
}
.form__hint {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .5rem;
}
#btn-submit .btn__icon { transition: transform var(--transition); }
#btn-submit:hover .btn__icon { transform: translateX(3px); }
#btn-submit.loading {
  opacity: .7;
  pointer-events: none;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--graphite);
  padding-top: 4.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__name {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer__role {
  font-size: .8rem;
  color: var(--sage);
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 320px;
}
.footer__nav-title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__contato-lista { display: flex; flex-direction: column; gap: .65rem; }
.footer__contato-lista a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__contato-lista a:hover { color: var(--white); }
.footer__bottom {
  padding-block: 1.5rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a {
  color: var(--sage);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--white); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wpp-float {
  position: fixed;
  inset-block-end: 2rem;
  inset-inline-end: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* =============================================
   ANIMAÇÕES ON-SCROLL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   RESPONSIVIDADE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner { gap: 3rem; }
  .sobre__inner { gap: 3rem; }
  .abordagem__inner { gap: 3rem; }
  .contato__inner { gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .header__nav {
    position: fixed;
    inset-block-start: 72px;
    inset-inline: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
  }
  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__list { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .nav__link { font-size: 1rem; }
  .header__cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero__image { order: -1; max-width: 340px; margin-inline: auto; }
  .hero__subheadline { margin-inline: auto; }
  .hero__badges { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__floating-card { inset-inline-start: 0; }
  .hero__photo-accent { display: none; }

  /* Sobre */
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__image { max-width: 380px; margin-inline: auto; }

  /* Números */
  .numeros__inner { gap: 2.5rem; }
  .numero-item__divider { display: none; }
  .numeros__inner { justify-content: center; }

  /* Abordagem */
  .abordagem__inner { grid-template-columns: 1fr; }

  /* Contato */
  .contato__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form__row--2col { flex-direction: column; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  /* Espaço mobile */
  .espaco__gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .espaco__foto { aspect-ratio: 1; height: auto; }

  /* Instagram mobile: empilhado */
  .instagram__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instagram__mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
  .insta-post { aspect-ratio: 1; height: auto; }
  .instagram { padding-block: 4.5rem; }

  /* Seções */
  .atendimentos,
  .sobre,
  .diferenciais,
  .locais,
  .contato { padding-block: 4.5rem; }
  .cta-meio, .cta-final { padding-block: 3.5rem; }
  .numeros { padding-block: 2rem; }

  /* Atendimentos: 1 coluna em mobile */
  .atendimentos__grid { grid-template-columns: 1fr; }

  /* Credenciais sobre */
  .sobre__credenciais { flex-wrap: wrap; justify-content: center; }
  .credencial__divider { display: none; }

  /* Seção CTA final */
  .cta-final__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .badge { font-size: .75rem; }
  .wpp-float { inset-block-end: 1.25rem; inset-inline-end: 1.25rem; }
}

/* Print */
@media print {
  .header, .wpp-float, .hero__scroll-hint { display: none; }
  .hero { min-height: auto; padding-block: 3rem; }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.25); }
.lightbox__prev { left: 1.25rem; }
.lightbox__next { right: 1.25rem; }

/* tornar fotos do espaço clicáveis */
.espaco__foto { cursor: pointer; }
