/* Página inicial - layout com header, hero, serviços, CTA, footer */

:root {
  --blue-dark: #5A6E80;
  --blue-medium: #6E8A9E;
  --blue-light: #E8EDF1;
  --accent: #7E9AAF;
  --accent-light: #9AB5C5;
  --accent-dark: #627E92;
  --white: #FAFAFA;
  --text-dark: #2E2E2E;
  --text: #2E2E2E;
  --text-muted: #5a5a5a;
}

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

html {
  font-size: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  padding-top: 5.125rem; /* espaço para o header fixo (escala com zoom) */
  overflow-x: hidden;
  min-width: 0;
}

/* Top section: fundo branco para header + hero split */
.top-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  max-width: 100vw;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.hero__img {
  /* hero image: preenche o bloco com object-fit, não redimensionar fora */
  max-width: 100%;
}

/* Header – fixo no topo; o conteúdo passa por trás ao fazer scroll */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header--light {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: #1a1a1a;
}

/* Só nas páginas internas (não no Início): header com a mesma letra e tamanho que na página Início */
body.inner-page .header {
  font-family: 'Inter', sans-serif !important;
}
body.inner-page .header .logo,
body.inner-page .header .logo-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 500;
}
body.inner-page .header .logo {
  font-weight: 600;
}
body.inner-page .header .nav a,
body.inner-page .header .nav .btn,
body.inner-page .header .btn--header,
body.inner-page .header .mobile-menu-menu a {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  color: inherit;
  text-decoration: none;
}

.logo--light {
  color: #1a1a1a;
}

.logo--light .logo-icon {
  filter: brightness(0) opacity(0.9);
}

.logo-icon,
.site-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-text--underline {
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav--light a {
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 500;
}

.nav--light a:hover {
  color: var(--blue-medium);
  text-decoration: underline;
}

/* Ícones de contacto no header (mensagem, email, telefone) */
.header-contact-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-contact-icons a {
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.header-contact-icons a:hover {
  color: var(--blue-medium);
}

.nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  cursor: pointer;
  color: #1a1a1a;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu.is-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu.is-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.mobile-menu.is-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  min-width: 200px;
  padding: 1rem;
  background: rgba(98, 126, 146, 0.98);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 20;
}

.mobile-menu.is-open .mobile-menu-menu {
  display: flex;
}

.mobile-menu-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

.mobile-menu-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-menu .btn,
.mobile-menu-menu .btn--header {
  text-align: center;
  background: var(--accent-light) !important;
  color: #fff !important;
}

.mobile-menu-menu--light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.mobile-menu-menu--light a {
  color: #2E2E2E;
}

/* Botão “Marcar Consulta” no header – azul original da home (accent-light) em todas as páginas (sobrepõe .nav .btn verde do style.css) */
.header .nav .btn,
.header .nav .btn--header,
.btn--header {
  padding: 10px 20px;
  border-radius: 0;
  background: var(--accent-light) !important;
  color: #fff !important;
  border: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.header .nav .btn:hover,
.header .nav .btn--header:hover,
.btn--header:hover {
  background: var(--accent) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Botão “Marcar consulta” igual ao da página de início (em todas as páginas) */
.btn--green,
a.btn.btn--green {
  padding: 10px 20px;
  border-radius: 0;
  background: var(--blue-dark) !important;
  color: #fff !important;
  border: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn--green:hover,
a.btn.btn--green:hover {
  background: var(--blue-medium) !important;
  color: #fff !important;
  text-decoration: none;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 0;
  background: var(--blue-dark) !important;
  color: #fff !important;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: var(--blue-medium) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Hero split – proporção fixa (2:1) para não cortar ao mudar zoom; altura cresce com a largura */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 18rem;
  position: relative;
  overflow: hidden;
}

.hero__left {
  background: var(--accent-dark);
  color: #fff;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero__inner {
  display: inline-block;
  text-align: left;
  max-width: 100%;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.85rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__accent-line {
  display: block;
  width: 7.5ch;
  height: 4px;
  background: var(--accent-light);
  margin: 0.75rem 0;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.hero__btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: #fff;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero__btn:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
  text-decoration: none;
}

.hero__right {
  height: 100%;
  min-height: 0;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.hero__right .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .hero--split {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    min-height: 0;
  }
  .hero__left {
    padding: 1rem 1.5rem;
    min-height: 14rem;
  }
  .hero__right {
    display: block;
    min-height: 14rem;
  }
  .hero__right .hero__img {
    width: 100%;
    height: 100%;
    min-height: 14rem;
    object-fit: cover;
    object-position: center;
  }
  .hero__title {
    font-size: 2.1rem;
  }
}

/* Sobre nós – fundo acinzentado, imagem à esquerda (quadrado), texto à direita */
.about-section {
  padding: 80px 0 100px;
  background: #F0F2F4;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
  max-width: none;
}

.about-section__image-wrap {
  width: 100%;
  max-width: 26rem; /* foto da sessão de terapia maior */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin: 4.5rem auto 0;
}

.about-section__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section__content {
  max-width: 32rem;
  padding: 0 8% 2rem 5%;
  margin: 0 0 0 2.5rem;
  box-sizing: border-box;
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-section__content .about-section__line {
  margin-left: 0;
  margin-right: auto;
}

.about-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.about-section__line {
  display: block;
  width: 7.5ch;
  height: 4px;
  background: var(--accent-light);
  margin: 0.75rem 0 1.25rem 0;
}

.about-section__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
}

.about-section__text + .about-section__text {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-section__image-wrap {
    order: -1;
    width: 100%;
    max-width: 22rem; /* foto maior no telemóvel */
    margin: 0 auto 1rem;
  }
  .about-section__content {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5%;
    padding-right: 5%;
  }
  .about-section__title {
    font-size: 1.6rem;
  }
}

/* Intro */
.intro {
  padding: 60px 0 80px;
  background: var(--white);
  text-align: center;
  position: relative;
}

.intro .container {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.intro p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Services – fundo azul-esverdeado, título, linha, cards com ícone em cima (cinza) e texto em baixo (azul) */
.services {
  padding: 60px 0 80px;
  background: var(--accent-dark);
  position: relative;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__title {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  text-align: center;
}

.services__line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-light);
  margin: 0 auto 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 14rem);
  gap: 1.5rem;
  justify-content: center;
  max-width: 100%;
}

.service-card {
  max-width: 14rem;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card::after {
  content: "";
  display: block;
  height: 8px;
  background: #f0f0f0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.service-card__top {
  background: #f0f0f0;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__icon--heart .heart-bg {
  fill: var(--accent);
}
.service-card__icon--heart .heart-check {
  fill: none;
  stroke: white;
}

.service-card__bottom {
  background: var(--accent-dark);
  padding: 1rem 1rem 1.1rem;
  text-align: center;
  min-height: 0;
  flex-grow: 1;
}

.service-card__bottom h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.service-card__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.service-card__bottom .service-card__hint {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.9;
  font-style: italic;
}

/* Modal – texto ao carregar no card Psicologia Clínica */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal[hidden] {
  display: none !important;
}

.modal.is-open[hidden] {
  display: flex !important;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__content {
  position: relative;
  background: #fff;
  max-width: 36rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.75rem 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: #f0f0f0;
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal__close:hover {
  background: #e0e0e0;
}

.modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 2rem 1rem 0;
  padding-right: 1rem;
}

.modal__body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.modal__body p {
  margin: 0 0 1rem;
}

.modal__body p:last-child {
  margin-bottom: 0;
}

.modal__actions {
  margin: 1.5rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Approach – texto centrado abaixo dos cards */
.approach {
  padding: 55px 0 80px;
  margin-top: -56px;
  background: var(--white);
  text-align: center;
  position: relative;
}

.approach .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.approach h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.approach p {
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA */
.cta {
  background: var(--white);
  color: var(--text-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.cta h2 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.cta .btn-primary {
  background: var(--blue-dark);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.cta .btn-primary:hover {
  background: var(--blue-medium);
  color: white;
  text-decoration: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  padding: 50px 0;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  transition: opacity 0.2s;
  min-width: 140px;
}

.footer-contact:hover {
  opacity: 0.85;
  color: var(--blue-dark);
  text-decoration: none;
}

.footer-contact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-contact-icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  object-fit: contain;
}

/* Responsividade básica */
@media (max-width: 1024px) {
  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  header .nav {
    display: none;
  }
  .header-contact-icons {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header .nav {
    display: none;
  }
  .header-contact-icons {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .shape,
  .wave,
  .decorative-element {
    display: none;
  }
  .services-grid {
    display: block;
  }
  .services-grid .service-card {
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid .service-card {
    justify-self: center;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Páginas de conteúdo (ex.: Psicologia Clínica) – mesmo design, letras e cores da home */
.section.content-page {
  font-family: 'Inter', sans-serif;
  padding: 3rem 0 4rem;
  background: var(--white);
}

.content-page .wrap {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.content-page .page-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.content-page .page-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}

.content-page p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-page a {
  font-family: 'Inter', sans-serif;
  color: var(--accent);
  font-weight: 500;
}

.content-page a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.content-page .btn--green,
.content-page .btn {
  font-family: 'Inter', sans-serif;
  display: inline-block;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--blue-medium);
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.5rem;
}

.content-page .btn--green:hover,
.content-page .btn:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
}

/* Botão Marcar consulta nas páginas de serviço (Neuropsicologia, etc.) = igual ao da Psicologia Clínica: retangular, sem mudar de cores */
.content-page a.btn-primary,
.content-page .btn-primary {
  border-radius: 0 !important;
  background: var(--blue-dark) !important;
  color: #fff !important;
}
.content-page a.btn-primary:hover,
.content-page .btn-primary:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Página Sobre – cores e tipo de letra da página de início */
body.inner-page {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-dark);
}

body.inner-page main .section {
  padding: 3rem 0;
  background: var(--white);
}

body.inner-page main .section:first-of-type {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Page-hero com imagem (Serviços, Contactos): manter grid. Sem imagem (Sobre): block */
body.inner-page .page-hero:not(:has(.hero__img)) {
  display: block;
  text-align: left;
}

body.inner-page .page-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body.inner-page .page-hero .about-section__line {
  margin-left: 0;
  margin-right: auto;
}

body.inner-page .page-intro {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.65;
}

body.inner-page .section--alt {
  background: #F0F2F4;
  border-top: none;
  border-bottom: none;
  padding: 3.5rem 0;
}

/* Serviços: secção "Áreas de intervenção" mantém fundo escuro da home */
body.inner-page .section--alt.services {
  background: var(--accent-dark);
  padding: 60px 0 80px;
}

body.inner-page .section-title {
  margin-bottom: 1.5rem;
}

body.inner-page .section-title h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body.inner-page .cards {
  gap: 1.5rem;
}

body.inner-page .card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
}

body.inner-page .card h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

body.inner-page .card h3::before {
  display: none;
}

body.inner-page .card p {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
}

body.inner-page .card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Serviços: secção "Quer saber mais?" e Contactos: títulos e texto com cores da home */
body.inner-page main .section h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

body.inner-page main .section .wrap.text-center .page-intro,
body.inner-page main .section .wrap.text-center p {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif !important;
}

/* Contactos: área "Fale comigo" – mesma letra e cores da home */
body.inner-page .contact-grid h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

body.inner-page .contact-grid p,
body.inner-page .contact-grid .page-intro {
  font-family: 'Inter', sans-serif !important;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
}

body.inner-page .contact-grid a {
  font-family: 'Inter', sans-serif !important;
  color: var(--accent);
  font-weight: 500;
}

body.inner-page .contact-grid a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

body.inner-page .contact-grid .card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

body.inner-page .contact-grid .form-group label {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-dark);
}

body.inner-page .contact-grid .form-group input,
body.inner-page .contact-grid .form-group textarea {
  font-family: 'Inter', sans-serif !important;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

body.inner-page .contact-grid .form-group input:focus,
body.inner-page .contact-grid .form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126, 154, 175, 0.2);
}

/* Botão Enviar do formulário = mesmo estilo que Marcar consulta (retangular, mesma cor) */
body.inner-page form .btn--primary {
  font-family: 'Inter', sans-serif !important;
  border-radius: 0;
  background: var(--blue-dark) !important;
  color: #fff !important;
  padding: 12px 28px;
  font-weight: 600;
}

body.inner-page form .btn--primary:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Footer nas páginas de conteúdo – mesmo estilo da home */
.site-footer {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2.5rem 0;
  margin-top: 0;
}

.site-footer a {
  color: var(--blue-dark);
}

.site-footer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer .footer-grid {
  font-family: 'Inter', sans-serif;
}

.site-footer .footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.site-footer .footer-grid p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
