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

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fbfaf7;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

img,
iframe {
  max-width: 100%;
}

section {
  scroll-margin-top: 88px;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
}

.servicos h2,
.para-terapia h2,
.avaliacoes h2,
.como h2,
.faq h2,
.localizacao h2,
.instagram h2,
.cta-final h2 {
  color: #243622;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.15;
}

.servicos h2,
.para-terapia h2,
.avaliacoes h2 {
  margin-bottom: 36px;
}

/* HERO */
.site-menu {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  left: 50%;
  max-width: 1120px;
  padding: 18px 20px;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 1120px);
  z-index: 20;
}

.menu-toggle {
  display: none;
}

.menu-button {
  align-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(31,49,29,0.12);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(31,49,29,0.16);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 52px;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 52px;
}

.menu-button:hover {
  background: #fff;
  box-shadow: 0 18px 42px rgba(31,49,29,0.22);
  transform: translateY(-2px);
}

.menu-button span {
  background: #1f311d;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease, width 0.25s ease;
  width: 20px;
}

.menu-button span:nth-child(2) {
  width: 14px;
}

.menu-button:hover span:nth-child(2) {
  width: 20px;
}

.menu-panel {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(122,143,107,0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31,49,29,0.18);
  display: grid;
  gap: 4px;
  min-width: 220px;
  opacity: 0;
  padding: 12px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 88px;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-panel a {
  border-radius: 6px;
  color: #243622;
  font-weight: 700;
  padding: 11px 12px;
  position: relative;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-panel a:hover {
  background: rgba(122,143,107,0.14);
  color: #1f311d;
  transform: translateX(4px);
}

.menu-toggle:checked + .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle:checked + .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle:checked ~ .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  height: 100vh;
  background-color: #1f311d;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14vh 8% 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 78%;
  background-image: var(--hero-bg);
  background-position: 28% center;
  background-size: auto 118%;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 70%, rgba(0,0,0,0.78) 84%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, rgba(0,0,0,0.78) 84%, rgba(0,0,0,0) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      rgba(31,49,29,0.86) 0%,
      rgba(31,49,29,0.74) 28%,
      rgba(43,65,39,0.46) 42%,
      rgba(67,92,58,0.18) 56%,
      rgba(122,143,107,0.04) 68%,
      rgba(122,143,107,0) 78%
    );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
  margin-left: auto;
  text-align: right;
}

.hero-logo {
  display: block;
  width: min(190px, 44vw);
  height: auto;
  margin: 0 0 24px auto;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 18px rgba(0,0,0,0.38));
}

.hero-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.hero h1 {
  font-size: clamp(36px, 3.7vw, 46px);
  font-family: 'Playfair Display', serif;
  margin: 18px 0;
  line-height: 1.15;
}

.hero-description {
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 24px;
}

.hero-button {
  display: inline-block;
  background: #7a8f6b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
}

/* SOBRE */
.sobre {
  background: #fbfaf7;
  padding: 96px 20px;
}

.sobre-flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: auto;
}

.sobre-texto {
  color: #31402f;
  position: relative;
  z-index: 2;
}

.sobre-subtitulo {
  display: block;
  color: #7a8f6b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sobre-texto h2 {
  color: #243622;
  font-family: 'Tangerine', cursive;
  font-size: clamp(64px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.sobre-chamada {
  color: #465a40;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 28px;
}

.sobre-texto p {
  color: #4b5948;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-info {
  border-top: 1px solid rgba(49,64,47,0.14);
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
}

.sobre-info strong {
  align-items: center;
  color: #243622;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sobre-info strong i {
  color: #7a8f6b;
  font-size: 16px;
  letter-spacing: 0;
}

.sobre-info ul {
  color: #4b5948;
  display: grid;
  gap: 8px;
  line-height: 1.6;
  padding-left: 20px;
}

.sobre-info .sobre-faq {
  margin: 0;
  max-width: none;
}

.sobre-info .sobre-faq ul {
  margin: 0;
  padding: 18px 22px 20px 40px;
}

.sobre-img {
  isolation: isolate;
  position: relative;
  z-index: 1;
}

.sobre-img::before,
.sobre-img::after {
  border-radius: 12px;
  content: "";
  inset: -14px -16px -14px -1px;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.sobre-img::before {
  background:
    linear-gradient(112deg, transparent 8%, rgba(22,158,255,0.56) 26%, transparent 44%),
    linear-gradient(128deg, transparent 16%, rgba(76,255,184,0.54) 38%, transparent 58%),
    linear-gradient(76deg, transparent 26%, rgba(95,127,255,0.44) 52%, transparent 72%);
  animation: aurora-flow 9s ease-in-out infinite;
  filter: blur(17px) saturate(1.65);
  transform: translate(0, -6px) scale(1.035) rotate(-3deg);
  will-change: transform, opacity;
}

.sobre-img::after {
  background:
    linear-gradient(155deg, transparent 18%, rgba(0,225,255,0.36) 36%, rgba(92,255,189,0.4) 48%, transparent 68%);
  animation: aurora-mist 12s ease-in-out infinite;
  filter: blur(26px) saturate(1.55);
  opacity: 0.62;
  transform: translate(0, 2px) scale(1.04) rotate(1deg);
  will-change: transform, opacity;
}

@keyframes aurora-flow {
  0% {
    opacity: 0.48;
    transform: translate(0, -7px) scale(1.035) rotate(-3deg);
  }

  25% {
    opacity: 0.64;
    transform: translate(8px, -12px) scale(1.058) rotate(1deg);
  }

  50% {
    opacity: 0.56;
    transform: translate(9px, 8px) scale(1.052) rotate(3deg);
  }

  75% {
    opacity: 0.66;
    transform: translate(2px, 10px) scale(1.058) rotate(-1deg);
  }

  100% {
    opacity: 0.48;
    transform: translate(0, -7px) scale(1.035) rotate(-3deg);
  }
}

@keyframes aurora-mist {
  0% {
    opacity: 0.38;
    transform: translate(0, 2px) scale(1.04) rotate(1deg);
  }

  50% {
    opacity: 0.54;
    transform: translate(9px, -7px) scale(1.07) rotate(-2deg);
  }

  100% {
    opacity: 0.38;
    transform: translate(0, 2px) scale(1.04) rotate(1deg);
  }
}

.sobre-img img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(49,64,47,0.16);
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.crp {
  margin: -8px 0 22px;
  color: #7a8f6b;
  font-weight: 700;
}

.diferenciais {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 22px;
}

.diferenciais li {
  background: rgba(122,143,107,0.12);
  border: 1px solid rgba(122,143,107,0.2);
  border-radius: 999px;
  color: #31402f;
  font-size: 14px;
  padding: 10px 14px;
}

/* PARA QUEM E A TERAPIA */
.para-terapia {
  background: linear-gradient(135deg, #d9e7ce 0%, #c6d9b9 54%, #aec39f 100%);
  padding: 88px 20px 96px;
  text-align: center;
}

.para-terapia .sobre-subtitulo {
  color: #5f7654;
}

.para-terapia h2 {
  color: #243622;
}

.para-terapia .container {
  max-width: 980px;
}

.para-terapia-lista {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  text-align: left;
}

.para-terapia-lista li {
  align-items: center;
  background: #fffdf8;
  border: 1px solid rgba(122,143,107,0.26);
  border-radius: 8px 28px 8px 28px;
  box-shadow: 0 16px 34px rgba(49,64,47,0.08);
  color: #4b5948;
  display: flex;
  gap: 18px;
  font-size: 15px;
  line-height: 1.65;
  overflow: hidden;
  padding: 0 22px 0 0;
}

.para-terapia-icone {
  align-items: center;
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(122,143,107,0.98), rgba(73,96,64,0.96));
  border-radius: 0 22px 22px 0;
  box-shadow: 8px 0 22px rgba(49,64,47,0.12);
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 30px;
  justify-content: center;
  min-height: 86px;
  width: 74px;
}

.para-terapia-icone i {
  line-height: 1;
}

/* SERVIÇOS */
.servicos {
  background: #e7f0df;
  padding: 88px 20px 96px;
  text-align: center;
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 270px));
  justify-content: center;
  margin: 0 auto;
  max-width: 1220px;
}

.servicos-cards {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.servico-card {
  background: transparent;
  min-height: 320px;
  perspective: 1200px;
}

.servico-card-inner {
  height: 100%;
  min-height: 320px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.servico-card:hover .servico-card-inner,
.servico-card:focus .servico-card-inner,
.servico-card:focus-within .servico-card-inner {
  transform: rotateY(180deg);
}

.servico-card:focus {
  outline: none;
}

.servico-card-face {
  align-content: center;
  backface-visibility: hidden;
  background: #fffdf8;
  border: 1px solid rgba(122,143,107,0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(49,64,47,0.1);
  inset: 0;
  overflow: visible;
  padding: 24px;
  position: absolute;
  text-align: left;
}

.servico-card-front span {
  color: #7a8f6b;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.servico-card-face h3 {
  color: #243622;
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.15;
  margin-bottom: 14px;
  overflow-wrap: normal;
  word-break: normal;
}

.servico-card-face p {
  color: #4b5948;
  font-size: 15px;
  line-height: 1.7;
}

.servico-card-back {
  background: linear-gradient(135deg, #1f311d, #4f6b43);
  transform: rotateY(180deg);
}

.servico-card-back h3,
.servico-card-back p {
  color: #fff;
}

.servico-card-mulheres .servico-card-back {
  background:
    linear-gradient(rgba(90,34,61,0.2), rgba(90,34,61,0.34)),
    linear-gradient(135deg, #c95f8b 0%, #e9a7bd 48%, #8f446d 100%);
  box-shadow: 0 22px 54px rgba(201,95,139,0.24);
}

.servico-card-lista {
  color: #fff;
  display: grid;
  gap: 7px;
  font-size: 14px;
  line-height: 1.45;
  list-style: disc;
  margin: 14px 0 0 18px;
  padding: 0;
}

.servico-card-mulheres .servico-card-lista {
  gap: 5px;
  font-size: 12.5px;
  line-height: 1.35;
  margin-top: 10px;
}

.servico-card-lista strong {
  color: #fff;
}

.servico-card-lgbt .servico-card-back {
  background:
    linear-gradient(rgba(31,49,29,0.34), rgba(31,49,29,0.34)),
    linear-gradient(
      135deg,
      #e40303 0%,
      #ff8c00 16%,
      #ffed00 32%,
      #008026 48%,
      #24408e 64%,
      #732982 80%,
      #e40303 100%
    );
  background-size: 100% 100%, 220% 220%;
  box-shadow: 0 22px 54px rgba(115,41,130,0.24);
}

.servico-card-lgbt:hover .servico-card-back,
.servico-card-lgbt:focus .servico-card-back,
.servico-card-lgbt:focus-within .servico-card-back {
  animation: rainbow-shift 4.5s ease-in-out infinite alternate;
}

@keyframes rainbow-shift {
  from {
    background-position: center, 0% 50%;
  }

  to {
    background-position: center, 100% 50%;
  }
}

/* AVALIAÇÕES */
.avaliacoes {
  background: #fffdf8;
  padding: 80px 20px;
  text-align: center;
}

.avaliacoes-widget {
  width: min(100%, 980px);
  margin: 32px auto 0;
}

/* COMO */
.como {
  background: #dce9d2;
  padding: 96px 20px 120px;
  text-align: center;
}

.como h2 {
  margin-bottom: 72px;
}

.steps {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 980px;
  min-height: 210px;
  position: relative;
}

.steps::before {
  background: linear-gradient(90deg, rgba(122,143,107,0), #7a8f6b 12%, #7a8f6b 88%, rgba(122,143,107,0));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.step {
  display: grid;
  justify-items: center;
  position: relative;
}

.step span {
  align-items: center;
  background: #7a8f6b;
  border: 7px solid #fbfaf7;
  box-shadow: 0 0 0 1px rgba(122,143,107,0.35), 0 14px 28px rgba(49,64,47,0.16);
  color: white;
  cursor: default;
  display: flex;
  font-weight: 700;
  height: 54px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
  width: 54px;
  border-radius: 50%;
  z-index: 2;
}

.step:hover span,
.step:focus span,
.step:focus-within span {
  background: #31402f;
  transform: scale(1.1);
}

.step:focus {
  outline: none;
}

.step-balao {
  background: #fff;
  border: 1px solid rgba(122,143,107,0.18);
  border-radius: 8px;
  box-shadow: 0 22px 45px rgba(49,64,47,0.14);
  color: #4b5948;
  left: 50%;
  max-width: 260px;
  opacity: 0;
  padding: 22px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  top: calc(50% + 52px);
  transform: translate(-50%, 12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: max-content;
  z-index: 3;
}

.step-balao::before {
  background: #fff;
  border-left: 1px solid rgba(122,143,107,0.18);
  border-top: 1px solid rgba(122,143,107,0.18);
  content: "";
  height: 14px;
  left: 50%;
  position: absolute;
  top: -8px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
}

.step:hover .step-balao,
.step:focus .step-balao,
.step:focus-within .step-balao {
  opacity: 1;
  transform: translate(-50%, 0);
}

.step-balao h3 {
  color: #243622;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.step-balao p {
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: #f8f3ea;
  padding: 88px 20px;
}

.faq h2,
.localizacao h2 {
  margin-bottom: 36px;
  text-align: center;
}

.faq-lista {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
}

.faq-lista details {
  background: #fffdf8;
  border: 1px solid rgba(122,143,107,0.32);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(49,64,47,0.09);
  overflow: hidden;
  padding: 0;
}

.faq-lista summary {
  background: #e1ead7;
  color: #243622;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 20px 22px;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-lista summary::-webkit-details-marker {
  display: none;
}

.faq-lista summary::after {
  color: #7a8f6b;
  content: "+";
  float: right;
  font-size: 22px;
  line-height: 1;
}

.faq-lista details[open] summary::after {
  color: #fff;
  content: "-";
}

.faq-lista details[open] summary {
  background: #7a8f6b;
  color: #fff;
}

.faq-lista p {
  color: #4b5948;
  line-height: 1.7;
  margin: 0;
  padding: 18px 22px 20px;
}

.faq-lista ul {
  color: #4b5948;
  line-height: 1.7;
  margin: 0;
  padding: 18px 22px 20px 42px;
  text-align: left;
}

.faq-lista li + li {
  margin-top: 8px;
}

/* LOCALIZAÇÃO */
.localizacao {
  background: #dfead6;
  padding: 88px 20px 96px;
}

.localizacao-cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.local-card {
  background: #fffdf8;
  border: 1px solid rgba(122,143,107,0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(49,64,47,0.1);
  min-height: 320px;
  padding: 34px;
}

.local-card span {
  color: #7a8f6b;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.local-card h3 {
  color: #243622;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.local-card p {
  color: #4b5948;
  font-size: 16px;
  line-height: 1.7;
}

.local-card-flip {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  perspective: 1200px;
}

.local-card-inner {
  height: 100%;
  min-height: 320px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.local-card-flip:hover .local-card-inner,
.local-card-flip:focus .local-card-inner,
.local-card-flip:focus-within .local-card-inner {
  transform: rotateY(180deg);
}

.local-card-face {
  backface-visibility: hidden;
  background: #fffdf8;
  border: 1px solid rgba(122,143,107,0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(49,64,47,0.1);
  inset: 0;
  overflow: hidden;
  padding: 34px;
  position: absolute;
}

.local-card-back {
  padding: 0;
  transform: rotateY(180deg);
}

.local-card-back iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 320px;
  width: 100%;
}

/* CTA */
.cta-final {
  background: transparent;
  bottom: 24px;
  color: white;
  left: auto;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  text-align: center;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: auto;
  z-index: 19;
}

.show-floating-cta .cta-final {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cta-final h2,
.cta-final p {
  display: none;
}

.cta-final a {
  align-items: center;
  animation: pulse infinite 5s;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(37,211,102,0.28);
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 0;
  height: 56px;
  justify-content: center;
  margin-top: 0;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  transition: width 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease, padding 0.35s ease;
  width: 56px;
}

.cta-final a:hover,
.cta-final a:focus {
  animation-play-state: paused;
  box-shadow: 0 22px 52px rgba(37,211,102,0.38);
  gap: 10px;
  justify-content: flex-start;
  padding: 0 20px;
  transform: translateY(-3px);
  width: 220px;
}

.cta-final a span {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.cta-final a:hover span,
.cta-final a:focus span {
  max-width: 150px;
  opacity: 1;
}

.cta-final svg,
.instagram-button svg {
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.cta-final svg {
  height: 24px;
  width: 24px;
}

@keyframes pulse {
  0% {
    transform: scale(.90);
  }

  25% {
    transform: scale(1);
  }

  50% {
    transform: scale(.90);
  }

  75% {
    transform: scale(1);
  }

  100% {
    transform: scale(.90);
  }
}

/* INSTAGRAM */
.instagram {
  background: #fffdf8;
  overflow: hidden;
  padding: 64px 20px 72px;
  position: relative;
  text-align: center;
}

.instagram .container {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.instagram::before,
.instagram::after {
  background: linear-gradient(135deg, rgba(245,133,41,0.22), rgba(221,42,123,0.2), rgba(81,91,212,0.18));
  border-radius: 999px;
  content: "";
  height: 18px;
  pointer-events: none;
  position: absolute;
  right: -42px;
  top: 54px;
  transform: rotate(-34deg);
  width: 260px;
}

.instagram::after {
  height: 12px;
  right: -22px;
  top: 92px;
  width: 220px;
}

.instagram-intro {
  color: #4b5948;
  line-height: 1.7;
  margin: 14px auto 34px;
  max-width: 620px;
}

.instagram-posts {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.instagram-embeds {
  gap: 18px;
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
}

.instagram-post {
  background: #fbfaf7;
  border: 1px solid rgba(122,143,107,0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(49,64,47,0.09);
  overflow: hidden;
  text-align: left;
  filter: grayscale(1);
  margin: 0 auto;
  max-width: 360px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.35s ease;
  width: 100%;
}

.instagram-post:hover {
  box-shadow: 0 24px 54px rgba(49,64,47,0.14);
  filter: grayscale(0);
  transform: translateY(-6px);
}

.instagram-post .instagram-media {
  background: #fff !important;
  margin: 0 auto !important;
  max-width: 360px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.instagram-post .instagram-media > a {
  align-items: center;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #515bd4);
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: center;
  min-height: 360px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
}

.instagram-button {
  align-items: center;
  background: linear-gradient(135deg, #f58529 0%, #feda77 24%, #dd2a7b 52%, #8134af 76%, #515bd4 100%);
  animation: rainbow-shift 4.5s ease-in-out infinite alternate;
  background-size: 220% 220%;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(221,42,123,0.24);
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.instagram-button:hover {
  box-shadow: 0 24px 52px rgba(129,52,175,0.3);
  transform: translateY(-2px);
}

.site-footer {
  background: #1f311d;
  color: rgba(255,255,255,0.78);
  padding: 28px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}

.site-footer p {
  font-size: 14px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .sobre-img::before,
  .sobre-img::after,
  .instagram-button,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    align-items: center;
    justify-content: center;
    margin: 0;
    max-width: 100vw;
    padding: 34vh 20px 80px;
    min-height: 100vh;
    text-align: center;
    width: 100vw;
  }

  .site-menu {
    left: auto;
    padding: 14px;
    right: 14px;
    top: 14px;
    transform: none;
    width: auto;
  }

  .menu-button {
    box-shadow: 0 12px 30px rgba(31,49,29,0.26);
    height: 50px;
    width: 50px;
  }

  .menu-panel {
    right: 0;
    top: 64px;
    width: min(280px, calc(100vw - 28px));
  }

  .hero::before {
    width: 100%;
    height: 60vh;
    background-position: center 18%;
    background-size: auto 82vh;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0,0,0,0) 100%);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(122,143,107,0.04) 0%, rgba(43,65,39,0.52) 42%, rgba(31,49,29,0.92) 100%);
  }

  .hero-logo {
    width: min(150px, 46vw);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-container {
    margin: 0 auto;
    max-width: 520px;
    text-align: center;
    width: 100%;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 br {
    display: none;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 34rem;
  }

  .hero-button {
    max-width: 100%;
  }

  .sobre-flex {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .sobre-img {
    order: -1;
  }

  .sobre-img::before,
  .sobre-img::after {
    inset: -8px;
  }

  .sobre-img img {
    width: 100%;
  }

  .diferenciais {
    justify-content: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .servico-card,
  .servico-card-inner {
    min-height: 340px;
  }

  .como {
    padding: 72px 20px 88px;
  }

  .como h2 {
    margin-bottom: 42px;
  }

  .steps {
    gap: 34px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .steps::before {
    bottom: 0;
    height: auto;
    left: 50%;
    right: auto;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(180deg, rgba(122,143,107,0), #7a8f6b 12%, #7a8f6b 88%, rgba(122,143,107,0));
  }

  .step-balao {
    margin-top: 18px;
    opacity: 1;
    position: static;
    text-align: center;
    transform: none;
    width: min(100%, 280px);
  }

  .step-balao::before {
    display: none;
  }

  .faq,
  .para-terapia,
  .localizacao,
  .instagram {
    padding: 56px 20px;
  }

  .para-terapia-lista {
    grid-template-columns: 1fr;
  }

  .para-terapia-icone {
    font-size: 26px;
    min-height: 78px;
    width: 66px;
  }

  .instagram-posts {
    grid-template-columns: 1fr;
  }

  .instagram-embeds {
    grid-template-columns: 1fr;
  }

  .instagram-post,
  .instagram-post .instagram-media {
    max-width: 340px !important;
  }

  .localizacao-cards {
    grid-template-columns: 1fr;
  }

  .local-card,
  .local-card-inner {
    min-height: 300px;
  }

  .local-card-face {
    padding: 28px;
  }

  .local-card-back {
    padding: 0;
  }

  .cta-final {
    bottom: 24px;
    right: 24px;
  }

  .cta-final a {
    box-shadow: 0 14px 34px rgba(37,211,102,0.34);
    height: 58px;
    width: 58px;
  }

  .cta-final a:hover,
  .cta-final a:focus {
    padding: 0 16px;
    width: 210px;
  }

}

@media (max-width: 480px) {
  .hero {
    padding: 32vh 16px 72px;
  }

  .hero-logo {
    width: min(132px, 42vw);
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-button {
    padding: 12px 18px;
  }

  .sobre,
  .para-terapia,
  .servicos,
  .avaliacoes,
  .como,
  .faq,
  .localizacao,
  .instagram {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sobre-texto h2 {
    font-size: clamp(52px, 18vw, 68px);
  }

  .sobre-texto p,
  .servico-card-face p,
  .local-card p,
  .faq-lista p,
  .faq-lista ul {
    font-size: 15px;
  }

  .servico-card-face,
  .local-card,
  .local-card-face {
    padding: 24px;
  }

  .faq-lista details {
    padding: 0;
  }

  .faq-lista summary {
    padding-right: 28px;
  }

  .faq-lista summary::after {
    float: none;
    position: absolute;
    right: 18px;
  }

  .faq-lista details {
    position: relative;
  }

  .instagram-post,
  .instagram-post .instagram-media {
    max-width: 326px !important;
  }

  .cta-final {
    bottom: 18px;
    right: 18px;
  }
}

@media (max-width: 360px) {
  .menu-panel {
    width: calc(100vw - 24px);
  }

  .instagram-post,
  .instagram-post .instagram-media {
    max-width: 300px !important;
  }
}
