:root {
  --bg: #fbf6f4;
  --rose: #e8b7c0;
  --rose-deep: #c97d8b;
  --sage: #dce7de;
  --ink: #4a4348;
  --ink-soft: #8a7f84;
  --cream: #fffdfb;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
header {
  padding: 28px 0 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand span {
  color: var(--rose-deep);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-links a:hover {
  color: var(--rose-deep);
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 44px 0 60px;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-photo {
    order: -1;
    margin: 0 auto;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(232, 183, 192, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero p.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 32px;
}
@media (max-width: 860px) {
  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--cream);
  box-shadow: 0 10px 24px -8px rgba(201, 125, 139, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(201, 125, 139, 0.6);
}
.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(74, 67, 72, 0.14);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* photo / signature blob */
.hero-photo {
  position: relative;
  width: 340px;
  height: 340px;
  justify-self: center;
}
.blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--rose) 0%, var(--sage) 100%);
  border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%,
  100% {
    border-radius: 62% 38% 55% 45% / 48% 45% 55% 52%;
  }
  50% {
    border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
  }
}
.photo-slot {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px dashed rgba(201, 125, 139, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--rose-deep);
  text-align: center;
  overflow: hidden;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.photo-slot .hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding: 0 30px;
}
.photo-slot svg {
  width: 34px;
  height: 34px;
  opacity: 0.7;
}

/* ---------- SECTION generic ---------- */
section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 46px;
}
.section-head .eyebrow {
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.section-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 0.98rem;
}

.divider {
  width: 100%;
  height: 64px;
  display: block;
}

/* ---------- SOBRE ---------- */
.sobre {
  background: var(--cream);
  border-radius: var(--radius);
}
.sobre .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .sobre .wrap {
    grid-template-columns: 1fr;
  }
}
.sobre-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 30px 26px;
}
.sobre-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--rose-deep);
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
.sobre-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.sobre-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- HORARIO ---------- */
.horario-grid {
  max-width: 620px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(74, 67, 72, 0.08);
}
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 30px;
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(74, 67, 72, 0.07);
}
.horario-row:last-child {
  border-bottom: none;
}
.horario-row .dia {
  font-weight: 500;
}
.horario-row .hora {
  color: var(--rose-deep);
  font-weight: 500;
}
.horario-row .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  margin-right: 10px;
}

/* ---------- SERVICOS ---------- */
.servicos-table {
  max-width: 620px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 22px;
  padding: 8px 0;
  border: 1px solid rgba(74, 67, 72, 0.08);
}
.servicos-table .trow {
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  font-size: 0.95rem;
}
.servicos-table .trow.head {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(74, 67, 72, 0.08);
  padding-bottom: 12px;
}
.servicos-table .trow:not(.head) {
  border-top: 1px solid rgba(74, 67, 72, 0.06);
}
.badge {
  background: rgba(220, 231, 222, 0.6);
  color: #5c7a63;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---------- LOCALIZACAO ---------- */
.local {
  background: linear-gradient(135deg, var(--rose) 0%, var(--sage) 100%);
  border-radius: var(--radius);
  padding: 60px 0;
}
.local .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) {
  .local .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.local-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 36px;
}
.local h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.local address {
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}
.local .cep {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.selo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 67, 72, 0.06);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.selo svg {
  width: 14px;
  height: 14px;
}

/* ---------- FOOTER ---------- */
footer {
  padding: 64px 0 110px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(74, 67, 72, 0.12);
}
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
  }
}
.footer-brand-block .brand {
  margin-bottom: 10px;
}
.footer-brand-block p {
  max-width: 280px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .footer-brand-block p {
    max-width: none;
  }
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 600px) {
  .footer-social {
    align-items: center;
  }
}
.footer-social .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(74, 67, 72, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.social-links a:hover {
  transform: translateY(-3px);
  background: var(--rose);
  border-color: var(--rose);
  color: var(--cream);
}
.social-links svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 22px;
  }
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 100;
  transition: transform 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }
  .btn,
  .wa-float {
    transition: none;
  }
}

/* ---------- RESPONSIVE: tablets ---------- */
@media (max-width: 860px) {
  .wrap {
    padding: 0 22px;
  }
  section {
    padding: 56px 0;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }
  .hero-photo {
    width: 260px;
    height: 260px;
  }
  .local .wrap {
    gap: 28px;
  }
  .local-card {
    padding: 28px;
  }
}

/* ---------- RESPONSIVE: mobile ---------- */
@media (max-width: 600px) {
  header {
    padding: 20px 0 0;
  }
  .brand {
    font-size: 1rem;
  }

  .wrap {
    padding: 0 18px;
  }
  section {
    padding: 44px 0;
  }

  .eyebrow {
    font-size: 0.7rem;
    padding: 6px 13px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 40px;
    gap: 36px;
  }
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.18;
  }
  .hero p.lede {
    font-size: 0.96rem;
  }
  .hero-photo {
    width: 200px;
    height: 200px;
  }
  .photo-slot {
    inset: 14px;
  }
  .photo-slot svg {
    width: 26px;
    height: 26px;
  }
  .photo-slot .hint {
    font-size: 0.7rem;
    padding: 0 22px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section-head {
    padding: 0 4px;
  }
  .section-head h2 {
    font-size: 1.5rem;
  }
  .section-head p {
    font-size: 0.9rem;
  }

  .sobre .wrap {
    gap: 16px;
  }
  .sobre-card {
    padding: 24px 20px;
  }

  .horario-row {
    padding: 14px 20px;
    font-size: 0.88rem;
  }

  .servicos-table .trow {
    padding: 15px 20px;
    font-size: 0.88rem;
  }

  .local {
    padding: 44px 0;
    border-radius: 20px;
  }
  .local .wrap {
    text-align: center;
  }
  .local h2 {
    font-size: 1.35rem;
  }
  .local-card {
    padding: 26px 22px;
  }
  .selo {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  footer {
    padding: 44px 0 110px;
  }

  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ---------- RESPONSIVE: telas bem pequenas ---------- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-photo {
    width: 170px;
    height: 170px;
  }
  .btn {
    font-size: 0.88rem;
    padding: 13px 20px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;

  max-width: 600px;

  background: var(--bg);
  color: var(--rose-deep);

  padding: 20px;

  border-radius: 12px;

  display: none;

  justify-content: space-between;
  align-items: center;
  gap: 20px;

  z-index: 9999;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner button {
  background: var(--rose);
  color: var(--cream);

  border: none;

  padding: 10px 20px;

  border-radius: 8px;

  cursor: pointer;
}
/* ---------- SOBRE MIM ---------- */
.sobre-mim {
  padding: 70px 0;
  background: var(--cream);
  border-radius: var(--radius);
}
.sobre-mim-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
  align-items: center;
}
.sobre-mim-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--rose) 0%, var(--sage) 100%);
  padding: 10px;
}
.sobre-mim-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.sobre-mim-quote {
  margin-top: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--rose-deep);
  text-align: center;
  position: relative;
  padding: 0 6px;
}
.sobre-mim-quote i {
  display: block;
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 10px;
  font-style: normal;
}
.sobre-mim-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 12px 0 18px;
}
.sobre-mim-text p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: 0.98rem;
}
.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.credential-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid rgba(74, 67, 72, 0.1);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 100px;
}
.credential-pills .pill i {
  font-size: 0.8rem;
}

@media (max-width: 820px) {
  .sobre-mim-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobre-mim-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .credential-pills {
    justify-content: center;
  }
}

/* ---------- AVALIAÇÃO NEUROPSICOLÓGICA ---------- */
.neuro {
  padding: 74px 0;
}
.neuro .wrap {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 820px;
}
.neuro-block {
  background: var(--cream);
  border: 1px solid rgba(74, 67, 72, 0.08);
  border-radius: 24px;
  padding: 36px 38px;
}
.neuro-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--rose-deep);
  margin-bottom: 16px;
}
.neuro-block h3 i {
  font-size: 1rem;
}
.neuro-block p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 14px;
}
.neuro-note {
  font-size: 0.88rem !important;
  font-style: italic;
  border-top: 1px solid rgba(74, 67, 72, 0.08);
  padding-top: 16px;
  margin-top: 6px;
}

.indications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}
.indication-tag {
  background: rgba(220, 231, 222, 0.55);
  color: #5c7a63;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 100px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 24px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.step-content h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.step-content p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .neuro {
    padding: 50px 0;
  }
  .neuro-block {
    padding: 26px 22px;
    border-radius: 20px;
  }
  .neuro-block h3 {
    font-size: 1.08rem;
  }
  .indications-grid {
    gap: 8px;
  }
  .indication-tag {
    font-size: 0.78rem;
    padding: 7px 13px;
  }
}
