:root {
  --bg: #050606;
  --bg-2: #0c1110;
  --card: rgba(10, 16, 14, 0.88);
  --gold: #c8a43a;
  --gold-light: #e4cf7f;
  --gold-dark: #8a6422;
  --green: #5f8f67;
  --green-light: #8fb89a;
  --text: #f4eedf;
  --muted: #c8c2b2;
  --line: rgba(200, 164, 58, 0.28);
  --radius: 20px;
  --max: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 80% 5%, rgba(200, 164, 58, 0.10), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(95, 143, 103, 0.08), transparent 24%),
    linear-gradient(180deg, #040505 0%, #0a0f0d 55%, #040505 100%);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(228, 207, 127, 0.17) 1px, transparent 1.6px);
  background-size: 210px 210px;
  opacity: .18;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 6, 6, 0.82);
  border-bottom: 1px solid rgba(200, 164, 58, 0.12);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 245px; }
.brand-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -5px;
  background: linear-gradient(180deg, #f6dc97 0%, #e1b54f 28%, #c78d2f 52%, #8a5d22 78%, #3b1f0d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(244, 201, 120, 0.16), 0 0 24px rgba(121, 73, 25, 0.18);
  filter: drop-shadow(1px 2px 0 rgba(45, 24, 10, 0.45));
}
.brand-text strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .55px;
  text-transform: uppercase;
}
.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.menu { display: flex; align-items: center; gap: 21px; }
.menu a { color: var(--muted); font-size: 14px; padding: 12px 0; position: relative; }
.menu a.active, .menu a:hover { color: var(--gold-light); }
.menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-light), transparent);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(200, 164, 58, .16); }
.btn-gold { background: linear-gradient(135deg, #ecd37f, #c8a43a 58%, #8fb89a); color: #141006; border: none; }
.btn-dark { background: rgba(4, 6, 6, .42); color: var(--text); }
.whatsapp-btn,
.instagram-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-light);
  font-size: 20px;
}
.instagram-btn {
  color: var(--gold-light);
  font-weight: 800;
}
.instagram-btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(143, 184, 154, .18);
}


.hero {
  display: grid;
  grid-template-columns: minmax(430px, .96fr) minmax(520px, 1.04fr);
  gap: 46px;
  align-items: center;
  min-height: calc(100svh - 74px);
  padding: 28px 0 26px;
}
.eyebrow {
  display: inline-flex;
  color: var(--green-light) !important;
  border: 1px solid rgba(143, 184, 154, .28);
  background: rgba(95, 143, 103, .08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #f1e4d4;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.gold-line {
  width: 172px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--green), transparent);
  margin: 22px 0;
  position: relative;
}
.gold-line::after { content: "✦"; position: absolute; right: -10px; top: -14px; color: var(--gold-light); font-size: 19px; }
.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.68;
  margin-bottom: 24px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-image-box { position: relative; border-radius: 26px; background: radial-gradient(circle at 50% 45%, rgba(200, 164, 58, .11), transparent 58%); padding: 7px; width: 100%; }
.hero-image {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(200, 164, 58, 0.22);
  background: #0a1110;
  box-shadow: 0 0 42px rgba(200, 164, 58, 0.12);
  transition: opacity .25s ease, transform .25s ease;
}
.hero-image.changing { opacity: 0; transform: scale(.985); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 18px auto 30px; }
.treatment-card {
  position: relative;
  min-height: 350px;
  background: linear-gradient(145deg, rgba(5, 11, 10, .96), rgba(13, 24, 20, .88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: .25s ease;
}
.treatment-card:hover, .treatment-card.active {
  border-color: rgba(228, 207, 127, .72);
  box-shadow: 0 0 0 1px rgba(228, 207, 127, .12), 0 0 34px rgba(200, 164, 58, .18);
  transform: translateY(-3px);
}
.treatment-card.active::after {
  content: "✦";
  position: absolute;
  top: 0;
  right: 24px;
  width: 54px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  background: rgba(200, 164, 58, .11);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.card-content { position: relative; z-index: 3; padding: 24px; }
.card-number { display: block; font-family: Georgia, serif; color: var(--gold); font-size: 43px; line-height: 1; margin-bottom: 8px; }
.card-content h2 { font-family: Georgia, serif; font-size: 27px; font-weight: 500; color: #f2e3cf; margin-bottom: 10px; }
.card-content p { max-width: 262px; color: var(--muted); line-height: 1.55; font-size: 14px; }
.card-image { position: absolute; right: 0; bottom: 0; width: 68%; height: 50%; object-fit: cover; z-index: 1; opacity: .94; mask-image: linear-gradient(90deg, transparent 0%, black 32%); }
.card-arrow {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(4, 6, 6, .52);
  color: var(--gold-light);
  font-size: 23px;
  cursor: pointer;
  z-index: 4;
}

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 22px auto 40px; }
.benefits article, .treatment-grid article, .why-items article, .reviews article, .contact-strip, .location-card {
  background: rgba(8, 15, 13, .76);
  border: 1px solid var(--line);
  border-radius: 17px;
}
.benefits article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 20px; align-items: center; }
.benefit-icon, .service-icon, .contact-item span {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 24px;
  flex-shrink: 0;
}
.benefits h3, .treatment-grid h3, .why-items h3 { font-family: Georgia, serif; color: #f2e3cf; font-weight: 500; font-size: 19px; margin-bottom: 7px; }
.benefits p, .treatment-grid p, .why-items p, .reviews p, .contact-item p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.section-title { font-family: Georgia, serif; text-align: center; color: var(--gold); font-size: clamp(31px, 4vw, 40px); font-weight: 500; margin: 20px 0; }
.treatment-grid { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-bottom: 38px; }
.treatment-grid article { border: none; border-right: 1px solid var(--line); border-radius: 0; padding: 24px 15px; text-align: center; min-height: 200px; }
.treatment-grid article:last-child { border-right: none; }
.treatment-grid .service-icon { margin: 0 auto 13px; }

.why { display: grid; grid-template-columns: 270px 1fr; gap: 26px; margin-bottom: 32px; }
.why-left h2, .why-left h3 { font-family: Georgia, serif; font-weight: 500; line-height: 1.12; }
.why-left h2 { color: var(--gold); font-size: 38px; }
.why-left h3 { color: var(--text); font-size: 34px; margin-top: 26px; }
.rating { margin-top: 18px; color: var(--muted); line-height: 1.6; }
.rating strong { color: var(--gold-light); font-size: 21px; letter-spacing: 2px; }
.rating span { margin-left: 10px; }
.why-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.why-items article { padding: 20px; }
.why-items .service-icon { border: none; margin-bottom: 8px; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reviews article { padding: 24px; }
.reviews span { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 42px; line-height: .8; }
.reviews strong { display: block; margin-top: 14px; color: var(--gold-light); letter-spacing: 2px; }

.contact-strip { margin: 30px auto 22px; padding: 22px; display: grid; grid-template-columns: 1.05fr .8fr 1fr auto auto; gap: 20px; align-items: center; }
.contact-strip > div:first-child p { color: var(--muted); line-height: 1.5; }
.contact-strip > div:first-child strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: 31px; font-style: italic; font-weight: 500; }
.contact-item { display: flex; align-items: center; gap: 13px; }
.contact-item strong { color: #efe0c8; }

.location { display: grid; grid-template-columns: 390px 1fr; margin-bottom: 30px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.location-card { border: none; border-radius: 0; padding: 28px; }
.location-card h2 { font-family: Georgia, serif; font-size: 34px; font-weight: 500; margin-bottom: 14px; }
.location-card p { color: var(--muted); line-height: 1.62; margin-bottom: 13px; }
.location-card strong { color: #f2e3cf; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.map-embed { min-height: 340px; background: #0b0f0e; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.12) contrast(1.02) saturate(.95); }

.footer { border-top: 1px solid rgba(200, 164, 58, .14); padding: 32px 0 42px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer p { color: var(--muted); text-align: center; line-height: 1.6; font-size: 14px; }
.social { display: flex; gap: 12px; }
.social a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-weight: 800; }


@media (max-width: 1380px) {
  :root { --max: 1240px; }

  .hero {
    grid-template-columns: .94fr 1.06fr;
    gap: 30px;
    min-height: auto;
    padding: 34px 0 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 4.8vw, 68px);
  }

  .hero-lead {
    max-width: 560px;
    font-size: clamp(15px, 1.45vw, 18px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 26px;
  }

  .hero-image-box {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 1120px) {
  .header-inner { flex-wrap: wrap; gap: 10px 16px; padding: 10px 0; }
  .brand { min-width: 220px; }
  .menu {
    order: 3;
    display: flex;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .menu a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(200, 164, 58, 0.18);
    border-radius: 999px;
    background: rgba(5, 12, 11, 0.55);
    font-size: 13px;
  }
  .menu a.active::after { display: none; }
  .hero { grid-template-columns: 1fr; }
  .cards, .benefits, .reviews { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why-items { grid-template-columns: repeat(2, 1fr); }
  .contact-strip { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .hero-image-box { max-width: 820px; margin: 0 auto; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 20px, var(--max)); }
  .header-inner { min-height: auto; padding: 12px 0; }
  .brand { min-width: 0; gap: 10px; }
  .brand-logo { font-size: 48px; }
  .brand-text strong { font-size: 13px; }
  .brand-text span { font-size: 10px; }
  .header-actions .btn { display: none; }
  .whatsapp-btn,
.instagram-btn { width: 40px; height: 40px; }
  .hero { grid-template-columns: 1fr; gap: 18px; padding-top: 20px; }
  .hero h1 { font-size: 40px; line-height: 1.1; letter-spacing: -1px; }
  .hero-lead { font-size: 15px; line-height: 1.6; }
  .hero-buttons { gap: 10px; }
  .btn { width: 100%; padding: 13px 16px; }
  .hero-image { border-radius: 18px; }
  .cards, .benefits, .reviews, .why-items { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: 320px; }
  .card-content h2 { font-size: 26px; }
  .card-content p { font-size: 14px; }
  .card-image { width: 66%; height: 42%; }
  .treatment-grid article { border-right: none; border-bottom: 1px solid var(--line); }
  .contact-strip { grid-template-columns: 1fr; padding: 18px; }
  .location { grid-template-columns: 1fr; }
  .map-embed { min-height: 280px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer p { text-align: left; }
}

/* =====================================================
   Destaque WhatsApp / Instagram + botões flutuantes
   ===================================================== */
.header-actions-social {
  gap: 10px;
}

.btn-whatsapp-top {
  background: linear-gradient(135deg, #25d366, #1ea952);
  color: #fff;
  border: none;
  box-shadow: 0 0 22px rgba(37, 211, 102, .28);
}

.btn-whatsapp-top:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(37, 211, 102, .38);
}

.btn-instagram-top {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
  color: #fff;
  border: none;
  box-shadow: 0 0 22px rgba(225, 48, 108, .24);
}

.btn-instagram-top:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(225, 48, 108, .34);
}

.contact-strip {
  grid-template-columns: 1.05fr .95fr .95fr 1.1fr auto;
}

.contact-strip a.contact-item {
  text-decoration: none;
  color: inherit;
}

.contact-whatsapp {
  background: rgba(37, 211, 102, .10);
  border: 1px solid rgba(37, 211, 102, .34);
  border-radius: 16px;
  padding: 12px;
}

.contact-instagram {
  background: rgba(225, 48, 108, .08);
  border: 1px solid rgba(225, 48, 108, .30);
  border-radius: 16px;
  padding: 12px;
}

.contact-whatsapp span {
  border-color: rgba(37, 211, 102, .42);
  color: #64e995;
}

.contact-instagram span {
  border-color: rgba(225, 48, 108, .38);
  color: #f3a1bd;
}

.floating-social {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-social a {
  text-decoration: none;
}

.floating-instagram {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
  box-shadow: 0 10px 24px rgba(225, 48, 108, .34);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-instagram:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 28px rgba(225, 48, 108, .44);
}

.floating-whatsapp {
  min-width: 64px;
  height: 64px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #1ea952);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .38);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp span {
  font-size: 15px;
  white-space: nowrap;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .48);
}

@media (max-width: 1280px) {
  .header-actions-social .btn {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 1120px) {
  .header-actions-social .btn-instagram-top {
    display: none;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-actions-social .btn-whatsapp-top,
  .header-actions-social .btn-instagram-top {
    display: none;
  }

  .floating-social {
    right: 12px;
    bottom: 16px;
    gap: 10px;
  }

  .floating-instagram {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .floating-whatsapp {
    height: 56px;
    min-width: 56px;
    padding: 0 15px;
    font-size: 20px;
  }

  .floating-whatsapp span {
    display: none;
  }
}


/* =====================================================
   vFinal - topo limpo + redes fixas
   ===================================================== */
.header-actions-clean {
  margin-left: auto;
}

.btn-network-format {
  border-color: rgba(143, 184, 154, 0.35);
  color: var(--green-light);
}

.contact-strip {
  grid-template-columns: 1.05fr 0.95fr 0.95fr 1.15fr;
}

@media (max-width: 1120px) {
  .contact-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-actions-clean .btn {
    display: inline-flex;
    width: auto;
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}


/* =====================================================
   AJUSTES FINAIS — NOTEBOOK E CELULAR
   Mantém o menu visível em telas menores e melhora leitura.
   ===================================================== */
@media (max-width: 1366px) {
  :root { --max: 1280px; }
  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 22px;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(42px, 4.5vw, 66px);
  }
  .hero-lead {
    font-size: clamp(15px, 1.25vw, 18px);
    max-width: 570px;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0;
  }
  .menu {
    order: 3;
    display: flex !important;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .menu a {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(200, 164, 58, 0.18);
    border-radius: 999px;
    background: rgba(5, 12, 11, 0.55);
    font-size: 13px;
  }
  .menu a.active::after {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 28px;
  }
}

@media (max-width: 700px) {
  .header {
    position: sticky;
  }
  .header-inner {
    gap: 8px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .header-actions-clean {
    flex: 0 0 auto;
  }
  .header-actions-clean .btn {
    display: inline-flex !important;
    width: auto;
    padding: 10px 12px;
    font-size: 12px;
  }
  .menu {
    margin-top: 2px;
    padding-bottom: 8px;
  }
  .menu a {
    font-size: 12px;
    padding: 8px 11px;
  }
  .hero {
    padding-top: 18px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .contact-strip > div:first-child strong {
    font-size: 27px;
  }
  .location-actions .btn {
    width: 100%;
  }
}

/* FAQ discreto na localização */
.faq-discreto {
  margin-top: 18px;
  max-width: 620px;
}

.faq-discreto-titulo {
  margin-bottom: 8px;
}

.faq-discreto details {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 10px 0;
}

.faq-discreto summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-discreto p {
  margin: 8px 0 0;
  line-height: 1.55;
}

/* Ajuste visual do título principal - SEO/local */
.hero-title {
  line-height: 1.04;
  margin: 0;
}

.hero-title-main {
  display: inline-block;
  color: #f5efe6;
  font-size: 0.95em;
  font-weight: 700;
}

.hero-title-sub {
  display: inline-block;
  color: #c8a96b;
  font-size: 0.48em;
  font-weight: 600;
  line-height: 1.18;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .hero-title-main {
    font-size: 0.82em;
  }

  .hero-title-sub {
    font-size: 0.42em;
    line-height: 1.25;
  }
}

/* Ajustes finos SEO/Tratamentos */
.section-subtitle.tratamentos-subtitle {
  max-width: 900px;
  margin: -8px auto 28px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.treatments-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.treatments-cta .btn {
  text-align: center;
}

@media (max-width: 700px) {
  .section-subtitle.tratamentos-subtitle {
    margin: -4px auto 22px;
    font-size: 0.95rem;
    text-align: left;
  }

  .treatments-cta {
    justify-content: stretch;
  }

  .treatments-cta .btn {
    width: 100%;
  }
}

