/* TEMAS POR CATEGORIA */
body.tema-estetica {
  --accent: var(--salvia);
  --accent-bg: var(--bege)
}

body.tema-mistica {
  --accent: var(--vinho);
  --accent-bg: var(--vinho-bg)
}

body.tema-terapia {
  --accent: var(--terapia);
  --accent-bg: var(--terapia-bg)
}

.servico .btn {
  padding: 14px 24px
}

.servico {
  padding-bottom: 60px
}

.cover-wrap {
  margin-bottom: 32px
}

.servico-body {
  max-width: 1080px;
  margin: 0 auto
}

.servico-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: 'main side';
  gap: 42px;
  align-items: start;
  margin-bottom: 8px
}

.servico-main {
  grid-area: main;
  min-width: 0
}

.servico-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  gap: 18px
}

/* CAPA */
.cover {
  position: relative;
  width: 100%;
  height: clamp(240px, 32vw, 400px);
  overflow: hidden;
  background: var(--bege);
  border-radius: var(--r-lg)
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  display: block
}

.cover-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

.cover-badge svg {
  width: 18px;
  height: 18px
}

/* TÍTULO E CONTEÚDO */
.s-head {
  margin-bottom: 14px
}

.s-head h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  letter-spacing: .03em;
  text-transform: uppercase
}

.s-sub {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  margin-top: 3px;
  color: var(--accent)
}

.s-intro {
  font-size: .98rem;
  color: var(--suave);
  margin-bottom: 20px;
  line-height: 1.7
}

.s-intro b {
  color: var(--accent);
  font-weight: 500
}

.s-tags {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 10px;
  border: 1.3px solid var(--linha);
  background: var(--creme2);
  font-size: .82rem;
  color: var(--suave)
}

.s-tag svg {
  width: 16px;
  height: 16px;
  color: var(--accent)
}

.s-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 32px
}

/* CARD DE INFORMAÇÕES */
.info-card {
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 22px
}

.info-price {
  font-family: var(--serif);
  font-size: .86rem;
  color: var(--suave);
  margin-bottom: 2px
}

.info-price strong {
  display: block;
  font-size: 1.7rem;
  color: var(--verde);
  font-weight: 600
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--linha)
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--suave);
  list-style: none
}

.info-list svg {
  width: 17px;
  height: 17px;
  color: var(--ouro);
  flex-shrink: 0
}

.info-cta {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.info-cta .btn {
  width: 100%
}

/* PROFISSIONAL */
.prof-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 28px
}

.prof-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bege);
  position: relative
}

.prof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.prof-info span {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 500
}

.prof-info h4 {
  font-size: 1.08rem;
  margin: 3px 0 4px
}

.prof-info p {
  font-size: .83rem;
  color: var(--suave);
  line-height: 1.5
}

/* ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px
}

.acc-item {
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease)
}

.acc-item.open {
  box-shadow: var(--shadow-sm)
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 19px;
  text-align: left
}

.acc-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-bg);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center
}

.acc-ico svg {
  width: 20px;
  height: 20px
}

.acc-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--verde);
  letter-spacing: .03em;
  flex: 1;
  font-weight: 500;
  text-transform: uppercase
}

.acc-chev {
  width: 20px;
  height: 20px;
  color: var(--claro);
  flex-shrink: 0;
  transition: transform var(--ease)
}

.acc-item.open .acc-chev {
  transform: rotate(180deg)
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 19px
}

.acc-item.open .acc-body {
  max-height: 360px;
  padding: 0 19px 19px 74px
}

.acc-body p {
  font-size: .88rem;
  color: var(--suave);
  line-height: 1.6
}

/* FAQ */
.faq-box {
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 20px;
  margin-bottom: 28px
}

.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.faq-head h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  letter-spacing: .03em;
  text-transform: uppercase
}

.faq-head h3 svg {
  width: 18px;
  height: 18px;
  color: var(--ouro)
}

.faq-vertodas {
  font-size: .8rem;
  color: var(--claro)
}

.faq-vertodas:hover {
  color: var(--ambar)
}

.acc--faq {
  gap: 9px;
  margin-bottom: 0
}

.acc--faq .acc-head {
  padding: 13px 16px
}

.acc--faq .acc-title {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 400;
  text-transform: none
}

.acc--faq .acc-item.open .acc-body {
  padding: 0 16px 14px
}

/* MODALIDADES / PREÇOS */
.service-options {
  margin-bottom: 28px
}

.service-options>h3 {
  font-size: 1.05rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.option-card {
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  padding: 18px
}

.option-card h4 {
  font-size: 1rem;
  margin-bottom: 5px
}

.option-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 6px
}

.option-card p {
  font-size: .8rem;
  color: var(--suave);
  line-height: 1.45
}

/* RELACIONADOS */
.relacionados {
  margin-bottom: 30px
}

.relacionados h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  letter-spacing: .03em;
  margin-bottom: 15px;
  text-transform: uppercase
}

.relacionados h3 svg {
  width: 18px;
  height: 18px;
  color: var(--ouro)
}

.rel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.rel-card {
  display: flex;
  background: var(--creme2);
  border: 1px solid var(--linha);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--ease)
}

.rel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm)
}

.rel-img {
  position: relative;
  width: 112px;
  flex-shrink: 0;
  overflow: hidden
}

.rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rel-img .badge {
  display: none
}

.rel-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0
}

.rel-body h4 {
  font-size: .98rem;
  margin-bottom: 3px
}

.rel-body p {
  font-size: .79rem;
  color: var(--suave);
  margin-bottom: 8px;
  line-height: 1.5;
  flex: 1
}

.rel-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 7px;
  flex-wrap: wrap
}

.rel-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .66rem;
  color: var(--claro);
  background: var(--bege);
  padding: 2px 8px;
  border-radius: 999px
}

.rel-card .link-det {
  font-size: .78rem
}

.rel-card .link-det svg {
  width: 17px;
  height: 11px
}

/* FAIXA FINAL */
.wband-light {
  background: var(--accent);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0
}

.wband-light-left {
  display: flex;
  align-items: center;
  gap: 14px
}

.wband-light-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--whats2);
  display: flex;
  align-items: center;
  justify-content: center
}

.wband-light-ico svg {
  width: 19px;
  height: 19px;
  color: #fff
}

.wband-light h4 {
  color: #fff;
  font-size: 1.02rem;
  font-family: var(--sans);
  font-weight: 400
}

.wband-light p {
  color: rgba(255, 255, 255, .78);
  font-size: .8rem
}

.btn-light-outline {
  background: transparent;
  border: 1.3px solid rgba(255, 255, 255, .5);
  color: #fff;
  padding: 11px 20px
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, .15)
}

@media(max-width:960px) {
  .cover {
    height: clamp(230px, 60vw, 320px)
  }
}

@media(max-width:860px) {
  .servico-layout {
    grid-template-columns: 1fr;
    grid-template-areas: 'side' 'main';
    gap: 24px
  }
}

@media(max-width:700px) {
  .options-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {

  .s-cta,
  .rel-grid {
    grid-template-columns: 1fr
  }

  .wband-light {
    flex-direction: column;
    align-items: flex-start
  }
}

/* DIFERENCIAÇÃO ENTRE SERVIÇOS MÍSTICOS E SUAS TABELAS DE PREÇO */
.service-note {
  margin: -2px 0 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--ouro);
  background: var(--bege);
  border-radius: 0 10px 10px 0;
  color: var(--suave);
  font-size: .84rem;
  line-height: 1.55
}