/* ============================================================
   NEUROPSICOPEDAGOGA — Design System
   Paleta: bege claro, bege quente, marrom, crème
   Tipografia: Cormorant Garamond (display) + DM Sans (corpo)
   ============================================================ */

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

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #faf7f4;
  --bg-warm: #f0e9df;
  --bg-dark: #60381b;
  --brown: #6b3f1e;
  --brown-mid: #9a5e35;
  --brown-light: #c49a72;
  --cream: #e8d9c5;
  --text: #2c1f14;
  --text-mid: #6b5544;
  --text-light: #a08070;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 12px rgba(107, 63, 30, 0.08);
  --shadow-md: 0 8px 32px rgba(107, 63, 30, 0.13);
  --shadow-lg: 0 20px 60px rgba(107, 63, 30, 0.16);

  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Acessibilidade ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* ── Tipografia ──────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
h4 {
  font-size: 1.15rem;
}

p {
  color: var(--text-mid);
  font-weight: 300;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1rem;
}

/* ── Botões ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--cream);
  color: var(--brown);
}
.btn-light:hover {
  background: var(--bg-warm);
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3rem 0;
}

/* ── Header / Nav ────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: var(--trans);
}
.header.scrolled {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  height: var(--header-h);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brown);
  transition: var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-links .nav-cta {
  color: var(--bg);
}

.nav-links .nav-cta:hover {
  color: var(--bg);
}

.nav-links .nav-cta::after {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: var(--trans);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--trans);
    box-shadow: var(--shadow-md);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.05rem;
  }
  .nav-cta {
    margin-left: 0;
  }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 55%, var(--bg-warm) 100%);
  z-index: 0;
}
.hero-ornament {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 45vw, 560px);
  height: clamp(280px, 45vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1;
  max-width: 1100px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  margin-top: 1.5rem;
}
.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--text);
  text-align: center;
}
.hero h1 em {
  font-style: italic;
  color: var(--brown);
  text-align: center;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-weight: 300;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-light);
  flex-shrink: 0;
}

/* Animação de entrada */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.55s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Intro strip ─────────────────────────────────────────── */
.intro-strip {
  display: flex;
  align-items: center;
  padding: 4rem 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45)),
    url("images/a.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-strip-inner {
  display: flex;
  justify-content: center;
}

.intro-strip p {
  color: var(--bg);
  font-size: 1.7rem;
  font-weight: 500;
  max-width: 680px;
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
}

/* ── Sobre resumo (Home) ─────────────────────────────────── */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-home-img {
  position: relative;
}
.about-home-img .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-home-img::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 70%;
  height: 70%;
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-home-text .section-label {
  margin-bottom: 0.75rem;
}
.about-home-text h2 {
  margin-bottom: 1.25rem;
}
.about-home-text p {
  margin-bottom: 1.25rem;
}
.about-home-text .credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.credential-icon {
  width: 20px;
  height: 20px;
  color: var(--brown-light);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .about-home {
    grid-template-columns: 1fr;
  }
  .about-home-img {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ── Serviços cards ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brown-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--cream);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brown);
}
.service-icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Diferenciais ────────────────────────────────────────── */
.diferenciais {
  background: var(--bg-warm);
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.diferencial-item {
  text-align: center;
}
.diferencial-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--brown-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.diferencial-item h4 {
  margin-bottom: 0.5rem;
}
.diferencial-item p {
  font-size: 0.875rem;
}

/* ── Depoimentos ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-text {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown-light);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.author-desc {
  font-size: 0.78rem;
  color: var(--text-light);
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
  color: var(--brown-light);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  margin-top: 2.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--cream);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  gap: 1rem;
  transition: var(--trans);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-question:hover {
  color: var(--brown);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
  color: var(--brown-light);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--bg-dark);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(196, 154, 114, 0.15) 0%,
    transparent 60%
  );
}
.cta-banner .section-label {
  color: var(--brown-light);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: var(--bg);
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.cta-banner .btn-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: var(--cream);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-name {
  color: var(--cream);
}
.footer-brand .logo-title {
  color: var(--brown-light);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--trans);
}
.footer-social a:hover {
  border-color: var(--brown-light);
  color: var(--brown-light);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a,
.footer-col address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  line-height: 1.8;
  transition: var(--trans);
}
.footer-col ul li a:hover {
  color: var(--cream);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Page Hero (interno) ─────────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--bg) 60%, var(--bg-warm) 100%);
  text-align: center;
}
.page-hero p {
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ── Sobre page ──────────────────────────────────────────── */
.sobre-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.sobre-img-wrap {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.sobre-img-wrap .img-placeholder {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-placeholder img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}
.sobre-text h2 {
  margin-bottom: 1.25rem;
}
.sobre-text p {
  margin-bottom: 1.1rem;
}
.formacao-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}
.formacao-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.formacao-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown-light);
  flex-shrink: 0;
  margin-top: 8px;
}
.formacao-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.formacao-content span {
  font-size: 0.82rem;
  color: var(--text-light);
}
.valores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.valor-card {
  background: var(--bg);
  border: 1px solid var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.valor-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.valor-card p {
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .sobre-intro {
    grid-template-columns: 1fr;
  }
  .sobre-img-wrap {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pilares ─────────────────────────────────────────────── */
.pilares {
  background: var(--bg-dark);
}
.pilares .section-label {
  color: var(--brown-light);
}
.pilares h2 {
  color: var(--white);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pilar-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--trans);
}
.pilar-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.pilar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--brown-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}
.pilar-card h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.pilar-card p {
  color: var(--cream);
  font-size: 0.875rem;
}

/* ── Serviços page ───────────────────────────────────────── */
.servico-detalhe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream);
}
.servico-detalhe:last-child {
  border-bottom: none;
}

.servico-detalhe.reverse .servico-img {
  order: 2;
}
.servico-detalhe.reverse .servico-content {
  order: 1;
}
.servico-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.servico-img .img-placeholder img {
  aspect-ratio: 4/3;
  object-position: center;
  border-radius: 0;
  height: 100%;
}
.servico-content .section-label {
  margin-bottom: 0.5rem;
}
.servico-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.servico-content p {
  margin-bottom: 1rem;
}
.publico-alvo {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.875rem;
}
.publico-alvo strong {
  color: var(--brown);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-mid);
}
.step-num-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .servico-detalhe {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .servico-detalhe.reverse .servico-img {
    order: 1;
  }
  .servico-detalhe.reverse .servico-content {
    order: 2;
  }
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilidades ──────────────────────────────────────────── */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
