@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

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

:root {
  --white:   #FFFFFF;
  --beige:   #EDE8DF;
  --green:   #687A6A;
  --green-l: #7A8E7C;
  --grey:    #7A6E64;
  --grey-l:  #A89E94;
  --dark:    #2C2218;
  --radius:  3px;
  --shadow:  0 2px 28px rgba(104,122,106,.08);

  --cream:   #F7F3EE;
  --cream-d: #EDE8DF;
  --sand:    #DFD5C8;
  --sage:    #687A6A;
  --sage-l:  #7A8E7C;
  --stone:   #7A6E64;
  --stone-l: #A89E94;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.78;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: normal; letter-spacing: -.02em; color: var(--sage); }
h1 { font-size: clamp(2rem,5vw,3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: .4rem; }
h3 { font-size: 1.15rem; margin-bottom: .5rem; }
p  { color: var(--stone); }
a  { color: inherit; text-decoration: none; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: 1rem;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .78rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .88rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  border: none;
}
.btn-solid { background: var(--sage); color: var(--white); }
.btn-solid:hover { background: var(--sage-l); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-green {
  background: transparent;
  color: var(--sage);
  border: 1.5px solid var(--sage);
}
.btn-outline-green:hover { background: var(--sage); color: var(--white); }
.btn-text {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: .92rem;
  font-style: italic;
  color: var(--sage);
  border-bottom: 1px solid rgba(74,92,68,.3);
  padding-bottom: 1px;
  transition: opacity .2s, border-color .2s;
}
.btn-text:hover { opacity: .65; border-color: var(--sage); }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,243,238,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(74,92,68,.1); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sage); }
.nav-cta {
  margin-left: .5rem;
  background: transparent !important;
  color: var(--sage) !important;
  border: 1px solid var(--sage) !important;
  font-size: .8rem;
  padding: .55rem 1.3rem;
}
.nav-cta:hover {
  background: var(--sage) !important;
  color: var(--white) !important;
  transform: none !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  margin: -6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage);
  transition: transform .3s, opacity .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 1.5rem;
  gap: 1.2rem;
  border-top: 1px solid var(--sand);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone);
  padding: .5rem 0;
  display: block;
}
.mobile-menu .btn { align-self: flex-start; }
.mobile-menu .btn-solid { color: var(--white); }

/* ── HOME HERO (split: foto esquerda / texto direita) ── */
.home-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 100vh;
  margin-top: 68px;
}
.home-hero-photo {
  position: relative;
  overflow: hidden;
}
.home-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.home-hero-text {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 5rem 4.5rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.home-hero-text::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 420px;
  height: 420px;
  background: url('Fotografias/METANOIA-logotipo-transparente.png') center/contain no-repeat;
  opacity: .07;
  pointer-events: none;
}
.home-hero-text-inner { max-width: 520px; position: relative; z-index: 1; }
.home-hero-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .67rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: 1.2rem;
  display: block;
}
.home-hero-name {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--dark);
  font-weight: normal;
  letter-spacing: -.03em;
  margin-bottom: .5rem;
}
.home-hero-subtitle {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--sand);
}
.home-hero-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.82;
}
.home-hero-text p.quote {
  font-style: italic;
  color: var(--sage);
  font-size: 1.22rem;
  line-height: 1.65;
  padding-left: 1.1rem;
  border-left: 2px solid var(--sage);
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
.home-hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
@media(max-width:960px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-photo { position: relative; height: 65vw; max-height: 500px; }
  .home-hero-photo img { object-position: center 35%; }
  .home-hero-text { padding: 3.5rem 2rem; }
  .home-hero-text-inner { max-width: none; }
}
@media(max-width:520px) {
  .home-hero-text { padding: 2.5rem 1.5rem; }
  .home-hero-photo { height: 95vw; }
  .home-hero-photo img { object-position: center 30%; }
}

/* ── PAGE HERO (páginas internas — claro) ── */
.page-hero {
  background: var(--cream-d);
  padding: 8rem 0 4.5rem;
  margin-top: 68px;
  border-bottom: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: max(1.5rem, calc(50% - 500px));
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  background: url('Fotografias/METANOIA-logotipo-transparente.png') center/contain no-repeat;
  opacity: .09;
  pointer-events: none;
}
.page-hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.page-hero .section-label { color: var(--stone-l); }
.page-hero h1 { color: var(--dark); font-size: clamp(2rem,4vw,3rem); }
.page-hero-sub {
  color: var(--stone);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: .8rem;
  max-width: 560px;
}

/* ── SOBRE / PERSONAL ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-img-wrap { position: relative; }
.sobre-img-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  z-index: 0;
}
.sobre-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: grayscale(5%);
}
.sobre-text { padding: .5rem 0; }
.sobre-text p { margin-bottom: 1.4rem; font-size: 1.02rem; }
.valores {
  display: flex;
  gap: 2rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}
.valor-item { text-align: center; flex: 1; }
.valor-item strong {
  display: block;
  color: var(--sage);
  font-size: 1rem;
  font-style: italic;
  font-weight: normal;
}
.valor-item span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-l);
}

/* ── ESPECIALIDADES ── */
.esp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.esp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--sand);
  transition: box-shadow .25s, transform .2s;
}
.esp-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.esp-num {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--stone-l);
  margin-bottom: .9rem;
}
.esp-card h3 { font-size: 1.05rem; color: var(--sage); margin-bottom: .6rem; }
.esp-card p  { font-size: .9rem; }

/* ── TIMELINE ── */
.timeline { position: relative; margin-top: 3.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 120px;
  width: 1px;
  background: var(--sand);
}
.tl-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.8rem;
  position: relative;
}
.tl-year {
  min-width: 90px;
  text-align: right;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--stone-l);
  padding-top: .2rem;
}
.tl-dot {
  position: absolute;
  left: 112px;
  top: .45rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sage);
  flex-shrink: 0;
}
.tl-body { padding-left: 2.5rem; }
.tl-body h3 { font-size: 1rem; color: var(--dark); margin-bottom: .25rem; }
.tl-body p  { font-size: .9rem; }

/* ── ARTIGOS ── */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.artigo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: box-shadow .25s, transform .2s;
}
.artigo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.artigo-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.artigo-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.artigo-card:hover .artigo-thumb img { transform: scale(1.04); }
.artigo-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artigo-thumb-1 { background: linear-gradient(135deg, #4A5C44 0%, #5E7357 100%); }
.artigo-thumb-2 { background: linear-gradient(135deg, #3e4f3a 0%, #4A5C44 100%); }
.artigo-thumb-3 { background: linear-gradient(135deg, #2e3d2a 0%, #4A5C44 100%); }
.artigo-thumb-symbol {
  font-size: 3rem;
  opacity: .18;
  color: var(--white);
  font-style: italic;
}
.artigo-body { padding: 1.8rem; }
.artigo-meta {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: .8rem;
}
.artigo-body h3 { font-size: 1.08rem; color: var(--sage); margin-bottom: .7rem; }
.artigo-body p  { font-size: .9rem; margin-bottom: 1.4rem; }

/* ── CONTACTO ── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contacto-info h2 { margin-bottom: 1rem; }
.contacto-info > p { margin-bottom: 2.4rem; }
.info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
}
.info-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: .3rem;
}
.info-value { color: var(--dark); font-size: 1rem; }
.info-value a { color: var(--sage); border-bottom: 1px solid rgba(74,92,68,.25); transition: opacity .2s; }
.info-value a:hover { opacity: .7; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,92,68,.07);
}
.form-group textarea { height: 140px; }
.form-msg {
  display: none;
  margin-top: 1rem;
  padding: .9rem 1.2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .85rem;
}
.form-msg.success { background: #edf2eb; color: var(--sage); border: 1px solid rgba(74,92,68,.2); }
.form-msg.error   { background: #fdf0f0; color: #c0392b; border: 1px solid rgba(192,57,43,.2); }

/* ── O SEU ESPAÇO ── */
.espaco-wrap {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: start;
  min-height: calc(100vh - 68px);
}
.espaco-gallery {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
}
.espaco-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.espaco-photo.active { opacity: 1; }
.espaco-gallery-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--cream) 100%);
  pointer-events: none;
}
.espaco-content {
  background: var(--cream);
  padding: 5rem 4.5rem 5rem 3rem;
}
.espaco-intro {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(74,92,68,.12);
}
.espaco-intro h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--forest);
  margin: .4rem 0 1rem;
}
.espaco-intro p {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 38ch;
}
.espaco-qs { display: flex; flex-direction: column; }
.espaco-q {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(74,92,68,.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.espaco-q.visible {
  opacity: 1;
  transform: translateY(0);
}
.espaco-q:last-child { border-bottom: none; }
.espaco-q h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.04rem;
  font-weight: 400;
  color: var(--sage);
  margin-bottom: .65rem;
  line-height: 1.45;
}
.espaco-q p {
  font-size: .93rem;
  line-height: 1.82;
  color: var(--stone);
  margin-bottom: .5rem;
}
.espaco-q p:last-child { margin-bottom: 0; }
@media(max-width:900px) {
  .espaco-content { padding: 3.5rem 2.5rem 3.5rem 2rem; }
}
@media(max-width:768px) {
  .espaco-wrap { grid-template-columns: 1fr; }
  .espaco-gallery {
    position: relative;
    top: 0;
    height: 65vw;
    max-height: 420px;
  }
  .espaco-gallery-fade {
    background: linear-gradient(to bottom, transparent 60%, var(--cream) 100%);
  }
  .espaco-content { padding: 2.5rem 1.6rem 3rem; }
  .espaco-intro h1 { font-size: 2rem; }
}

/* ── ÁREAS DE INTERVENÇÃO — ACORDEÃO ── */
.interv-accordion {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.interv-item {
  border-bottom: 1px solid rgba(74,92,68,.12);
}
.interv-item:first-child {
  border-top: 1px solid rgba(74,92,68,.12);
}
.interv-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity .2s;
}
.interv-trigger:hover { opacity: .65; }
.interv-trigger .interv-num {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .62rem;
  letter-spacing: .26em;
  color: var(--stone-l);
  min-width: 2.2rem;
  flex-shrink: 0;
}
.interv-trigger .interv-title {
  flex: 1;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--sage);
  font-weight: normal;
  letter-spacing: -.02em;
  transition: color .25s;
}
.interv-item.active .interv-trigger .interv-title { color: var(--dark); }
.interv-icon {
  font-size: 1.5rem;
  color: var(--stone-l);
  transition: transform .4s ease;
  flex-shrink: 0;
  line-height: 1;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
}
.interv-item.active .interv-icon { transform: rotate(45deg); }
.interv-panel {
  height: 0;
  overflow: hidden;
  transition: height .5s cubic-bezier(.4,0,.2,1);
}
.interv-panel-inner {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 5rem;
  padding-bottom: 3.5rem;
  align-items: start;
}
.interv-panel-text p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: .85rem;
}
.interv-panel-text p:last-child { margin-bottom: 0; }
.interv-panel-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.interv-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media(max-width:768px) {
  .interv-panel-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .interv-trigger { gap: 1rem; padding: 1.3rem 0; }
  .interv-accordion { padding: 2rem 1.2rem 4rem; }
}

/* ── CONTACTO HERO (foto de fundo) ── */
.contacto-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  margin-top: 68px;
  overflow: hidden;
}
.contacto-hero-bg {
  position: absolute;
  inset: 0;
  background: url('Fotografias/IMG_1279.jpeg') center/cover no-repeat;
  filter: brightness(.45) saturate(.7);
  z-index: 0;
}
.contacto-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  max-width: 620px;
  margin-left: max(1.5rem, calc(50vw - 560px));
}
.contacto-hero-content .section-label { color: rgba(255,255,255,.55); }
.contacto-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  margin-bottom: 1.4rem;
}
.contacto-hero-content p {
  color: rgba(255,255,255,.82);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.82;
  max-width: 520px;
}
.contacto-hero-cta { margin-top: 2.8rem; }
.contacto-hero-cta .btn-solid {
  padding: 1.1rem 3.2rem;
  font-size: 1rem;
}

/* ── TICKER DE TESTEMUNHOS ── */
.reviews-ticker {
  overflow: hidden;
  background: var(--sage);
  border-top: 1px solid #506052;
  border-bottom: 1px solid #506052;
  padding: 1.6rem 0;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: tickerScroll 50s linear infinite;
}
.reviews-ticker:hover .reviews-track { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  background: var(--white);
  border: 1px solid rgba(74,92,68,.22);
  border-radius: var(--radius);
  padding: 1.1rem 1.6rem;
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
}
.review-stars { color: #b8935a; font-size: .85rem; letter-spacing: .05em; }
.review-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--stone);
  font-style: italic;
}
.review-author {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--stone-l);
  text-transform: uppercase;
}

/* ── MAPA ── */
.contacto-map {
  line-height: 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.contacto-map iframe { display: block; width: 100%; }

/* ── CONTACTO INFO STRIP ── */
.contacto-strip {
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 2.8rem 0;
}
.contacto-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.contacto-strip-item {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 2rem;
  border-right: 1px solid var(--sand);
}
.contacto-strip-item:first-child { padding-left: 0; }
.contacto-strip-item:last-child  { border-right: none; }
.contacto-strip-item .info-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-l);
}
.contacto-strip-item .info-value { color: var(--dark); font-size: .95rem; line-height: 1.55; }
.contacto-strip-item .info-value a { color: var(--sage); transition: opacity .2s; }
.contacto-strip-item .info-value a:hover { opacity: .7; }
@media(max-width:1024px) {
  .contacto-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 0; }
  .contacto-strip-item { border-right: none; border-bottom: 1px solid var(--sand); padding: 0 0 1.5rem; }
  .contacto-strip-item:nth-child(3n) { border-right: none; }
  .contacto-strip-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width:640px) {
  .contacto-strip-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem 2rem; }
  .contacto-strip-item { border-bottom: none; padding: 0; }
  .contacto-strip { padding: 2.2rem 0; }
}

/* ── PAINEL MARCAR CONSULTA ── */
.marcacao-panel {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 3rem 2.8rem 3.2rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .25s, transform .2s, border-color .25s;
  user-select: none;
}
.marcacao-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(74,92,68,.25);
}
.marcacao-panel h2 { margin-top: .4rem; margin-bottom: 1.2rem; }
.marcacao-desc {
  font-size: .95rem;
  line-height: 1.82;
  color: var(--stone);
  flex: 1;
  margin-bottom: 2.2rem;
}
.marcacao-cta {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--sage);
  border-bottom: 1px solid rgba(74,92,68,.3);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: opacity .2s;
}
.marcacao-panel:hover .marcacao-cta { opacity: .65; }

/* ── MODAL MARCAR CONSULTA ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(44,34,24,.52);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-panel {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 3.5rem 3.5rem 2.8rem;
  position: relative;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--stone-l);
  line-height: 1;
  transition: color .2s;
  padding: .3rem .5rem;
}
.modal-close:hover { color: var(--dark); }
.modal-header {
  margin-bottom: 2.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--sand);
}
.modal-header h2 { margin-top: .4rem; }
.modal-step {
  display: flex;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(74,92,68,.1);
}
.modal-step:first-child { padding-top: 0; }
.modal-step:last-child { border-bottom: none; }
.modal-step-num {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--stone-l);
  min-width: 2rem;
  padding-top: .25rem;
  flex-shrink: 0;
}
.modal-step-content { flex: 1; }
.modal-step-content h3 {
  font-size: 1rem;
  color: var(--sage);
  margin-bottom: .55rem;
}
.modal-step-content p { font-size: .93rem; line-height: 1.82; margin-bottom: .8rem; }
.modal-step-content p:last-child { margin-bottom: 0; }
.modal-link {
  display: inline-block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--white);
  background: var(--sage);
  padding: .55rem 1.2rem;
  border-radius: var(--radius);
  margin-top: .8rem;
  transition: background .2s, transform .15s;
}
.modal-link:hover { background: var(--sage-l); transform: translateY(-1px); }
.modal-payment {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.modal-payment-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: .75rem 1.1rem;
}
.modal-payment-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-l);
  min-width: 8rem;
  flex-shrink: 0;
}
.modal-payment-value {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: .01em;
}
.modal-note {
  margin-top: 1.2rem;
  background: rgba(74,92,68,.07);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
}
.modal-note p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 0;
}
.modal-note strong { color: var(--dark); font-weight: normal; font-style: italic; }
.modal-footer {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--sand);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.modal-faq-hint {
  margin-top: 1.6rem;
  text-align: center;
  font-size: .82rem;
  color: var(--stone-l);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
}
.modal-faq-hint a {
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .01em;
  transition: opacity .2s;
}
.modal-faq-hint a:hover { opacity: .7; }

@media(max-width:640px) {
  .modal-panel { padding: 2.5rem 2.4rem 2rem; }
  .modal-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .modal-faq-hint { flex-direction: column; gap: .25rem; }
  .modal-payment-item { flex-direction: column; gap: .25rem; }
  .modal-payment-label { min-width: unset; }
}

/* ── CONSULTÓRIO PHOTO SECTION (sobre) ── */
.espaco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
}
.espaco-img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--cream-d);
}
.espaco-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.espaco-img-wrap:hover img { transform: scale(1.04); }
@media(max-width:900px) {
  .espaco-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .espaco-grid { grid-template-columns: 1fr; }
}

/* ── DIPLOMA FIGURE (sobre timeline) ── */
.diploma-fig {
  margin-top: 1.2rem;
  max-width: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.diploma-fig img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CONSULTÓRIO BANNER (contactos) ── */
.consultorio-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.consultorio-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(.9);
}
.consultorio-banner-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
@media(max-width:520px) {
  .consultorio-banner { height: 280px; }
  .consultorio-banner-caption { font-size: .9rem; white-space: normal; width: 90%; }
}

/* ── PÁGINA METANÓIA ── */
.mn-def-section {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
  margin-top: 68px;
}

/* Statement com fundo sofa */
.mn-statement {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 7rem;
  text-align: center;
  background: url('Fotografias/sofa.jpeg') center/cover no-repeat;
}
.mn-statement-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,22,16,.72);
  pointer-events: none;
}
.mn-statement-content {
  position: relative;
  z-index: 1;
}
.mn-statement-content .statement-main,
.mn-statement-content .statement-echo { color: var(--white); }
.mn-statement-content .statement-sub { color: rgba(255,255,255,.65); }
.mn-statement-intro.mn-statement-intro p { color: rgba(255,255,255,.75); }
.mn-statement-content .statement-intro { border-top-color: rgba(255,255,255,.18); }

/* Faixa de fotos estática (sem expand) */
.mn-photos-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mn-photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.mn-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.95) saturate(.88);
  transition: filter .5s ease;
}
.mn-photo-item:hover img {
  filter: brightness(1.02) saturate(1);
}
@media(max-width: 640px) {
  .mn-photos-strip { grid-template-columns: 1fr 1fr; }
  .mn-photo-item { aspect-ratio: 4/3; }
}

/* ── ESPAÇO METANÓIA (homepage section — kept for compatibility) ── */
.metanoia-section {
  background: var(--cream-d);
  border-top: 1px solid var(--sand);
}
.metanoia-intro {
  max-width: 1120px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5.5rem;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 6rem;
  align-items: center;
}
.metanoia-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.metanoia-logo-hero {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(74,92,68,.12));
}
.metanoia-greek {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: .8rem;
  display: block;
}
.metanoia-heading {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 1.4rem;
  letter-spacing: -.03em;
}
.metanoia-body {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--stone);
  margin-bottom: 1.2rem;
  max-width: 520px;
}
.metanoia-body:last-child { margin-bottom: 0; }

/* Galeria */
.metanoia-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 200px;
  gap: 5px;
}
.mg-item {
  overflow: hidden;
  background: var(--cream-d);
}
.mg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
  filter: brightness(.96) saturate(.9);
}
.mg-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.mg-a { grid-column: 1 / 6;  grid-row: 1; }
.mg-b { grid-column: 6 / 9;  grid-row: 1; }
.mg-c { grid-column: 9 / 13; grid-row: 1; }
.mg-d { grid-column: 1 / 7;  grid-row: 2; }
.mg-e { grid-column: 7 / 13; grid-row: 2; }

@media(max-width: 900px) {
  .metanoia-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem 4rem;
  }
  .metanoia-logo-hero { max-width: 220px; }
}
@media(max-width: 640px) {
  .metanoia-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mg-a { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
  .mg-b, .mg-c, .mg-d, .mg-e { grid-column: span 1; grid-row: auto; aspect-ratio: 4/3; }
  .metanoia-gallery { gap: 4px; }
}

/* ── STATEMENT STRIP (fundo claro) ── */
.statement-strip {
  background: var(--cream-d);
  padding: 6.5rem 0;
  text-align: center;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.statement-main {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--sage);
  font-style: italic;
  font-weight: normal;
  margin-bottom: .8rem;
  letter-spacing: -.01em;
}
.statement-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--stone-l);
  margin-bottom: .8rem;
}
.statement-echo {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--sage);
  font-style: italic;
  font-weight: normal;
  letter-spacing: -.01em;
}
.statement-intro {
  max-width: 600px;
  margin: 3.2rem auto 0;
  padding-top: 2.6rem;
  border-top: 1px solid var(--sand);
}
.statement-intro p {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
}
.statement-intro p:last-child { margin-bottom: 0; }

/* ── PHOTO STRIP (faixa de 3 fotografias) ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.photo-strip-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-strip-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.92) saturate(.88);
  transition: transform .6s ease, filter .4s ease;
}
.photo-strip-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
@media(max-width:640px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item { aspect-ratio: 16/9; }
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--sage);
  padding: 5rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: .8rem; }
.cta-strip p  { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── FOOTER ── */
footer {
  background: #2A3630;
  color: rgba(255,255,255,.55);
  padding: 1rem 0;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
}
.footer-logo {
  font-size: 0;
  display: inline-block;
  width: 52px;
  height: 46px;
  background: url('Fotografias/METANOIA-logotipo-transparente.png') center/contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: .65;
  flex-shrink: 0;
}
.footer-copy {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .76rem;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.footer-links a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .76rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: .65rem 1.3rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-linkedin:hover { background: var(--sage); color: #fff; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .sobre-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-wrap { max-width: 380px; margin: 0 auto; }
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .timeline::before { left: 70px; }
  .tl-year { min-width: 55px; font-size: .72rem; }
  .tl-dot  { left: 62px; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-right: 4px; }
  .nav-logo { margin-left: -4px; }
  .section { padding: 4.5rem 0; }
  .valores { flex-direction: column; gap: 1.2rem; }
  h1 { font-size: 2.1rem; }
}
@media(max-width:520px) {
  .artigos-grid { grid-template-columns: 1fr; }
  .esp-grid     { grid-template-columns: 1fr; }
  .timeline::before { left: 0; display: none; }
  .tl-item { flex-direction: column; gap: .4rem; }
  .tl-year { text-align: left; }
  .tl-dot  { display: none; }
  .tl-body { padding-left: 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 6.5rem 0 3rem; }
}
