:root {
  --green-950: #123721;
  --green-900: #174529;
  --green-800: #205733;
  --green-700: #2f6c42;
  --green-600: #4f8b43;
  --green-300: #adc6a4;
  --green-150: #dce9d8;
  --green-100: #eaf1e7;
  --cream: #f8f5ef;
  --ivory: #fffdf9;
  --paper: #f2eee7;
  --ink: #252823;
  --muted: #667067;
  --line: rgba(31, 87, 51, .15);
  --shadow: 0 24px 70px rgba(22, 54, 32, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 105px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.045em; line-height: 1.04; font-weight: 400; }
h1 { font-size: clamp(3rem, 6.2vw, 6.1rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.35rem, 4.2vw, 4.4rem); margin-bottom: 26px; }
h1 span, h2 span { color: var(--green-700); }
h3 { line-height: 1.25; }
.eyebrow { color: var(--green-700); font-weight: 800; letter-spacing: .19em; text-transform: uppercase; font-size: .76rem; margin-bottom: 17px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 750; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { color: white; background: linear-gradient(135deg, var(--green-800), var(--green-950)); box-shadow: 0 12px 30px rgba(32, 87, 51, .22); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(32, 87, 51, .3); }
.btn-ghost { border-color: rgba(32, 87, 51, .23); color: var(--green-900); background: rgba(255,255,255,.65); }
.btn-ghost:hover { border-color: var(--green-700); background: white; }
.btn-light { background: white; color: var(--green-900); border-color: rgba(255,255,255,.25); }
.btn-light:hover { background: var(--green-100); }

:root {
  --instagram-green: #245f39;
  --instagram-green-dark: #17482b;
  --instagram-green-soft: #eef5ef;
}

.instagram-badge,
.instagram-card,
.footer-instagram {
  position: relative;
  border: 1px solid rgba(20, 72, 42, .12) !important;
}

.instagram-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 60px;
  padding: 10px 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--instagram-green), var(--instagram-green-dark));
  box-shadow: 0 12px 28px rgba(28, 91, 53, .18);
}

.instagram-badge:hover {
  color: #fff;
  background: linear-gradient(135deg, #2c7043, #1b5030);
  border-color: rgba(20, 72, 42, .2) !important;
}

.instagram-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
  flex: 0 0 auto;
}

.instagram-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-icon svg .fill {
  fill: currentColor;
  stroke: none;
}

.instagram-text {
  font-weight: 800;
  letter-spacing: -.01em;
  color: inherit;
  line-height: 1;
}

.contact-mini .instagram-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 104px;
  padding: 18px 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--instagram-green), var(--instagram-green-dark));
  box-shadow: 0 12px 28px rgba(28, 91, 53, .18);
}

.contact-mini .instagram-card:hover {
  color: #fff;
  background: linear-gradient(135deg, #2c7043, #1b5030);
  border-color: rgba(20, 72, 42, .2) !important;
}

.contact-mini .instagram-card > .instagram-icon {
  margin-top: 0;
}

.contact-mini .instagram-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.contact-mini .instagram-card strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: .82rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.contact-mini .instagram-card div > span {
  display: block;
  margin-top: 0;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.15;
  color: rgba(255,255,255,.96);
}

.footer-instagram,
.footer-instagram.instagram-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 60px;
  margin-top: 12px !important;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--instagram-green) !important;
  border-color: rgba(255,255,255,.35) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.footer-instagram:hover,
.footer-instagram.instagram-badge:hover {
  background: #f5f8f4;
  color: var(--instagram-green-dark) !important;
}

.footer-instagram .instagram-icon {
  width: 42px;
  height: 42px;
  background: var(--instagram-green-soft);
  color: var(--instagram-green);
}

.footer-instagram .instagram-text {
  color: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.hero-actions .instagram-badge {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .instagram-badge,
  .footer-instagram,
  .contact-mini .instagram-card {
    justify-content: flex-start;
  }

  .instagram-badge {
    padding-inline: 18px;
    gap: 12px;
  }

  .footer-instagram {
    width: 100%;
    max-width: 280px;
  }

  .contact-mini .instagram-card {
    min-height: 96px;
    padding: 16px 18px;
  }

  .contact-mini .instagram-card div > span {
    font-size: .98rem;
  }
}


.site-header { position: sticky; top: 0; z-index: 50; height: 86px; background: rgba(255,253,249,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(32,87,51,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { width: 102px; height: 74px; display: flex; align-items: center; justify-content: flex-start; flex: 0 0 auto; }
.brand img { width: 89px; max-height: 69px; object-fit: contain; }
.main-menu { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-menu a { position: relative; color: #424941; font-size: .94rem; font-weight: 650; }
.main-menu a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--green-700); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { min-height: 46px; padding-inline: 19px; white-space: nowrap; }
.menu-toggle { display: none; width: 45px; height: 45px; border: 0; border-radius: 50%; background: var(--green-100); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--green-900); transition: .25s; }

.hero { position: relative; min-height: calc(100vh - 86px); padding: 74px 0 80px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 20% 10%, rgba(225,235,221,.75), transparent 38%), linear-gradient(180deg, #fbf9f5 0%, #f7f3ec 100%); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .28; background-image: linear-gradient(rgba(31,87,51,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(31,87,51,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to right, black, transparent 62%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .55; }
.hero-glow-one { width: 320px; height: 320px; left: -120px; top: 15%; background: rgba(131,164,116,.19); }
.hero-glow-two { width: 450px; height: 450px; right: -170px; bottom: -90px; background: rgba(79,139,67,.13); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.hero-copy { max-width: 650px; }
.hero-text { max-width: 600px; font-size: 1.08rem; color: var(--muted); margin-bottom: 31px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 40px; }
.hero-points { display: flex; gap: 16px 30px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.hero-points span { display: flex; flex-direction: column; padding-left: 14px; border-left: 2px solid var(--green-300); }
.hero-points strong { color: var(--green-900); }
.hero-visual { position: relative; width: 100%; max-width: 560px; justify-self: end; }
.hero-photo-wrap { position: relative; height: min(660px, 71vh); min-height: 530px; border-radius: 44px 44px 150px 44px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(180deg, #eef4ea 0%, #f7f3ec 100%); }
.hero-photo-wrap::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.75); border-radius: 31px 31px 133px 31px; z-index: 2; pointer-events: none; }
.hero-photo-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; padding: 0; box-sizing: border-box; background: transparent; }
.photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18,55,33,.18) 100%); }
.hero-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 18px; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.75); box-shadow: 0 18px 44px rgba(22,54,32,.15); }
.hero-badge strong, .hero-badge small { display: block; }
.hero-badge strong { color: var(--green-950); font-size: .9rem; }
.hero-badge small { color: var(--muted); font-size: .73rem; }
.badge-top { right: 18px; top: 28px; }
.badge-bottom { left: 18px; bottom: 28px; }
.badge-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: white; background: var(--green-700); }
.badge-number { font-family: Georgia, serif; color: var(--green-700); font-size: 1.7rem; line-height: 1; }

.trust-bar { padding: 28px 0; background: var(--green-950); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.trust-grid article { display: flex; align-items: center; gap: 15px; padding: 10px 18px; }
.trust-grid article + article { border-left: 1px solid rgba(255,255,255,.15); }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid small { opacity: .65; margin-top: 2px; }
.icon-ring { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #d5e8cd; font-size: 1.25rem; }

.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.about-copy { max-width: 550px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-800); font-weight: 800; margin-top: 10px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.about-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.about-card { position: relative; min-height: 220px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background-color: #fff; background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: 0 16px 40px rgba(31,87,51,.08); overflow: hidden; isolation: isolate; }
.about-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255,255,255,.78); }
.about-card.featured { grid-row: span 2; min-height: 458px; display: flex; flex-direction: column; justify-content: flex-end; color: white; background-image: url('../img/fundo-atendimento.webp'); }
.about-card.featured::before { content: none; }
.about-card.featured::after { background: linear-gradient(180deg, rgba(9,46,28,.08) 0%, rgba(7,42,25,.32) 48%, rgba(5,35,21,.84) 100%); }
.about-card:nth-child(2) { background-image: url('../img/fundo-tecnologias.webp'); background-position: center; }
.about-card:nth-child(2)::after { background: rgba(255,255,255,.74); }
.about-card:nth-child(3) { background-image: url('../img/fundo-bem-estar.webp'); background-position: center; }
.about-card:nth-child(3)::after { background: rgba(255,255,255,.70); }
.about-card span, .about-card h3, .about-card p { position: relative; z-index: 1; }
.about-card span { color: var(--green-700); font-family: Georgia, serif; font-size: 2.1rem; }
.about-card.featured span { color: #e9f2e6; }
.about-card h3 { font-family: Georgia, serif; font-size: 1.55rem; font-weight: 400; margin: 16px 0 12px; }
.about-card p { color: #5e6d62; margin: 0; }
.about-card.featured h3 { color: #fff; }
.about-card.featured p { color: rgba(255,255,255,.88); }

.services { background: linear-gradient(180deg, #f5f2ec, #f8f6f1); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 58px; }
.section-heading > div { max-width: 720px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 430px; margin: 0 0 10px; color: var(--muted); }
.section-heading.centered { text-align: center; display: block; max-width: 820px; margin-inline: auto; margin-bottom: 58px; }
.section-heading.centered > p { max-width: 620px; margin: 20px auto 0; }
.services-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 30px; align-items: stretch; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 50px 1fr 38px; gap: 16px; align-items: center; padding: 25px 12px; border-bottom: 1px solid var(--line); cursor: pointer; transition: padding .25s ease, background .25s ease; }
.service-item:hover, .service-item.active { padding-left: 22px; background: rgba(255,255,255,.62); }
.service-index { color: var(--green-600); font-weight: 800; font-size: .8rem; }
.service-item h3 { margin: 0 0 5px; font-family: Georgia, serif; font-weight: 400; font-size: 1.55rem; }
.service-item p { margin: 0; color: var(--muted); font-size: .91rem; }
.service-arrow { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-700); transition: .25s; }
.service-item:hover .service-arrow, .service-item.active .service-arrow { background: var(--green-800); color: white; transform: rotate(8deg); }
.services-card { position: sticky; top: 112px; align-self: start; min-height: 600px; padding: 42px; overflow: hidden; color: white; border-radius: var(--radius-lg); background-image: linear-gradient(rgba(7,48,29,.28), rgba(7,48,29,.42)), url('../img/fundo-servicos-personalizado.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: var(--shadow); }
.services-card-logo { width: 92px; height: 92px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; background: rgba(255,255,255,.94); }
.services-card-logo img { width: 72px; height: 72px; object-fit: contain; }
.services-card .eyebrow { color: #d6e7d1; }
.services-card h3 { font-family: Georgia, serif; font-size: clamp(2rem,3vw,3.1rem); font-weight: 400; margin: 0 0 28px; }
.services-card ul { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px; list-style: none; padding: 0; margin: 0 0 34px; }
.services-card li { position: relative; padding-left: 15px; font-size: .91rem; color: rgba(255,255,255,.88); }
.services-card li::before { content: ""; position: absolute; left: 0; top: .68em; width: 5px; height: 5px; border-radius: 50%; background: #d6e7d1; }
.services-card .btn { position: relative; z-index: 1; }


.procedure-details { margin-top: 68px; }
.procedure-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px 55px; align-items: end; margin-bottom: 30px; }
.procedure-heading .eyebrow { grid-column: 1/-1; margin-bottom: -10px; }
.procedure-heading h3 { margin: 0; max-width: 760px; font-family: Georgia, serif; font-size: clamp(2rem, 3.2vw, 3.35rem); font-weight: 400; line-height: 1.08; color: var(--ink); }
.procedure-heading > p:last-child { margin: 0; max-width: 520px; color: var(--muted); line-height: 1.75; }
.procedure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.procedure-card { position: relative; min-height: 190px; padding: 25px 24px 23px; overflow: hidden; border: 1px solid rgba(32,87,51,.12); border-radius: 21px; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(245,248,243,.80)); box-shadow: 0 12px 32px rgba(32,87,51,.055); cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.procedure-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(145deg, rgba(255,255,255,.44), rgba(255,255,255,.28)), url("../img/fundo-procedimentos.webp"); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .95; pointer-events: none; }
.procedure-card::after { content: ""; position: absolute; right: -35px; bottom: -48px; width: 120px; height: 120px; border-radius: 50%; border: 1px solid rgba(32,87,51,.10); box-shadow: 0 0 0 22px rgba(32,87,51,.04); }
.procedure-card:hover { transform: translateY(-5px); border-color: rgba(32,87,51,.24); box-shadow: 0 18px 38px rgba(32,87,51,.10); }
.procedure-number { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 28px; margin-bottom: 18px; padding: 0 10px; border-radius: 999px; color: var(--green-800); background: var(--green-100); font-weight: 800; font-size: .76rem; letter-spacing: .08em; }
.procedure-card h4 { position: relative; z-index: 1; margin: 0 0 10px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; color: var(--green-950); }
.procedure-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.62; }

.specialties {
  padding: 56px 0;
  color: var(--green-950);
  background-image: url("../img/faixa-protocolos.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.specialties::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,250,237,.30), rgba(248,250,237,.10));
  pointer-events: none;
}
.specialties::after { display: none; }
.specialties-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 90px 1fr; gap: 30px; align-items: center; }
.specialties-icon { display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; border: 1px solid rgba(32,87,51,.28); color: var(--green-800); background: rgba(255,255,255,.35); backdrop-filter: blur(3px); font-size: 2.2rem; }
.specialties .eyebrow { color: var(--green-800); margin-bottom: 8px; }
.specialties h2 { color: var(--green-950); font-size: clamp(2rem,3vw,3.3rem); margin-bottom: 12px; }
.specialties p:last-child { max-width: 980px; margin: 0; color: #4e6655; }
.specialties-highlight { max-width: 980px; margin: 0; color: #365543; font-size: clamp(1.08rem, 1.35vw, 1.32rem); line-height: 1.8; font-weight: 600; text-shadow: 0 1px 0 rgba(255,255,255,.25); }
.specialties-highlight strong { color: var(--green-900); font-weight: 800; }

.results { background: var(--ivory); }
.results-no-photo .results-grid { grid-template-columns: 1fr; max-width: 980px; }
.results-no-photo .results-copy { max-width: 920px; margin: 0 auto; }
.results-no-photo .results-copy > p:not(.eyebrow) { max-width: 780px; }
.results-no-photo .result-metrics { max-width: 820px; }
.results-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.results-visual { position: relative; min-height: 620px; border-radius: 170px 34px 34px 34px; overflow: hidden; box-shadow: var(--shadow); }
.results-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center center; background: #f7f7f3; }
.results-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(18,55,33,.52)); }
.results-stamp { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: white; }
.results-stamp strong { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; }
.results-stamp span { opacity: .72; font-size: .9rem; }
.results-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; max-width: 610px; }
.result-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 37px 0; }
.result-metrics article { padding: 23px 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream); }
.result-metrics strong { display: block; color: var(--green-800); font-family: Georgia,serif; font-size: 2rem; line-height: 1; }
.result-metrics span { display: block; margin-top: 7px; color: var(--muted); font-size: .81rem; }


.hours { padding: 78px 0; background: var(--ivory); }
.hours-heading { text-align: center; max-width: 760px; margin: 0 auto 35px; }
.hours-heading h2 { font-size: clamp(2rem,3.4vw,3.4rem); margin-bottom: 0; }
.hours-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.hours-grid article { display: flex; align-items: center; gap: 14px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; box-shadow: 0 12px 34px rgba(32,87,51,.05); }
.hours-icon { display: grid; place-items: center; width: 47px; height: 47px; flex: 0 0 auto; border-radius: 50%; color: var(--green-800); background: var(--green-100); font-size: 1.35rem; }
.hours-grid strong, .hours-grid small { display: block; }
.hours-grid small { color: var(--muted); margin-top: 2px; }

.appointment { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 20%, rgba(79,139,67,.12), transparent 30%), linear-gradient(145deg, #f4f1ea, #e8eee5); }
.appointment::after { content: ""; position: absolute; right: -130px; bottom: -210px; width: 540px; height: 540px; border: 1px solid rgba(32,87,51,.09); border-radius: 50%; box-shadow: 0 0 0 45px rgba(32,87,51,.025), 0 0 0 90px rgba(32,87,51,.018); }
.appointment-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.appointment-copy { max-width: 440px; }
.appointment-mark { width: 96px; height: 96px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: rgba(255,255,255,.76); border: 1px solid var(--line); box-shadow: 0 15px 35px rgba(32,87,51,.09); }
.appointment-mark img { width: 72px; height: 72px; object-fit: contain; }
.appointment-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-mini { display: grid; gap: 10px; margin-top: 30px; }
.contact-mini a { padding: 14px 16px; border-radius: 13px; background: rgba(255,255,255,.66); border: 1px solid var(--line); }
.contact-mini strong, .contact-mini span { display: block; }
.contact-mini strong { color: var(--green-800); font-size: .79rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-mini span { margin-top: 2px; color: var(--muted); }
.booking-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding: 36px; border: 1px solid rgba(32,87,51,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.88); backdrop-filter: blur(16px); box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { color: #364237; font-size: .88rem; font-weight: 760; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(32,87,51,.19); border-radius: 13px; background: #fffdf9; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 54px; padding: 0 16px; }
.field textarea { resize: vertical; padding: 14px 16px; min-height: 94px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(79,139,67,.11); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b74848; }
.form-status { grid-column: 1/-1; min-height: 0; margin: -4px 0 0; font-size: .9rem; color: #a23e3e; }
.submit-btn { grid-column: 1/-1; width: 100%; min-height: 58px; border: 0; }

.site-footer { padding: 75px 0 25px; background: var(--green-950); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr 1fr 1fr; gap: 55px; padding-bottom: 55px; }
.footer-brand img { width: 130px; height: 120px; object-fit: contain; padding: 8px; border-radius: 22px; background: white; }
.footer-brand p { max-width: 250px; margin: 22px 0 0; color: rgba(255,255,255,.65); }
.site-footer h3 { margin-bottom: 18px; font-family: Georgia,serif; font-weight: 400; font-size: 1.3rem; }
.site-footer a, .site-footer span { display: block; color: rgba(255,255,255,.68); margin: 9px 0; font-size: .92rem; }
.site-footer a:hover { color: white; }
.footer-contact > a { width: fit-content; }
.footer-address { display: flex !important; flex-direction: column; gap: 3px; max-width: 285px; margin-top: 15px !important; line-height: 1.45; }
.footer-address strong { color: rgba(255,255,255,.92); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-address span { margin: 0; color: rgba(255,255,255,.68); line-height: 1.5; }
.footer-address:hover strong, .footer-address:hover span { color: white; }
.footer-cta p { color: rgba(255,255,255,.65); }
.footer-cta .btn { color: var(--green-950); display: inline-flex; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom a, .footer-bottom span { margin: 0; font-size: .82rem; }

.floating-whatsapp { position: fixed; left: 24px; bottom: 24px; z-index: 40; display: block; width: 62px; height: 62px; border-radius: 14px; box-shadow: 0 16px 36px rgba(28,155,74,.28); overflow: hidden; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Conteúdo visível por padrão: evita tela vazia caso o JavaScript seja bloqueado ou falhe. */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: none; }


/* Mature Skin — Gerenciamento de Pele Anual */
.mature-skin {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 14%, rgba(197, 164, 98, .13), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(60, 111, 70, .13), transparent 28%),
    linear-gradient(145deg, #f8f3e9 0%, #fffdf8 48%, #edf3e8 100%);
}
.mature-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.mature-orb-one { width: 380px; height: 380px; left: -235px; bottom: -190px; border: 1px solid rgba(146,112,51,.18); box-shadow: 0 0 0 45px rgba(146,112,51,.025), 0 0 0 90px rgba(146,112,51,.018); }
.mature-orb-two { width: 290px; height: 290px; right: -155px; top: -145px; border: 1px solid rgba(32,87,51,.14); box-shadow: 0 0 0 38px rgba(32,87,51,.025); }
.mature-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.mature-visual { position: relative; width: 100%; max-width: 760px; }
.mature-poster { position: relative; overflow: hidden; border-radius: 28px; background: #f6eee0; box-shadow: 0 24px 56px rgba(48,64,42,.16); }
.mature-poster::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.62); border-radius: 18px; pointer-events: none; }
.mature-poster img { display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; padding: 0; box-sizing: border-box; background: linear-gradient(180deg, #fbf6ed 0%, #f7f1e7 100%); }
.mature-float-card { position: static; width: fit-content; max-width: 100%; margin: 16px auto 0; padding: 16px 20px; border: 1px solid rgba(32,87,51,.12); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 14px 32px rgba(29,73,43,.12); backdrop-filter: blur(12px); }
.mature-float-card strong, .mature-float-card span { display: block; }
.mature-float-card strong { color: var(--green-900); font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; }
.mature-float-card span { margin-top: 5px; color: var(--muted); font-size: .84rem; }
.mature-float-card--text { max-width: 420px; }
.mature-float-card--text span { margin-top: 0; color: var(--green-900); font-size: 1rem; line-height: 1.45; font-weight: 600; }
.mature-content { max-width: 750px; }
.mature-content h2 { max-width: 720px; margin-bottom: 22px; }
.mature-content h2 span { display: block; color: var(--green-700); font-size: .58em; margin-top: 8px; }
.mature-lead { max-width: 700px; color: var(--muted); font-size: 1.02rem; line-height: 1.78; }
.mature-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 29px 0 24px; }
.mature-stages article { min-height: 145px; padding: 18px 16px; border: 1px solid rgba(32,87,51,.12); border-radius: 18px; background: rgba(255,255,255,.72); box-shadow: 0 12px 28px rgba(32,87,51,.05); }
.mature-stages article > span { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; height: 34px; padding: 0 11px; border-radius: 999px; color: #fff; background: var(--green-800); font-family: Georgia, serif; font-size: 1.05rem; }
.mature-stages strong, .mature-stages small { display: block; }
.mature-stages strong { margin-top: 14px; color: var(--green-950); font-size: .95rem; }
.mature-stages small { margin-top: 6px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.mature-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin: 0 0 26px; color: #435d49; font-size: .88rem; }
.mature-investment { display: grid; grid-template-columns: 1.15fr .85fr; gap: 13px; }
.mature-price-copy, .mature-comparison { padding: 20px 22px; border-radius: 19px; }
.mature-price-copy { color: #fff; background: linear-gradient(135deg, var(--green-800), var(--green-950)); box-shadow: 0 18px 38px rgba(32,87,51,.18); }
.mature-price-copy small, .mature-price-copy strong, .mature-price-copy span { display: block; }
.mature-price-copy small { color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; font-size: .69rem; }
.mature-price-copy strong { margin: 7px 0 4px; font-family: Georgia, serif; font-size: clamp(1.65rem,2.6vw,2.35rem); font-weight: 400; }
.mature-price-copy strong em { font-family: inherit; font-size: .47em; font-style: normal; opacity: .76; }
.mature-price-copy span { color: rgba(255,255,255,.78); font-size: .82rem; }
.mature-promo-alert {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 14px;
  padding: 15px 17px;
  border: 1px solid rgba(159, 123, 55, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 249, 235, .96), rgba(246, 239, 218, .86));
  box-shadow: 0 12px 26px rgba(92, 70, 30, .07);
}
.mature-promo-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9b7a3f, #c39a52);
  color: #fff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mature-promo-alert > div { min-width: 0; }
.mature-promo-alert strong, .mature-promo-alert small { display: block; }
.mature-promo-alert strong { color: #5f5038; font-family: Georgia, serif; font-size: 1.02rem; font-weight: 600; line-height: 1.35; }
.mature-promo-alert small { margin-top: 3px; color: #7b6a4e; font-size: .82rem; line-height: 1.45; }
.mature-comparison { display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(146,112,51,.22); background: rgba(255,252,245,.78); }
.mature-comparison small { color: #8f703c; text-transform: uppercase; letter-spacing: .08em; font-size: .67rem; }
.mature-comparison strong { margin-top: 7px; color: #5f5038; font-family: Georgia, serif; font-size: 1.05rem; font-weight: 400; line-height: 1.42; }
.mature-treatment-list { display: grid; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; color: #6a5b43; font-size: .76rem; }
.mature-treatment-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.mature-treatment-list b { color: #5f5038; font-weight: 700; white-space: nowrap; }
.mature-comparison .mature-total { margin-top: 12px; padding-top: 11px; border-top: 1px solid rgba(146,112,51,.18); font-size: .94rem; }
.mature-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 27px; }
.mature-book-btn { border: 0; cursor: pointer; }
.mature-note { margin: 20px 0 0; color: #7b6745; font-family: Georgia, serif; font-size: 1.04rem; font-style: italic; }

.mature-manifesto {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  margin-top: 78px;
  padding: clamp(32px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(32,87,51,.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(91,139,92,.15), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,244,231,.94));
  box-shadow: 0 28px 70px rgba(32,87,51,.12);
}
.mature-manifesto::before {
  content: "MB";
  position: absolute;
  right: -24px;
  bottom: -68px;
  color: rgba(32,87,51,.045);
  font-family: Georgia, serif;
  font-size: clamp(10rem, 24vw, 23rem);
  line-height: .8;
  pointer-events: none;
}
.mature-manifesto-heading,
.mature-manifesto-copy { position: relative; z-index: 1; }
.mature-manifesto-kicker {
  margin: 0 0 24px;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.mature-manifesto-prelude {
  max-width: 650px;
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
}
.mature-manifesto h3 {
  max-width: 850px;
  margin: 0;
  color: #171b17;
  font-family: Georgia, serif;
  font-size: clamp(3.15rem, 6.4vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}
.mature-manifesto h3 span {
  display: block;
  color: var(--green-800);
}
.mature-manifesto-copy {
  display: grid;
  gap: 22px;
  padding: 8px 0 6px;
}
.mature-manifesto-copy p {
  margin: 0;
  color: #52635a;
  font-size: clamp(.98rem, 1.3vw, 1.14rem);
  line-height: 1.85;
}
.mature-manifesto-copy strong {
  display: block;
  padding-left: 18px;
  border-left: 3px solid var(--green-700);
  color: var(--green-950);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
}
.mature-manifesto-copy > span {
  color: #8b7448;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}


@media (max-width: 1320px) {
  .hero-grid { gap: 46px; grid-template-columns: minmax(0, 1fr) minmax(420px, 520px); }
  .hero-visual { justify-self: center; max-width: 520px; }
  .hero-photo-wrap { min-height: 500px; }
  .badge-top { right: 12px; top: 20px; }
  .badge-bottom { left: 12px; bottom: 20px; }
  .mature-shell { gap: 40px; grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr); }
  .mature-visual { justify-self: center; }
  .mature-float-card { margin-top: 14px; }
}

@media (max-width: 1180px) {
  .hero-grid, .mature-shell, .services-layout { grid-template-columns: 1fr; }
  .hero-copy, .mature-content { max-width: 100%; }
  .hero-visual, .mature-visual { justify-self: center; width: min(100%, 620px); }
  .hero-photo-wrap { height: auto; min-height: 0; aspect-ratio: 1 / 1.06; }
  .badge-top { right: 16px; top: 16px; }
  .badge-bottom { left: 16px; bottom: 16px; }
  .mature-float-card { margin-top: 14px; }
  .services-card { position: relative; top: 0; min-height: auto; max-width: 760px; justify-self: center; }
}

@media (max-width: 1080px) {
  .main-menu { gap: 18px; }
  .main-menu a { font-size: .86rem; }
  .nav-cta { display: none; }
  .hero-grid { gap: 42px; }
  .hero-photo-wrap { height: 590px; }
  .badge-top { right: 10px; }
  .badge-bottom { left: 10px; }
  .about-grid, .results-grid { gap: 45px; }
  .services-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.1fr .7fr 1fr; }
  .footer-cta { grid-column: 2/-1; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 30px, 760px); }
  .section { padding: 82px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .main-menu { position: fixed; inset: 86px 0 auto 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 22px 20px 28px; background: rgba(255,253,249,.98); border-bottom: 1px solid var(--line); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .28s ease; box-shadow: 0 25px 40px rgba(22,54,32,.1); }
  .main-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-menu a { padding: 14px 4px; border-bottom: 1px solid rgba(32,87,51,.08); }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-grid, .about-grid, .services-layout, .results-grid, .appointment-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { justify-self: center; max-width: 620px; }
  .hero-photo-wrap { height: 720px; max-height: 80vh; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .about-grid { gap: 50px; }
  .about-copy { max-width: 700px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .section-heading > p { max-width: 670px; }
  .services-card { position: relative; top: 0; min-height: auto; }
  .procedure-heading { grid-template-columns: 1fr; gap: 16px; }
  .procedure-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { gap: 50px; }
  .results-visual { min-height: 650px; }
  .hours-grid { grid-template-columns: repeat(2,1fr); }
  .appointment-grid { gap: 45px; }
  .appointment-copy { max-width: 700px; }
  .contact-mini { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-cta { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 24px); --radius-lg: 24px; }
  html { scroll-padding-top: 76px; }
  .site-header { height: 76px; }
  .brand { width: 84px; height: 66px; }
  .brand img { width: 73px; max-height: 62px; }
  .main-menu { inset: 76px 0 auto 0; }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .hero { padding-top: 38px; }
  .hero-actions .btn { width: 100%; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-photo-wrap { min-height: 530px; height: 65vh; border-radius: 30px 30px 90px 30px; }
  .hero-photo-wrap::before { border-radius: 20px 20px 78px 20px; }
  .hero-badge { max-width: 82%; }
  .badge-top { top: 20px; right: 8px; }
  .badge-bottom { left: 8px; bottom: 20px; }
  .trust-grid article { padding-inline: 5px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card.featured { grid-row: auto; min-height: 320px; }
  .service-item { grid-template-columns: 38px 1fr 34px; padding: 20px 5px; }
  .service-item p { display: none; }
  .service-item h3 { font-size: 1.25rem; }
  .services-card { padding: 30px 23px; }
  .services-card ul { grid-template-columns: 1fr; }
  .procedure-details { margin-top: 50px; }
  .procedure-grid { grid-template-columns: 1fr; }
  .procedure-card { min-height: 0; padding: 22px 20px; }
  .specialties-inner { grid-template-columns: 1fr; }
  .specialties-icon { width: 62px; height: 62px; }
  .results-visual, .results-visual img { min-height: 520px; }
  .results-visual { border-radius: 90px 24px 24px 24px; }
  .results-stamp { align-items: flex-start; flex-direction: column; gap: 3px; }
  .result-metrics { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .contact-mini { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .field.full, .form-status, .submit-btn { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .floating-whatsapp { left: 16px; bottom: 16px; width: 58px; height: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Correção definitiva do alinhamento dos ícones do Instagram.
   Regras mais específicas anulam estilos genéricos aplicados aos spans. */
.contact-mini .instagram-card > span.instagram-icon,
.site-footer a.footer-instagram > span.instagram-icon,
.hero-actions a.instagram-badge > span.instagram-icon {
  display: grid !important;
  place-items: center !important;
  align-items: center !important;
  justify-items: center !important;
  align-self: center !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.contact-mini .instagram-card > span.instagram-icon svg,
.site-footer a.footer-instagram > span.instagram-icon svg,
.hero-actions a.instagram-badge > span.instagram-icon svg {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  transform: none !important;
}

.site-footer a.footer-instagram > span.instagram-text,
.hero-actions a.instagram-badge > span.instagram-text {
  display: inline-block !important;
  margin: 0 !important;
  line-height: 1.15 !important;
}

.contact-mini .instagram-card > div,
.site-footer a.footer-instagram,
.hero-actions a.instagram-badge {
  align-items: center !important;
}


/* Ícone do Instagram como arquivo SVG independente: alinhamento exato. */
.instagram-logo-icon {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 21px !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 10px !important;
  box-sizing: content-box !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 15px !important;
  background: rgba(255,255,255,.16) !important;
  transform: none !important;
}

.footer-instagram .instagram-logo-icon-footer {
  background: #eef5ef !important;
}

.contact-mini .instagram-card,
.site-footer .footer-instagram,
.hero-actions .instagram-badge {
  display: flex !important;
  align-items: center !important;
}

.contact-mini .instagram-card > .instagram-logo-icon,
.site-footer .footer-instagram > .instagram-logo-icon,
.hero-actions .instagram-badge > .instagram-logo-icon {
  position: static !important;
  top: auto !important;
  left: auto !important;
}


@media (max-width: 1080px) {
  .mature-shell { gap: 45px; }
  .mature-float-card { margin-top: 14px; }
  .mature-stages { grid-template-columns: 1fr; }
  .mature-stages article { min-height: 0; display: grid; grid-template-columns: 58px 1fr; gap: 12px; align-items: start; }
  .mature-stages strong { margin-top: 1px; }
}

@media (max-width: 900px) {
  .mature-shell { grid-template-columns: 1fr; }
  .mature-visual { justify-self: center; width: min(100%, 760px); }
  .mature-content { max-width: 760px; }
  .mature-stages { grid-template-columns: repeat(3, 1fr); }
  .mature-stages article { display: block; min-height: 145px; }
  .mature-stages strong { margin-top: 14px; }
}

@media (max-width: 650px) {
  .mature-poster { border-radius: 24px; }
  .mature-float-card { margin-top: 12px; padding: 14px 16px; }
  .mature-float-card--text span { font-size: .95rem; }
  .mature-stages { grid-template-columns: 1fr; }
  .mature-stages article { display: grid; grid-template-columns: 58px 1fr; min-height: 0; }
  .mature-stages strong { margin-top: 1px; }
  .mature-benefits, .mature-investment { grid-template-columns: 1fr; }
  .mature-promo-alert { align-items: flex-start; flex-direction: column; gap: 9px; padding: 14px; }
  .mature-actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .mature-actions .btn { width: 100%; }
}


/* Catálogo de procedimentos remodelado */
.services-remodeled {
  background:
    radial-gradient(circle at 8% 10%, rgba(183, 207, 175, .22), transparent 24%),
    radial-gradient(circle at 94% 92%, rgba(212, 226, 207, .28), transparent 27%),
    linear-gradient(180deg, #f7f5f0 0%, #fbfaf6 100%);
}
.services-remodeled .section-heading { margin-bottom: 30px; }
.service-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.service-category-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(32, 87, 51, .13);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.services-remodeled .procedure-details { margin-top: 0; }
.services-remodeled .procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.services-remodeled .procedure-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 24px 24px 22px;
  overflow: hidden;
  border: 1px solid rgba(32, 87, 51, .13);
  border-radius: 24px;
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 250, 246, .81)),
    url("../img/fundo-procedimentos.webp");
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 38px rgba(32, 87, 51, .065);
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-remodeled .procedure-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(230,240,226,.18));
  pointer-events: none;
}
.services-remodeled .procedure-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -68px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(32,87,51,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(32,87,51,.025);
}
.services-remodeled .procedure-card:hover,
.services-remodeled .procedure-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(32, 87, 51, .30);
  box-shadow: 0 22px 46px rgba(32, 87, 51, .12);
  outline: none;
}
.procedure-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.services-remodeled .procedure-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 32px;
  margin: 0;
  padding: 0 11px;
  color: #fff;
  background: var(--green-800);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.procedure-category {
  color: #66806d;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.services-remodeled .procedure-card h4 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.14;
}
.services-remodeled .procedure-card p {
  margin: 0 0 22px;
  color: #667269;
  font-size: .91rem;
  line-height: 1.65;
}
.procedure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 850;
}
.procedure-link b { font-size: 1rem; transition: transform .2s ease; }
.services-remodeled .procedure-card:hover .procedure-link b { transform: translateX(4px); }

@media (max-width: 1000px) {
  .services-remodeled .procedure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .service-category-bar { gap: 8px; }
  .service-category-bar span { min-height: 34px; padding-inline: 13px; font-size: .68rem; }
  .services-remodeled .procedure-grid { grid-template-columns: 1fr; gap: 14px; }
  .services-remodeled .procedure-card { min-height: 0; padding: 22px 20px; }
}


/* Opções detalhadas dentro dos blocos de procedimentos */
.services-remodeled .procedure-grid { align-items: start; }
.services-remodeled .procedure-card-detailed {
  min-height: 0;
  cursor: default;
}
.services-remodeled .procedure-card-detailed:hover {
  transform: translateY(-3px);
}
.services-remodeled .procedure-card-detailed > p {
  margin-bottom: 17px;
}
.procedure-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.procedure-options li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.procedure-options li::marker {
  content: "";
}
.procedure-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(32, 87, 51, .12);
  border-radius: 12px;
  color: #3f5d47;
  background: rgba(255,255,255,.72);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.procedure-option::before {
  content: "";
  position: static;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}
.procedure-option:hover,
.procedure-option:focus-visible {
  color: var(--green-950);
  background: rgba(232, 241, 228, .92);
  border-color: rgba(32, 87, 51, .30);
  transform: translateX(3px);
  outline: none;
}
.procedure-card-detailed .procedure-link {
  margin-top: 0;
  color: #708177;
  font-size: .70rem;
}
.services-remodeled .procedure-grid {
  align-items: stretch;
}
.services-remodeled .procedure-card-detailed {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.services-remodeled .procedure-card-detailed h4 {
  min-height: 2.35em;
}
.services-remodeled .procedure-card-detailed > p {
  min-height: 4.9em;
}
.procedure-options {
  grid-template-columns: 1fr;
  align-content: start;
}
.procedure-card-detailed.has-medium .procedure-options,
.procedure-card-detailed.has-many .procedure-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 10px;
}
.procedure-card-detailed.has-many .procedure-option {
  min-height: 36px;
  padding: 8px 12px 8px 26px;
  font-size: .76rem;
}
.procedure-card-detailed.has-medium .procedure-option {
  min-height: 37px;
  font-size: .77rem;
}
.procedure-card-detailed.single-option .procedure-options {
  max-width: 260px;
}
.procedure-card-detailed.has-few:not(.single-option) .procedure-options {
  max-width: 100%;
}
@media (max-width: 860px) {
  .procedure-card-detailed.has-medium .procedure-options,
  .procedure-card-detailed.has-many .procedure-options {
    grid-template-columns: 1fr;
  }
  .services-remodeled .procedure-card-detailed > p {
    min-height: 0;
  }
  .services-remodeled .procedure-card-detailed h4 {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .procedure-option { min-height: 42px; font-size: .80rem; }
}


/* Abas expansíveis dos procedimentos */
.services-remodeled .procedure-grid {
  align-items: start;
}
.services-remodeled .procedure-card.procedure-accordion {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  height: auto;
  padding: 24px;
  cursor: default;
}
.services-remodeled .procedure-card.procedure-accordion.is-open {
  grid-column: 1 / -1;
  min-height: 0;
  border-color: rgba(32, 87, 51, .30);
  box-shadow: 0 24px 52px rgba(32, 87, 51, .12);
}
.services-remodeled .procedure-card.procedure-accordion > p {
  min-height: 5.1em;
  margin: 0 0 22px;
}
.procedure-toggle {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  color: var(--green-950);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.procedure-toggle-label {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  line-height: 1.14;
}
.procedure-toggle-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 87, 51, .18);
  border-radius: 50%;
  color: var(--green-800);
  background: rgba(255,255,255,.82);
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .25s ease, color .25s ease, background .25s ease;
}
.procedure-toggle:hover .procedure-toggle-icon,
.procedure-toggle:focus-visible .procedure-toggle-icon {
  color: #fff;
  background: var(--green-800);
}
.procedure-toggle:focus-visible {
  outline: 2px solid rgba(32, 87, 51, .32);
  outline-offset: 6px;
  border-radius: 8px;
}
.procedure-toggle[aria-expanded="true"] .procedure-toggle-icon {
  color: #fff;
  background: var(--green-800);
  transform: rotate(45deg);
}
.procedure-panel {
  position: relative;
  z-index: 3;
  margin-top: 2px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 87, 51, .12);
}
.procedure-panel[hidden] {
  display: none !important;
}
.procedure-panel-title {
  margin: 0 0 16px !important;
  min-height: 0 !important;
  color: var(--green-900) !important;
  font-size: .78rem !important;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.services-remodeled .procedure-panel .procedure-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  max-width: none;
}
.services-remodeled .procedure-panel .procedure-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 13px 10px 16px;
  border: 1px solid rgba(32, 87, 51, .12);
  border-radius: 13px;
  color: #3f5d47;
  background: rgba(255,255,255,.78);
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.35;
}
.services-remodeled .procedure-panel .procedure-option::before {
  content: "";
  position: static;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
}
.procedure-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 14px 28px rgba(20, 74, 39, .16);
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.procedure-whatsapp-cta:hover,
.procedure-whatsapp-cta:focus-visible {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 18px 32px rgba(20, 74, 39, .23);
  transform: translateY(-2px);
  outline: none;
}
@media (max-width: 1050px) {
  .services-remodeled .procedure-panel .procedure-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .services-remodeled .procedure-card.procedure-accordion {
    min-height: 0;
  }
  .services-remodeled .procedure-card.procedure-accordion > p {
    min-height: 0;
  }
  .services-remodeled .procedure-card.procedure-accordion.is-open {
    grid-column: auto;
  }
  .services-remodeled .procedure-panel .procedure-options {
    grid-template-columns: 1fr;
  }
  .procedure-whatsapp-cta {
    width: 100%;
    text-align: center;
  }
}


/* Avaliações facial e corporal */
.evaluations {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcf8 0%, #f2f6ee 100%);
}
.evaluations::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -250px;
  top: -220px;
  border: 1px solid rgba(32,87,51,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(32,87,51,.018), 0 0 0 110px rgba(32,87,51,.012);
  pointer-events: none;
}
.evaluations-heading { margin-bottom: 34px; }
.evaluation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.evaluation-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(32,87,51,.13);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(32,87,51,.08);
  backdrop-filter: blur(10px);
}
.evaluation-card-paid { border-top: 4px solid #927033; }
.evaluation-card-free { border-top: 4px solid var(--green-700); }
.evaluation-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.evaluation-type,
.evaluation-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.evaluation-type { color: var(--green-900); background: var(--green-100); }
.evaluation-status { color: #765c2d; background: #f4ead5; }
.evaluation-status-free { color: #fff; background: var(--green-800); }
.evaluation-card h3 {
  margin: 0 0 14px;
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 400;
}
.evaluation-intro {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
  min-height: 8.8rem;
}
.evaluation-visual {
  margin: 0 0 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(32,87,51,.10);
  background: linear-gradient(180deg, rgba(242,246,241,.95), rgba(255,255,255,.95));
  box-shadow: 0 12px 28px rgba(32,87,51,.07);
  width: 100%;
  aspect-ratio: 1 / 1;
}
.evaluation-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.evaluation-list {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.evaluation-list li {
  position: relative;
  padding-left: 23px;
  color: #425a49;
  font-size: .91rem;
  line-height: 1.5;
}
.evaluation-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 5px rgba(32,87,51,.07);
}
.evaluation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(32,87,51,.10);
}
.evaluation-price small,
.evaluation-price strong { display: block; }
.evaluation-price small {
  margin-bottom: 5px;
  color: #7a877e;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.evaluation-price strong {
  color: #80622f;
  font-family: Georgia, serif;
  font-size: 1.28rem;
  font-weight: 400;
}
.evaluation-price-free strong { color: var(--green-800); }
.evaluation-card .btn { border: 0; cursor: pointer; text-align: center; }

@media (max-width: 900px) {
  .evaluation-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .evaluation-card { padding: 24px 20px; border-radius: 22px; }
  .evaluation-card-top { align-items: flex-start; flex-wrap: wrap; }
  .evaluation-intro { min-height: auto; }
  .evaluation-visual { aspect-ratio: 1 / 1; }
  .evaluation-footer { align-items: stretch; flex-direction: column; }
  .evaluation-footer .btn { width: 100%; }
}


@media (max-width: 900px) {
  .mature-manifesto {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 56px;
  }
  .mature-manifesto-copy { max-width: 680px; }
}

@media (max-width: 620px) {
  .mature-manifesto {
    margin-top: 42px;
    padding: 30px 22px 34px;
    border-radius: 25px;
  }
  .mature-manifesto-kicker { margin-bottom: 18px; }
  .mature-manifesto h3 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
    line-height: .93;
  }
  .mature-manifesto-copy { gap: 18px; }
  .mature-manifesto-copy strong { padding-left: 14px; }
}


.mature-manifesto-art {
  margin-top: 78px;
}
.mature-manifesto-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  border: 1px solid rgba(32,87,51,.14);
  box-shadow: 0 28px 70px rgba(32,87,51,.12);
}
@media (max-width: 768px) {
  .mature-manifesto-art { margin-top: 52px; }
  .mature-manifesto-art img { border-radius: 24px; }
}


/* ===== Galeria de serviços ===== */
.services-gallery-shell {
  margin: 2.25rem 0 2.75rem;
  padding: 1.75rem;
  border: 1px solid rgba(37, 92, 56, 0.10);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,249,245,0.96));
  box-shadow: 0 18px 38px rgba(29, 52, 39, 0.06);
}
.services-gallery-intro {
  margin-bottom: 1.5rem;
  max-width: 760px;
}
.services-gallery-intro h3 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}
.services-gallery-intro h3 span {
  color: var(--primary);
}
.services-gallery-intro p:last-child {
  margin: 0;
  color: var(--muted);
}
.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.service-media-card {
  background: #fff;
  border: 1px solid rgba(37, 92, 56, 0.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(24, 48, 34, 0.06);
}
.service-media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #eef3ed;
}
.service-media-frame img,
.service-media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #eef3ed;
}
.service-media-copy {
  padding: 1rem 1rem 1.1rem;
}
.service-media-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  background: rgba(37, 92, 56, 0.10);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 0.6rem;
}
.service-media-copy h4 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}
@media (max-width: 1024px) {
  .services-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .services-gallery-shell {
    margin: 1.8rem 0 2.25rem;
    padding: 1.15rem;
    border-radius: 22px;
  }
  .services-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-media-frame {
    aspect-ratio: 4 / 5;
  }
  .service-media-copy {
    padding: 0.9rem 0.95rem 1rem;
  }
}


/* Galeria por procedimento */
.procedure-has-gallery {
  display: grid !important;
  gap: 8px;
}
.procedure-gallery-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(32, 87, 51, .18);
  border-radius: 999px;
  background: rgba(232, 241, 228, .88);
  color: var(--green-900);
  font: inherit;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.procedure-gallery-button:hover,
.procedure-gallery-button:focus-visible {
  background: rgba(32, 87, 51, .12);
  border-color: rgba(32, 87, 51, .28);
  box-shadow: 0 10px 18px rgba(20, 74, 39, .08);
  transform: translateY(-1px);
  outline: none;
}
.procedure-gallery-button::before {
  content: "▸";
  font-size: .8rem;
  line-height: 1;
}
.procedure-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(16, 29, 22, .62);
  backdrop-filter: blur(3px);
}
.procedure-gallery-modal[hidden] {
  display: none !important;
}
.procedure-gallery-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(86vh, 920px);
  overflow: auto;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fbfcf8 0%, #f3f7f0 100%);
  box-shadow: 0 28px 64px rgba(10, 27, 16, .30);
}
.procedure-gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.procedure-gallery-header p {
  margin: 0 0 6px;
  color: var(--green-800);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.procedure-gallery-header h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}
.procedure-gallery-close {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.procedure-gallery-close:hover,
.procedure-gallery-close:focus-visible {
  background: var(--green-700);
  outline: none;
}
.procedure-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.procedure-gallery-item {
  overflow: hidden;
  border: 1px solid rgba(32, 87, 51, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(18, 42, 28, .06);
}
.procedure-gallery-frame {
  aspect-ratio: 4 / 5;
  background: #edf3ec;
}
.procedure-gallery-frame img,
.procedure-gallery-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #edf3ec;
}
.procedure-gallery-caption {
  padding: 12px 14px 14px;
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 700;
}
@media (max-width: 760px) {
  .procedure-gallery-dialog {
    padding: 18px;
    border-radius: 22px;
  }
  .procedure-gallery-grid {
    grid-template-columns: 1fr;
  }
  .procedure-gallery-frame {
    aspect-ratio: 4 / 5;
  }
  .procedure-gallery-button {
    width: 100%;
    justify-content: center;
  }
}


.procedure-panel-gallery-button {
  margin: 0 0 16px;
  width: auto;
}
@media (max-width: 620px) {
  .procedure-panel-gallery-button { width: 100%; }
}

.mature-frequency-note { margin: 16px 0 18px; padding: 14px 16px; border: 1px solid rgba(32,87,51,.12); border-radius: 16px; background: rgba(246,249,243,.92); color: var(--muted); line-height: 1.55; }
.mature-frequency-note strong { color: var(--green-900); }


/* ===== Vídeos: localização e apresentação da clínica ===== */
.clinic-videos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(107, 142, 91, .10), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(190, 158, 103, .08), transparent 32%),
    #fbfaf6;
}
.clinic-videos::before {
  content: "MB";
  position: absolute;
  right: -1.5rem;
  top: 2rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(9rem, 20vw, 20rem);
  line-height: .8;
  color: rgba(32, 87, 51, .025);
  pointer-events: none;
}
.clinic-videos .container {
  position: relative;
  z-index: 1;
}
.clinic-videos-heading {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
}
.clinic-videos-heading h2 {
  margin: .5rem 0 .9rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}
.clinic-videos-heading h2 span {
  color: var(--green-700, #2b6a42);
}
.clinic-videos-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.75;
}
.clinic-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}
.clinic-video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  padding: .9rem;
  border: 1px solid rgba(32, 87, 51, .11);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(249,248,242,.98) 100%);
  box-shadow: 0 26px 56px rgba(32, 64, 42, .10);
}

.clinic-video-media {
  min-width: 0;
  padding: .35rem;
  border-radius: 26px;
  background: #17231c;
  box-shadow: inset 0 0 0 1px rgba(32, 87, 51, .06);
}
.clinic-video-media video {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  object-fit: contain;
  background: #17231c;
  box-shadow: 0 18px 34px rgba(23, 35, 28, .20);
}
.clinic-video-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
  padding: 1.35rem 1rem .95rem;
}
.clinic-video-tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 12px;
  margin-bottom: .9rem;
  border-radius: 999px;
  background: rgba(32, 87, 51, .09);
  color: var(--green-800, #245d39);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.clinic-video-copy h3 {
  margin: 0 0 .8rem;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 1.06;
}
.clinic-video-copy p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}
.clinic-video-cta {
  margin-top: auto;
  text-align: center;
}
@media (max-width: 1100px) {
  .clinic-videos-grid {
    max-width: 980px;
    grid-template-columns: 1fr;
  }
  .clinic-video-card {
    padding: .85rem;
  }
  .clinic-video-media video {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: contain;
  }
}
@media (max-width: 760px) {
  .clinic-videos-heading {
    margin-bottom: 1.6rem;
    text-align: left;
  }
  .clinic-videos-heading > p:last-child {
    margin-left: 0;
  }
  .clinic-videos-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
  .clinic-video-card {
    padding: .7rem;
    border-radius: 24px;
  }
  .clinic-video-media {
    border-radius: 20px;
  }
  .clinic-video-media video {
    max-height: 72vh;
    border-radius: 18px;
    object-fit: contain;
  }
  .clinic-video-copy {
    padding: 1.15rem .45rem .2rem;
  }
  .clinic-video-cta {
    width: 100%;
  }
}


/* =========================================================
   Ajuste mobile / iPhone — evita corte horizontal no topo
   e exibe a arte "Nossos Serviços" inteira.
   ========================================================= */
@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  :root {
    --container: calc(100% - 28px);
  }

  .container,
  .hero-grid,
  .hero-copy,
  .hero-actions,
  .hero-points,
  .hero-visual,
  .hero-photo-wrap,
  .trust-grid,
  .trust-grid article {
    min-width: 0;
    max-width: 100%;
  }

  .hero-grid {
    width: 100%;
    gap: 34px;
  }

  .hero-copy {
    width: 100%;
    overflow: visible;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12.4vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .instagram-badge {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .hero-points {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .hero-points span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  /* A imagem original é 4:3. No celular ela não deve ficar dentro
     de um quadro vertical, pois isso força object-fit: cover e corta a arte. */
  .hero-visual {
    width: 100%;
    margin-inline: auto;
  }

  .hero-photo-wrap {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    border-radius: 24px;
    background: #f4f4ef;
  }

  .hero-photo-wrap::before {
    inset: 8px;
    border-radius: 18px;
  }

  .hero-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center;
  }

  .photo-shade {
    display: none;
  }

  .trust-bar,
  .trust-grid {
    width: 100%;
    max-width: 100%;
  }

  .trust-grid article {
    overflow: hidden;
  }

  .trust-grid article > div {
    min-width: 0;
  }

  .trust-grid strong,
  .trust-grid small {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 390px) {
  :root {
    --container: calc(100% - 22px);
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
}

/* Respeita as áreas seguras de iPhones com notch/Dynamic Island. */
@supports (padding: max(0px)) {
  @media (max-width: 600px) {
    .site-header .nav-wrap,
    .hero .container,
    .trust-bar .container {
      padding-left: max(0px, env(safe-area-inset-left));
      padding-right: max(0px, env(safe-area-inset-right));
    }
  }
}


/* ===== Consulta pública de agendamento por telefone ===== */
.appointment-lookup {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(180deg, #f6f8f3 0%, #fbfaf6 100%);
}
.appointment-lookup-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: start;
  padding: clamp(1.4rem, 3.2vw, 2.5rem);
  border: 1px solid rgba(32, 87, 51, .12);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 54px rgba(27, 61, 39, .08);
}
.appointment-lookup-copy h2 {
  margin: .55rem 0 .85rem;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.04;
}
.appointment-lookup-copy h2 span { color: var(--green-700, #2b6a42); }
.appointment-lookup-copy > p:last-child { margin: 0; color: var(--muted); line-height: 1.75; }
.appointment-lookup-form {
  padding: clamp(1.15rem, 2.6vw, 1.7rem);
  border-radius: 24px;
  background: #f8faf6;
  border: 1px solid rgba(32, 87, 51, .1);
}
.appointment-lookup-form label {
  display: block;
  margin-bottom: .6rem;
  color: var(--green-900, #173c27);
  font-weight: 800;
}
.appointment-lookup-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
}
.appointment-lookup-controls input {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  border: 1px solid rgba(32, 87, 51, .18);
  border-radius: 14px;
  background: #fff;
  color: inherit;
  font: inherit;
  outline: none;
}
.appointment-lookup-controls input:focus {
  border-color: rgba(32, 87, 51, .55);
  box-shadow: 0 0 0 4px rgba(32, 87, 51, .08);
}
.appointment-lookup-status {
  min-height: 1.25rem;
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.appointment-lookup-results {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.lookup-appointment-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(32, 87, 51, .11);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(27, 61, 39, .05);
}
.lookup-appointment-date {
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 68px;
  padding: .55rem;
  border-radius: 17px;
  background: rgba(32, 87, 51, .08);
  color: var(--green-900, #173c27);
  text-align: center;
}
.lookup-appointment-date strong { display: block; font-size: 1.25rem; line-height: 1; }
.lookup-appointment-date small { display: block; margin-top: .3rem; font-weight: 800; text-transform: uppercase; }
.lookup-appointment-info { min-width: 0; }
.lookup-appointment-info strong { display: block; margin-bottom: .3rem; font-size: 1rem; }
.lookup-appointment-info span { display: block; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.lookup-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(32, 87, 51, .09);
  color: var(--green-800, #245d39);
  font-size: .76rem;
  font-weight: 850;
  white-space: nowrap;
}
.lookup-status-badge.cancelado { background: rgba(178, 35, 24, .08); color: #9c2d25; }
.lookup-status-badge.concluido { background: rgba(29, 100, 130, .08); color: #275f76; }
.lookup-empty {
  grid-column: 1 / -1;
  padding: 1.4rem;
  border-radius: 18px;
  background: #f8faf6;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 860px) {
  .appointment-lookup-shell { grid-template-columns: 1fr; }
  .appointment-lookup-results { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .appointment-lookup-shell { padding: 1.1rem; border-radius: 23px; }
  .appointment-lookup-controls { grid-template-columns: 1fr; }
  .appointment-lookup-controls .btn { width: 100%; }
  .lookup-appointment-card { grid-template-columns: auto minmax(0, 1fr); }
  .lookup-status-badge { grid-column: 1 / -1; width: fit-content; margin-left: 84px; }
}


/* Cancelamento na consulta por telefone */
.lookup-appointment-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: .55rem;
  min-width: 150px;
}
.lookup-cancel-button {
  appearance: none;
  border: 1px solid rgba(180, 35, 24, .22);
  border-radius: 999px;
  background: rgba(180, 35, 24, .06);
  color: #a13028;
  padding: .62rem .85rem;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.lookup-cancel-button:hover,
.lookup-cancel-button:focus-visible {
  background: #a13028;
  border-color: #a13028;
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}
.lookup-cancel-button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}
@media (max-width: 760px) {
  .lookup-appointment-actions {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    align-items: stretch;
  }
  .lookup-appointment-actions .lookup-status-badge {
    width: fit-content;
    margin-left: 84px;
  }
  .lookup-cancel-button {
    width: 100%;
    min-height: 44px;
  }
}

/* Atalho exibido somente quando o site é aberto pelo administrativo */
.staff-admin-bridge {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 18px));
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(20, 74, 39, .94);
  color: #fff;
  font-weight: 800;
  font-size: .86rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(16, 50, 28, .22);
  backdrop-filter: blur(10px);
}
.staff-admin-bridge:hover,
.staff-admin-bridge:focus-visible {
  background: #0f512b;
  transform: translateY(-1px);
  outline: none;
}
@media (max-width: 640px) {
  .staff-admin-bridge {
    right: 12px;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 12px));
    min-height: 42px;
    padding: 9px 13px;
    font-size: .78rem;
  }
}
