/* === MAIN CSS — Clínica Entrelinhas === */

/* TIPOGRAFIA */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.25;
}
h2 { font-size: clamp(2rem, 4.5vw, 2.875rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p  { font-size: 1rem; line-height: 1.75; font-weight: 300; color: var(--color-brown-light); }

/* SCROLL ANIMATIONS */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .75s cubic-bezier(0.16,1,0.3,1),
              transform .75s cubic-bezier(0.16,1,0.3,1);
}
[data-animate="up"]    { transform: translateY(32px); }
[data-animate="left"]  { transform: translateX(-32px); }
[data-animate="right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(.93); }
[data-animate="fade"]  { transform: none; }
[data-animate].is-visible { opacity: 1; transform: none !important; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-3); }
.section { padding: var(--space-12) 0; }
.section--pale  { background: var(--color-sage-pale); }
.section--white { background: var(--color-white); }
#como-funciona { padding: var(--space-8) 0; background: #EDE8E1; }
.section-header { text-align: center; margin-bottom: var(--space-8); }
.section-label {
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: var(--space-2);
}
.section-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--color-brown-light);
  max-width: 520px;
  margin: var(--space-2) auto 0;
}
#equipe-titulo {
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* DIVISOR DECORATIVO */
.section-divider {
  width: 56px; height: 2px;
  background: var(--color-sage);
  margin: var(--space-3) auto 0;
  opacity: 0.6;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--color-cream);
  padding: var(--space-4) var(--space-3) var(--space-3);
  border-top: 1px solid rgba(74,55,40,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-brown);
  transition: color .2s ease;
}
.mobile-nav a:hover { color: var(--color-sage); }

/* COMO FUNCIONA */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}
.step {
  padding: var(--space-4) var(--space-3);
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid rgba(74,55,40,.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.step:hover {
  box-shadow: 0 8px 28px rgba(74,55,40,.09);
  transform: translateY(-4px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: rgba(122,140,110,.35);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step h3 { font-size: 1.125rem; margin-bottom: var(--space-1); }
.step p  { font-size: 0.9375rem; }
.step-icon {
  width: 24px; height: 24px;
  color: var(--color-sage);
  margin-bottom: var(--space-2);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ESPECIALIDADES — PILLS */
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
  list-style: none;
}
.pill {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-brown);
  background: var(--color-white);
  border: 1px solid rgba(74,55,40,.15);
  border-radius: 100px;
  padding: 8px 20px;
  cursor: default;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.pill:hover {
  background: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
  transform: translateY(-2px);
}

/* CARDS DE PSICÓLOGAS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.team-card {
  background: var(--color-white);
  border: 1px solid rgba(74,55,40,.07);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(74,55,40,.05);
  transition: box-shadow .35s ease, transform .35s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(74,55,40,.13);
  transform: translateY(-6px);
}
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-sage-pale);
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s cubic-bezier(0.16,1,0.3,1);
}
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-bottom: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
  width: 100%;
}
.team-card__crp {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-sage);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-1);
}
.team-card__approach {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage-light);
  margin-bottom: var(--space-2);
}
.team-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-3);
  min-height: 56px;
  align-content: flex-start;
  list-style: none;
  justify-content: center;
}
.team-card__pill {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-brown-light);
  background: var(--color-sage-pale);
  border-radius: 100px;
  padding: 6px 14px;
  white-space: nowrap;
  list-style: none;
  margin: 0;
}
.team-card__audience {
  font-size: 0.8125rem;
  color: var(--color-brown-light);
  margin-bottom: var(--space-3);
}

/* EQUIPE COMPLETA (equipe.html) */
.psychologist-section {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-12);
  align-items: start;
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(74,55,40,.08);
  margin-bottom: var(--space-12);
}
.psychologist-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.psychologist-section:nth-child(even) { direction: rtl; }
.psychologist-section:nth-child(even) > * { direction: ltr; }
.psychologist-photo {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-sage-pale);
  box-shadow: 0 8px 32px rgba(74,55,40,.1);
  transition: box-shadow .35s ease;
}
.psychologist-photo:hover { box-shadow: 0 16px 48px rgba(74,55,40,.16); }
.psychologist-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.psychologist-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 4px;
  overflow-wrap: break-word;
}
.psychologist-crp { font-size: .8125rem; color: var(--color-sage); letter-spacing: .06em; margin-bottom: var(--space-1); }
.psychologist-approach {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-3);
}
.psychologist-bio { font-size: 1rem; line-height: 1.8; color: var(--color-brown-light); margin-bottom: var(--space-3); }
.psychologist-section-label {
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: var(--space-1);
  margin-top: var(--space-3);
}
.psychologist-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-3); list-style: none; }

/* DEPOIMENTOS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}
.testimonial {
  background: var(--color-white);
  border-radius: 4px;
  padding: var(--space-6) var(--space-4);
  border: 1px solid rgba(74,55,40,.07);
  position: relative;
  transition: box-shadow .3s ease, transform .3s ease;
}
.testimonial:hover { box-shadow: 0 8px 28px rgba(74,55,40,.09); transform: translateY(-3px); }
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .8;
  color: var(--color-sage-pale);
  position: absolute;
  top: 16px; left: 20px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-brown);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  position: relative;
}
.testimonial blockquote p:first-child { margin-bottom: var(--space-2); }
.testimonial-author { font-size: .8125rem; font-weight: 400; color: var(--color-sage); letter-spacing: .04em; }
.testimonial-context { font-size: .75rem; color: var(--color-brown-light); }
.testimonial-note { text-align: center; font-size: .75rem; color: var(--color-sage-light); font-style: italic; margin-top: var(--space-3); }

/* FAQ ACCORDION */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid rgba(74,55,40,.1); }
.faq-list details:first-of-type { border-top: 1px solid rgba(74,55,40,.1); }
.faq-list summary {
  list-style: none;
  padding: var(--space-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-brown);
  user-select: none;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--color-sage); }
.faq-icon { flex-shrink: 0; width: 16px; height: 16px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-sage);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq-icon::before { width: 16px; height: 1.5px; top: 7px; left: 0; }
.faq-icon::after  { width: 1.5px; height: 16px; top: 0; left: 7px; }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 0 var(--space-3); font-size: .9375rem; font-weight: 300; line-height: 1.8; color: var(--color-brown-light); }

/* CTA FINAL */
.cta-section {
  background: linear-gradient(135deg, #3A5535 0%, #4E7048 50%, #5E8060 100%);
  padding: var(--space-12) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C30 5 20 20 20 30 C20 40 30 55 30 55 C30 55 40 40 40 30 C40 20 30 5 30 5Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.cta-section h2 { color: var(--color-white); margin-bottom: var(--space-2); position: relative; }
.cta-section p  { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto var(--space-6); font-size: 1.0625rem; position: relative; }
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-brown);
  background: var(--color-white);
  padding: 16px 40px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  text-decoration: none;
}
.btn-white:hover { background: var(--color-cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* FOOTER */
.contact-h2 { font-size: 1.5rem; }
.contact-h2--top { margin-bottom: var(--space-2); }
.contact-h2--form { margin-bottom: var(--space-4); }
.psychologist-text { font-size: .9375rem; color: var(--color-brown-light); }
.psychologist-text--gap { margin-bottom: var(--space-4); }
.footer-hours { font-size: .8125rem; color: var(--color-brown-light); line-height: 1.6; }
.footer-nav--social { margin-bottom: 16px; }
.required-mark { color: var(--color-sage); }
.text-sage { color: var(--color-sage); }

.site-footer {
  background: var(--color-cream);
  border-top: 1px solid rgba(74,55,40,.1);
  padding: var(--space-8) 0 var(--space-4);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--space-8);
  align-items: start;
  margin-bottom: var(--space-6);
}
.footer-logo img { height: 40px; width: auto; margin-bottom: var(--space-2); transition: opacity .2s ease }
.footer-logo img:hover { opacity: .75; }
.footer-tagline { font-size: .875rem; color: var(--color-brown-light); line-height: 1.6; }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-2);
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: .9375rem; color: var(--color-brown-light); transition: color .2s ease; }
.footer-nav a:hover { color: var(--color-sage); }
.footer-social { display: flex; gap: var(--space-2); align-items: center; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(74,55,40,.06);
  color: var(--color-brown-light);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--color-sage); color: var(--color-white); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3) var(--space-3) 0;
  border-top: 1px solid rgba(74,55,40,.08);
  font-size: .8125rem;
  color: var(--color-brown-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
}
.footer-bottom a { color: var(--color-sage); transition: opacity .2s ease; }
.footer-bottom a:hover { opacity: .7; }

/* WHATSAPP FLUTUANTE */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.whatsapp-btn svg { width: 26px; height: 26px; fill: #fff; }

/* UTILITÁRIOS */
.see-all { text-align: center; margin-top: var(--space-6); }
.notice {
  background: rgba(245,240,235,.8);
  border: 1px solid rgba(74,55,40,.12);
  border-radius: 4px;
  padding: var(--space-3) var(--space-4);
  font-size: .9375rem;
  color: var(--color-brown-light);
  line-height: 1.7;
}

/* SERVIÇOS */
.services-list { display: flex; flex-direction: column; gap: var(--space-8); max-width: 800px; }
.service-article {
  border-bottom: 1px solid rgba(74,55,40,.1);
  padding-bottom: var(--space-8);
  transition: opacity .3s ease;
}
.service-article:last-child { border-bottom: none; padding-bottom: 0; }
.service-article h2 { font-size: 1.75rem; margin-bottom: var(--space-3); }
.service-article p { margin-bottom: var(--space-2); }
.service-for {
  background: var(--color-sage-pale);
  border-radius: 4px;
  padding: var(--space-2) var(--space-3);
  font-size: .875rem;
  color: var(--color-brown-light);
  margin: var(--space-3) 0;
}

/* FORMULÁRIO */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-info-block { margin-bottom: var(--space-4); }
.contact-info-block h3 { font-size: 1.125rem; margin-bottom: var(--space-1); }
.contact-info-block p, .contact-info-block a { font-size: .9375rem; color: var(--color-brown-light); transition: color .2s ease; }
.contact-info-block a:hover { color: var(--color-sage); }
.contact-icon-link {
  display: flex; align-items: center; gap: var(--space-1);
  font-size: 1rem; font-weight: 400; color: var(--color-brown);
  transition: color .2s ease;
}
.contact-icon-link:hover { color: var(--color-sage); }
.contact-icon-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-group { margin-bottom: var(--space-3); }
.form-label {
  display: block;
  font-size: .8125rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-brown); margin-bottom: 6px;
}
.form-input, .form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9375rem; font-weight: 300;
  color: var(--color-brown);
  background: var(--color-white);
  border: 1px solid rgba(74,55,40,.2);
  border-radius: 2px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(122,140,110,.12);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .8125rem; color: var(--color-sage-light); margin-top: var(--space-2); }
.form-submit { width: 100%; margin-top: var(--space-1); }

/* PÁGINA INTERNA — hero menor */
.page-hero {
  padding-top: calc(72px + var(--space-12));
  padding-bottom: var(--space-12);
  background: var(--color-cream);
  border-bottom: 1px solid rgba(74,55,40,.08);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--color-bg, var(--color-bg));
  clip-path: ellipse(60% 100% at 50% 100%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem,5vw,3.25rem); font-weight: 300; margin-bottom: var(--space-2); }
.page-hero p { font-size: 1.0625rem; max-width: 560px; }

/* AVISO CVV */
.cvv-notice {
  background: #fff8e6;
  border: 1px solid #f0d896;
  border-radius: 4px;
  padding: var(--space-2) var(--space-3);
  font-size: .875rem;
  color: #7a5c00;
  line-height: 1.65;
  margin-top: var(--space-4);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .psychologist-section { grid-template-columns: 280px 1fr; gap: var(--space-8); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: var(--space-8) 0; }
  #como-funciona { padding: var(--space-6) 0; }
  .cta-section { padding: var(--space-8) 0; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-bottom { flex-direction: column; gap: var(--space-1); }
  .psychologist-section { grid-template-columns: 1fr; gap: var(--space-4); }
  .psychologist-section:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-logo-img { width: 200px; }
  .hero-logo-glow { width: 260px; height: 260px; }
  .whatsapp-btn { bottom: 16px; right: 16px; }

  /* EQUIPE PREVIEW — card horizontal (foto à esquerda, info à direita) */
  #equipe-preview .team-grid { gap: var(--space-3); }
  #equipe-preview .team-card {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    padding: var(--space-3);
    gap: var(--space-3);
  }
  #equipe-preview .team-card:hover { transform: none; }
  #equipe-preview .team-card__photo {
    width: 110px;
    aspect-ratio: auto;
    border-radius: 8px;
    flex-shrink: 0;
    align-self: stretch;
  }
  #equipe-preview .team-card__body {
    flex: 1;
    min-width: 0;
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }
  #equipe-preview .availability-badge { display: none; }
  #equipe-preview .team-card__pills {
    justify-content: flex-start;
    min-height: auto;
    margin-bottom: var(--space-2);
  }
  #equipe-preview .team-card .btn-primary {
    width: 100%;
    margin-top: 0;
    font-size: 0.75rem;
    padding: 12px var(--space-3);
  }
}

/* === MELHORIAS DE CONVERSÃO === */

.cta-microcopy {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: #8A7E74;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.availability-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-sage);
  background: rgba(122, 140, 110, 0.08);
  padding: 4px 10px;
  border-radius: 2px;
  margin-top: 4px;
  margin-bottom: 12px;
}

.section-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-brown-light);
  max-width: 620px;
  margin: 0 auto;
}

.section-primeira-sessao {
  background: #EDE8E1;
}

.primeira-sessao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.sessao-item {
  position: relative;
}

.sessao-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(122, 140, 110, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}

.sessao-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #4A3728;
  margin-bottom: 10px;
  line-height: 1.3;
}

.sessao-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #6B5D52;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-sage);
  line-height: 1;
}

.proof-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5D52;
  margin-top: 6px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(74, 55, 40, 0.15);
}

.contact-reassurance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(74, 55, 40, 0.10);
}

.reassurance-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 8px;
}

.reassurance-item p {
  font-size: 0.9375rem;
  color: #4A3728;
  line-height: 1.7;
  margin: 0;
}

.tel-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.tel-link:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .proof-divider { display: none; }
  .social-proof-bar { gap: 32px; }
}
