/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--green-900);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(173, 84, 36, 0.18),
      transparent 52%
    ),
    radial-gradient(circle at 75% 75%, rgba(62, 82, 53, 0.18), transparent 55%),
    var(--surface);
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}
.nav {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.btn--primary {
  background: var(--bordeaux-900);
  border-color: transparent;
  color: #fff;
}
.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
}

/* ===== Drawer ===== */
.drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  margin: 8px var(--gutter) 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 8px;
  display: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}
.drawer.is-open {
  display: block;
}
.drawer a {
  display: block;
  padding: 13px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
}
.drawer a:hover {
  background: rgba(239, 234, 227, 0.7);
}
.drawer a:active {
  background: rgba(239, 234, 227, 0.9);
}
.drawer .btn {
  width: 100%;
  margin-top: 8px;
  padding: 13px 18px;
}

/* ===== Hero ===== */
.hero {
  padding: 26px 0 10px;
  background:
    radial-gradient(ellipse 70% 55% at 95% 5%, rgba(173, 84, 36, 0.26) 0%, transparent 70%),
    radial-gradient(ellipse 55% 65% at 5% 100%, rgba(62, 82, 53, 0.18) 0%, transparent 70%);
}
.hero__accent {
  font-style: italic;
  font-family: var(--serif);
  color: var(--terra-700);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  color: var(--muted);
}
.hero__photo {
  margin-top: 16px;
  border: 0;
  background: transparent;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  -webkit-mask-image: radial-gradient(
    120% 95% at 50% 35%,
    #000 62%,
    transparent 100%
  );
  mask-image: radial-gradient(120% 95% at 50% 35%, #000 62%, transparent 100%);
}
.hero__photo img {
  width: 100%;
  height: 50%;
}
.hero__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 18px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.15) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
}
.hero__overlay strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.hero__overlay .small {
  color: rgba(255, 255, 255, 0.85);
}
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero__actions .btn {
  flex: 1;
  min-width: 160px;
}
.meta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
a.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--terra-700);
  color: var(--ink);
}
a.pill:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ===== Slider / Reviews ===== */
.slider {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.slide {
  min-width: 82%;
  scroll-snap-align: start;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
}
.stars {
  color: var(--amber-600);
  font-weight: 800;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.card {
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}
.card .row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.card .row .btn {
  flex: 1;
}
.card .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--green-900);
}
.card .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Cards acordeão ===== */
.cards__more {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  pointer-events: none;
}
.cards__more.is-open {
  max-height: 4000px;
  opacity: 1;
  pointer-events: auto;
}
.cards__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.cards__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cards__toggle-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cards__toggle[aria-expanded="true"] .cards__toggle-icon {
  transform: rotate(180deg);
}

/* ===== FAQ ===== */
details {
  border: 1px solid var(--hair);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 12px;
}
details + details {
  margin-top: 10px;
}
summary {
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] {
  background: rgba(255, 255, 255, 0.92);
}

/* ===== Social ===== */
.footer {
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.footer a {
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.social-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.social-inline svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.social-inline a {
  text-decoration: none;
  color: inherit;
}
.social-inline a:hover {
  text-decoration: underline;
}

/* ===== Sobre ===== */
.sobre-image {
  display: none;
}
.sobre-refinado {
  max-width: 680px;
}
.sobre-name {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
}
.sobre-main {
  font-size: 20px;
  line-height: 1.4;
  font-family: var(--serif);
  margin-bottom: 16px;
}
.sobre-end {
  font-size: 15px;
  color: var(--muted);
}

/* ===== Mentoria ===== */
.mentoria {
  margin-top: 14px;
}
.mentoria__card {
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}
.mentoria__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.mentoria__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.mentoria__list li {
  margin: 8px 0;
}
.mentoria__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.mentoria__actions .btn {
  flex: 1;
  min-width: 160px;
}

/* ===== Serviços de Psicologia ===== */
.services-psico {
  text-align: center;
}
.services-psico__title {
  margin-bottom: 6px;
}
.services-psico__orn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  margin-bottom: 18px;
}
.services-psico__dot {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  display: inline-block;
}
.services-psico__star {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--amber-600);
}
.services-psico__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 10px;
}
.services-psico__card {
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  padding: 22px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.services-psico__icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}
.services-psico__icon img {
  width: 86px;
  height: auto;
  display: block;
}
.services-psico__h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.services-psico__p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.services-psico__pg {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  display: inline-block;
}
.services-psico__pg--active {
  background: rgba(0, 0, 0, 0.42);
}
.services-psico__titleCard {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
}
.services-psico__meta {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra-700);
  font-weight: 600;
}

/* ===== Site Footer ===== */
.site-footer {
  border-top: 1px solid var(--hair);
  padding: 32px 0;
  background: var(--bg-2);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.site-footer__disclaimer {
  font-size: 13px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.site-footer__bottom {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== Mentoria Home ===== */
.mentoria-home__title {
  margin-bottom: 14px;
}
.mentoria-home__soft {
  color: var(--terra-700);
}
.mentoria-home__lead {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--text);
}
.mentoria-home__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}
.mentoria-home__meta {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.mentoria-home__actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Contato ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
.contato-meta {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contato-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.contato-meta svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  stroke: var(--green-900);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contato-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contato-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contato-step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato-step__body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
.contato-step__body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.contato-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--hair);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.contato-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.18);
}
.contato-card--primary {
  background: var(--bordeaux-900);
  border-color: transparent;
  color: #fff;
}
.contato-card--primary:hover {
  border-color: transparent;
  background: #8f3a25;
}
.contato-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato-card:not(.contato-card--primary) .contato-card__icon {
  background: var(--bg-2);
}
.contato-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contato-card__icon svg[style] {
  stroke: none;
}
.contato-card--primary .contato-card__icon svg {
  fill: currentColor;
  stroke: none;
}
.contato-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contato-card__body strong {
  font-size: 15px;
  font-weight: 600;
}
.contato-card__body span {
  font-size: 13px;
  opacity: 0.72;
}
.contato-card__arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  transition: transform 0.2s, opacity 0.2s;
}
.contato-card:hover .contato-card__arrow {
  transform: translateX(4px);
  opacity: 1;
}
