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

:root {
  --sage:          #7a9e87;
  --sage-light:    #c8d9c4;
  --sage-dark:     #4e7060;
  --caramel:       #a07850;
  --caramel-light: #c9a87a;
  --teal:          #4a7080;
  --teal-dark:     #2e5060;
  --neuro-bg:      #1e2d3d;
  --cream:         #f5f0ea;
  --warm-white:    #faf7f3;
  --text-dark:     #2a2520;
  --text-mid:      #5a5048;
  --text-light:    #f5f0ea;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --ease-smooth: cubic-bezier(.25,.8,.25,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--text-dark);
  max-width: 100vw;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}


/* animacao scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-smooth),
              transform .7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .30s; }
.reveal-delay-3 { transition-delay: .45s; }


/* navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem;
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: .05em;
}
.nav-logo .logo-sub {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: .5rem .85rem;
  border-radius: 2rem;
  transition: background .25s, color .25s;
}
.nav-links a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

/* botao mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--caramel);
  border-radius: 2px;
  transition: transform .35s var(--ease-smooth), opacity .35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-smooth);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: .05em;
  position: relative;
}
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--caramel);
  transition: width .3s;
}
.mobile-menu a:hover::after { width: 100%; }


/* hero */
.hero {
  position: relative;
  height: 92vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(82, 119, 96, 0.45) 0%, rgba(116, 88, 72, 0.55) 60%, rgba(160, 80, 80, 0.3) 100%),
    url('../img/hero/massoterapiaHERO.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

.hero-icon {
  margin-bottom: 1rem;
  animation: floatIcon 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
}
.hero-icon img {
  width: 65px;
  height: auto;
  display: block;
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .02em;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--caramel-light);
}

.hero-sub {
  margin-top: .75rem;
  font-size: clamp(.85rem, 2vw, 1.05rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .9;
}

.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: .85rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 3rem;
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.1);
  transition: background .3s, border-color .3s, transform .3s var(--ease-bounce);
}
.hero-cta:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  transform: translateY(-3px);
}

/* divisoria */
.wave { line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 100%; height: 80px; }


/* bases gerais */
section { padding: 5rem 2rem; overflow-x: hidden; }

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

.section-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: inherit;
}
.section-title em {
  font-style: italic;
  color: var(--caramel);
}


/* escritorio */
.escritorio {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.escritorio::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: .35;
}

.escritorio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.escritorio-text .headline {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.horario-badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--caramel);
  color: #fff;
  padding: 1.1rem 1.8rem;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
}
.horario-badge .label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}
.horario-badge .time {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.escritorio-text p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: .95rem;
}

.escritorio-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  aspect-ratio: 4/3;
}
.escritorio-img img {
  height: 100%;
  transition: transform .6s var(--ease-smooth);
}
.escritorio-img:hover img { transform: scale(1.04); }


/* sobre */
.sobre {
  background: var(--sage);
  color: var(--text-light);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.sobre-img-main {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.sobre-text p {
  line-height: 1.8;
  font-size: .95rem;
  opacity: .92;
  margin-bottom: 2rem;
}

.profissionais { margin-top: 1rem; }
.profissionais .sub-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1rem;
}

.profissionais-grid {
  display: flex;
  gap: 1.5rem;
}

.prof-card {
  text-align: center;
  cursor: pointer;
}

.prof-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.4);
  margin: 0 auto .6rem;
  transition: transform .3s var(--ease-bounce), border-color .3s;
}
.prof-photo:hover {
  transform: scale(1.08);
  border-color: var(--caramel-light);
}
.prof-photo img { height: 100%; }

.prof-card .name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
}
.prof-card .role {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}


/* massoterapia */
.massoterapia {
  background: var(--caramel);
  color: var(--text-light);
  text-align: center;
}

.massa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.massa-card {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.massa-card img {
  height: 100%;
  transition: transform .5s var(--ease-smooth);
}
.massa-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
}
.massa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,.25);
}
.massa-card:hover img { transform: scale(1.08); }

.massa-card-label {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  z-index: 2;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
}


/* estetica */
.estetica {
  background: var(--sage-dark);
  color: var(--text-light);
}

.est-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.est-img {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.est-text .section-title { margin-bottom: 1.5rem; }
.est-text p {
  line-height: 1.8;
  font-size: .95rem;
  opacity: .88;
  margin-bottom: 1rem;
}

.est-preco {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--caramel-light);
}


/* pilates */
.pilates {
  background: var(--teal);
  color: var(--text-light);
}

.pilates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pilates-text .section-title { margin-bottom: 1.5rem; }
.pilates-text p {
  line-height: 1.8;
  font-size: .95rem;
  opacity: .88;
  margin-bottom: .75rem;
}

.pilates-precos {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.pilates-precos span {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--sage-light);
}

.pilates-imgs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.pilates-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 12px 36px rgba(0,0,0,.2);
  transition: transform .4s var(--ease-bounce), border-color .3s;
}
.pilates-circle:hover {
  transform: scale(1.06);
  border-color: var(--sage-light);
}
.pilates-circle img { height: 100%; }

.pilates-duo {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.pilates-duo .pilates-circle {
  width: 280px;
  height: 280px;
}


/* hipnoterapia */
.hipnoterapia {
  background: var(--teal-dark);
  color: var(--text-light);
}

.hipno-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.hipno-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  margin: 0 auto;
  transition: transform .5s var(--ease-smooth);
}
.hipno-circle:hover { transform: scale(1.04); }
.hipno-circle img { height: 100%; }

.hipno-text .section-title { margin-bottom: 1.5rem; }
.hipno-text p {
  line-height: 1.8;
  font-size: .95rem;
  opacity: .88;
  margin-bottom: 1rem;
}

.hipno-precos {
  margin-top: 1rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--sage-light);
}


/* neuroterapias */
.neuroterapias {
  background: var(--neuro-bg);
  color: var(--text-light);
  text-align: center;
}

.neuroterapias-intro {
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: .95rem;
  line-height: 1.75;
  opacity: .8;
}

.neuro-grid {
  max-width: 900px !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* neuro page heroes (sem imagem, usa gradiente) */
.neuro-page-hero {
  display: flex;
  align-items: flex-end;
}
.neuro-page-hero img { display: none; }
.neuro-hero-regressao  { background: linear-gradient(135deg, #2e1a4a 0%, #4a2a7a 40%, #2e5060 100%); }
.neuro-hero-familiar   { background: linear-gradient(135deg, #1a3a2a 0%, #2d6050 40%, #4a7080 100%); }
.neuro-hero-workshops  { background: linear-gradient(135deg, #3a2010 0%, #7a4830 40%, #a07850 100%); }
.neuro-page-hero::after {
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.5) 100%);
}


/* badge horario destaque massagens */
.horario-destaque {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--caramel-light), var(--caramel));
  color: #fff;
  border-radius: .75rem;
  padding: 1.1rem 1.6rem;
  margin-top: 2rem;
  box-shadow: 0 8px 28px rgba(160,120,80,.35);
}
.horario-destaque .hd-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.horario-destaque .hd-texto {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.horario-destaque .hd-titulo {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
}
.horario-destaque .hd-sub {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}

/* modalidades de atendimento */
.atendimento-modalidades {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.atendimento-modalidades .modal-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--sage-light);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.atendimento-modalidades .modal-tag .modal-ico {
  font-size: .95rem;
}


/* footer */
footer {
  background: var(--caramel);
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}

.footer-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  list-style: none;
  margin-bottom: 2rem;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .25s;
}
.footer-links a:hover { color: #fff; }

.footer-copy {
  font-size: .72rem;
  opacity: .5;
}


/* botoes */
.btn {
  display: inline-block;
  padding: .75rem 1.8rem;
  border-radius: 3rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--ff-body);
  cursor: pointer;
  border: none;
  transition: transform .25s var(--ease-bounce), box-shadow .25s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.btn-light {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: rgba(255,255,255,.28); }
.btn-caramel { background: var(--caramel); color: #fff; }
.btn-sage    { background: var(--sage);    color: #fff; }

.massa-cta-btn.btn-escuro {
  background: var(--caramel);
}
.massa-cta-btn.btn-escuro:hover {
  background: var(--caramel-light);
}

.prof-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(30,22,18,.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease-smooth);
}
.prof-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.prof-modal {
  background: var(--warm-white);
  border-radius: 1.25rem;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  transform: translateY(24px) scale(.97);
  transition: transform .4s var(--ease-bounce);
  position: relative;
}
.prof-modal-overlay.open .prof-modal {
  transform: translateY(0) scale(1);
}

.prof-modal-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.prof-modal-header img {
  height: 100%;
  object-position: center top;
}
.prof-modal-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,22,18,.6) 0%, transparent 60%);
}

.prof-modal-header-text {
  position: absolute;
  bottom: 1.1rem;
  left: 1.5rem;
  z-index: 2;
  color: #fff;
}
.prof-modal-header-text h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
.prof-modal-header-text span {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
}

.prof-modal-body {
  padding: 1.75rem;
  color: var(--text-dark);
}

.prof-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.prof-tag {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2rem;
}

.prof-modal-body p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.prof-modal-body .credentials {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 1px solid var(--sage-light);
  padding-top: 1rem;
  margin-top: .5rem;
}
.prof-modal-body .credentials li {
  list-style: none;
  font-size: .8rem;
  color: var(--text-mid);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.prof-modal-body .credentials li::before {
  content: '✦';
  color: var(--caramel);
  font-size: .6rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.prof-modal-close {
  position: absolute;
  top: .85rem; right: .85rem;
  z-index: 10;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dark);
  transition: background .2s, transform .2s;
}
.prof-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}


/* paginas de massagem (overlay deslizante) */
.massa-page {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--warm-white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .5s var(--ease-smooth);
}
.massa-page.open { transform: translateX(0); }

.massa-page-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 4rem;
}

.massa-page-hero {
  position: relative;
  height: 52vh;
  min-height: 300px;
  overflow: hidden;
}
.massa-page-hero img { height: 100%; object-position: center; }
.massa-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}

.massa-page-back {
  position: absolute;
  top: 1.2rem; left: 1.5rem;
  z-index: 5;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  border-radius: 2rem;
  padding: .5rem 1.2rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .25s, transform .25s;
}
.massa-page-back:hover {
  background: rgba(255,255,255,.35);
  transform: translateX(-3px);
}

.massa-page-hero-text {
  position: absolute;
  bottom: 2rem; left: 2rem;
  z-index: 5;
  color: #fff;
}
.massa-page-hero-text .eyebrow {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .4rem;
}
.massa-page-hero-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.massa-page-content { padding: 3rem 2rem 0; }

.massa-page-lead {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 2rem;
  max-width: 680px;
}

.massa-page-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.massa-page-body p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.massa-info-box {
  background: var(--cream);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.massa-info-item { display: flex; flex-direction: column; gap: .2rem; }
.massa-info-item .info-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
}
.massa-info-item .info-value {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--text-dark);
}
.massa-info-item .info-value.price {
  font-size: 1.6rem;
  color: var(--caramel);
}

.massa-cta-btn {
  margin-top: .5rem;
  display: inline-block;
  padding: .8rem 1.8rem;
  background: var(--sage);
  color: #fff;
  border-radius: 3rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  width: 100%;
  text-align: center;
  transition: background .25s, transform .25s var(--ease-bounce);
}
.massa-cta-btn:hover {
  background: var(--sage-dark);
  transform: translateY(-3px);
}

.massa-beneficios {
  margin-top: 2.5rem;
  padding: 2.5rem 2rem;
  background: var(--sage);
  border-radius: 1rem;
  color: #fff;
}
.massa-beneficios h4 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .85rem;
}
.beneficio-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.5;
  opacity: .92;
}
.beneficio-item .ico { font-size: 1.1rem; flex-shrink: 0; }

/* botao flutuante whatsapp */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: .65rem 1.1rem .65rem .65rem;
  border-radius: 3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
  font-family: var(--ff-body);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: .65rem;
    border-radius: 50%;
  }
  .whatsapp-float img { width: 42px; height: 42px; }
}

@media (max-width: 900px) {
  .escritorio-grid,
  .sobre-grid,
  .est-grid,
  .pilates-grid,
  .hipno-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .massa-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin-left: 0; margin-right: 0; }
  .neuro-grid { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; }
  .hipno-grid .hipno-circle { width: 220px; height: 220px; }

  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .pilates-circle {
    width: clamp(120px, 38vw, 240px);
    height: clamp(120px, 38vw, 240px);
  }

  .pilates-duo .pilates-circle {
    width: clamp(100px, 30vw, 200px);
    height: clamp(100px, 30vw, 200px);
  }
}

@media (max-width: 700px) {
  .massa-page-body { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .massa-grid { grid-template-columns: repeat(2, 1fr); }
  .neuro-grid { grid-template-columns: 1fr !important; }
  section { padding: 3.5rem 1.25rem; }
  .navbar { padding: .75rem 1.25rem; }
  .hero-content h1 { font-size: 2.4rem; }
}