/* Elise Psicóloga — direção: editorial botânico, íntimo e contemporâneo. Mobile-first. */
:root {
  --ink: #26342f;
  --ink-soft: #61706a;
  --paper: #f5f1e8;
  --paper-2: #ebe5d8;
  --sage: #8d9d8c;
  --sage-dark: #52665b;
  --deep: #273b36;
  --clay: #b87d63;
  --line: rgba(38, 52, 47, 0.16);
  --white: #fffdf8;
  --shadow: 0 24px 70px -35px rgba(31, 49, 42, 0.45);
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.section-pad {
  padding: 88px 0;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--paper);
  z-index: 1000;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clay), var(--sage-dark));
  transition: width 0.1s linear;
}
.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 35px -25px rgba(38, 52, 47, 0.6);
  border-color: var(--line);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  overflow: hidden;
}
.brand-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle i {
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s;
}
.menu-toggle i:nth-child(2) {
  width: 16px;
}
.menu-toggle.is-open i:first-child {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open i:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open i:last-child {
  width: 24px;
  transform: translateY(-6px) rotate(-45deg);
}
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  padding: 26px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-130%);
  transition: transform 0.5s var(--ease);
  box-shadow: 0 25px 35px -35px var(--ink);
}
.nav-panel.is-open {
  transform: translateY(0);
}
.nav-panel > a:not(.nav-cta) {
  font-family: var(--display);
  font-size: 1.4rem;
}
.nav-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--deep);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero {
  position: relative;
  min-height: 760px;
  padding-top: 155px;
  overflow: hidden;
}
.hero-wash {
  position: absolute;
  inset: 0 0 35%;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(141, 157, 140, 0.28),
      transparent 32%
    ),
    linear-gradient(115deg, var(--paper), #e9e3d5);
  z-index: -1;
}
.hero-grid {
  display: grid;
  gap: 46px;
}
.hero-copy {
  max-width: 590px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 600px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 13vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.hero h1 em,
h2 em {
  color: var(--sage-dark);
  font-style: italic;
}
.hero-lead {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 18px 30px -20px var(--deep);
}
.button-outline {
  border-color: var(--deep);
  color: var(--deep);
}
.button-outline:hover {
  background: var(--deep);
  color: var(--white);
}
.button-light {
  background: var(--paper);
  color: var(--deep);
}
.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(39, 59, 54, 0.25);
  padding-bottom: 4px;
}
.text-link span {
  font-size: 1.1rem;
}
.text-link.dark {
  margin-top: 18px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.73rem;
}
.note-dot {
  width: 8px;
  height: 8px;
  background: var(--clay);
  border-radius: 50%;
}
.hero-visual {
  position: relative;
  max-width: 530px;
  margin-left: auto;
  width: 88%;
}
.hero-image-frame {
  height: 500px;
  overflow: hidden;
  border-radius: 180px 180px 8px 8px;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
}
.hero-stamp {
  position: absolute;
  left: -34px;
  bottom: 62px;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  text-align: center;
  transform: rotate(-10deg);
  box-shadow: 0 15px 35px -20px var(--clay);
}
.hero-stamp span {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-stamp strong {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 0.9;
  font-weight: 500;
}
.hero-caption {
  position: absolute;
  right: -8px;
  bottom: -30px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.intro {
  background: var(--white);
}
.intro-grid {
  display: grid;
  gap: 38px;
}
.intro-approaches {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.corporate-cta {
  margin-top: 40px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section-label i {
  width: 34px;
  height: 1px;
  background: var(--clay);
}
.intro-copy h2,
.section-heading h2,
.care-heading h2,
.faq-content h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.intro-copy p:not(.eyebrow),
.care-heading > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 520px;
}
.intro-image {
  height: 370px;
  overflow: hidden;
  border-radius: 8px 120px 8px 8px;
}
.intro-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}
.process {
  background: var(--paper-2);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 50px;
}
.heading-aside {
  max-width: 250px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.process-list {
  border-top: 1px solid var(--line);
}
.process-card {
  display: grid;
  grid-template-columns: 46px 1fr 24px;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}
.process-card:hover {
  padding-left: 12px;
}
.process-number,
.care-item > span {
  font-size: 0.67rem;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.process-card h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}
.process-card p {
  max-width: 550px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.process-arrow {
  font-size: 1.3rem;
  color: var(--clay);
}
.care {
  background: var(--deep);
  color: var(--white);
}
.care-grid {
  display: grid;
  gap: 50px;
}
.care-heading h2 {
  max-width: 540px;
}
.care-heading h2 em {
  color: #b9c8b4;
}
.care-heading > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.67);
}
.care-heading .button {
  margin-top: 18px;
}
.care-items {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.care-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.care-item h3 {
  margin: 4px 0;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}
.care-item p {
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.88rem;
}
.quote-band {
  padding: 85px 0;
  background: var(--sage);
  color: var(--white);
}
.quote-inner {
  max-width: 900px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  align-items: start;
}
.quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.4);
}
blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
}
.quote-line {
  grid-column: 2;
  width: 70px;
  height: 2px;
  margin-top: 20px;
  background: var(--clay);
}
.reviews {
  background: var(--paper-2);
  overflow: hidden;
}
.reviews .section-heading {
  padding: 0 0 50px;
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px -30px rgba(38, 52, 47, 0.5);
}
.reviews-score strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.reviews-stars {
  color: var(--clay);
  font-size: 0.85rem;
}
.reviews-score span {
  font-size: 0.7rem;
  color: var(--ink-soft);
}
.marquee {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.marquee-row {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 4px 10px;
  animation: marqueeScroll 46s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-dup {
  display: contents;
}
.marquee-row-reverse .marquee-track {
  animation-name: marqueeScrollReverse;
  animation-duration: 52s;
}
.review-card {
  flex: 0 0 auto;
  width: 300px;
  padding: 26px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 18px 40px -30px rgba(38, 52, 47, 0.5);
}
.review-stars {
  color: var(--clay);
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.review-stars i,
.reviews-stars i {
  margin-right: 3px;
}
.review-card p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink);
}
.review-author {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.reviews-footnote {
  margin-top: 44px;
}
.intro-credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage-dark);
}
.doctoralia {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.doctoralia-score {
  position: relative;
  padding-top: 34px;
}
.doctoralia-tag {
  position: absolute;
  top: -14px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--deep);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.review-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.65rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.doctoralia-footnote {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.location-secondary {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.location-secondary p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.location-secondary p i {
  color: var(--clay);
  margin-right: 4px;
}
.location-secondary strong {
  color: var(--ink);
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marqueeScrollReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.location {
  background: var(--white);
}
.location-grid {
  display: grid;
  gap: 36px;
}
.location-address {
  color: var(--ink-soft);
  margin: 22px 0 28px;
  font-size: 0.94rem;
  line-height: 1.6;
}
.location-map {
  border-radius: 8px 60px 8px 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}
.location-map iframe {
  display: block;
  filter: saturate(0.85);
}
.faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  gap: 38px;
}
.faq-content h2 {
  max-width: 590px;
}
.faq-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.14rem;
}
.faq-question b {
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--clay);
  transition: transform 0.3s var(--ease);
}
.faq-item.is-open .faq-question b {
  transform: rotate(45deg);
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s var(--ease);
}
.faq-answer p {
  margin: 0;
  padding: 0 30px 22px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.contact {
  background: var(--paper);
}
.contact-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  overflow: hidden;
  padding: 44px 30px;
  background: var(--clay);
  color: var(--white);
  border-radius: 8px 100px 8px 8px;
}
.contact-copy h2 {
  max-width: 610px;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}
.contact-mark {
  display: none;
}
.contact-mark img {
  width: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.contact-mark span {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1;
}
.site-footer {
  background: var(--deep);
  color: var(--white);
  padding: 36px 0 20px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-top-link {
  font-size: 0.75rem;
  color: #b9c8b4;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.67rem;
}
.footer-bottom a {
  color: #d5b09a;
}
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  box-shadow: 0 12px 28px -15px #173e29;
  font-size: 0.72rem;
  font-weight: 700;
  animation: waPulse 2.8s infinite;
}
.whatsapp-float:first-letter {
  font-size: 1.2rem;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 12px 28px -15px #173e29,
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow:
      0 12px 28px -15px #173e29,
      0 0 0 9px rgba(37, 211, 102, 0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
@media (min-width: 700px) {
  html {
    scroll-padding-top: 108px;
  }
  .section-pad {
    padding: 125px 0;
  }
  .container {
    width: min(var(--max), calc(100% - 80px));
  }
  .nav-wrap {
    min-height: 88px;
  }
  .menu-toggle {
    display: none;
  }
  .nav-panel {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .nav-panel > a:not(.nav-cta) {
    font-family: var(--body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .nav-panel > a:not(.nav-cta):hover {
    color: var(--deep);
  }
  .nav-cta {
    padding: 11px 15px;
    font-size: 0.68rem;
  }
  .hero {
    padding-top: 180px;
    min-height: 870px;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 60px;
    align-items: center;
  }
  .hero-visual {
    width: 100%;
  }
  .hero-image-frame {
    height: 600px;
  }
  .intro-grid {
    grid-template-columns: 100px minmax(0, 1fr) minmax(260px, 0.66fr);
    gap: 44px;
  }
  .section-label {
    align-self: start;
    writing-mode: vertical-rl;
    justify-content: flex-start;
  }
  .intro-image {
    height: 520px;
  }
  .care-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .faq-grid {
    grid-template-columns: 100px 1fr;
    gap: 44px;
  }
  .faq-grid > .section-label {
    align-self: start;
  }
  .reviews .section-heading {
    align-items: end;
  }
  .review-card {
    width: 340px;
  }
  .location-grid {
    grid-template-columns: 0.8fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .location-map iframe {
    height: 460px;
  }
  .contact-card {
    padding: 70px 72px;
  }
  .contact-mark {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
  }
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1050px) {
  .hero h1 {
    font-size: 6.4rem;
  }
  .hero-copy {
    padding-bottom: 60px;
  }
  .hero-visual {
    max-width: 460px;
  }
  .hero-stamp {
    left: -50px;
  }
  .care-heading {
    padding-top: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .whatsapp-float {
    animation: none;
  }
  .button,
  .process-card,
  .faq-question b {
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  .marquee-row {
    overflow-x: auto;
  }
}
