:root {
  --primary: #9e5e9e;
  --primary-dark: #7c3f7c;
  --primary-soft: #f6ebf6;
  --accent: #f4d9cc;
  --text: #322635;
  --muted: #6f6272;
  --bg: #fffdfb;
  --white: #ffffff;
  --line: rgba(50, 38, 53, 0.1);
  --shadow: 0 18px 40px rgba(72, 42, 72, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf9 0%, #fff 280px);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.narrow { width: min(100%, 800px); margin: 0 auto; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0 0 14px; line-height: 1.15; }
h1, h2 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(2.3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 16px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #b26bb0 100%);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(158, 94, 158, 0.28);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
}
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(50, 38, 53, 0.06);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  flex: 0 0 auto;
}
.brand img { width: 168px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  font-weight: 600;
}
.main-nav > a,
.nav-dropdown > button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.desktop-cta {
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 136px;
}
.site-header .main-nav > a,
.site-header .nav-dropdown > button,
.site-header .desktop-cta {
  white-space: nowrap !important;
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 260px;
  padding: 14px;
  display: none;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}
.nav-dropdown-menu a:hover { background: var(--primary-soft); }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.menu-toggle, .mobile-only { display: none; }

.hero {
  padding: 92px 0 56px;
}

.hero-slider {
  padding: 28px 0 0;
}
.slider-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(158,94,158,.12);
  background: linear-gradient(135deg, #fff 0%, #fff7fb 50%, #fff 100%);
  box-shadow: var(--shadow);
}
.slider-track {
  position: relative;
  min-height: 620px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slide-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  min-height: 620px;
  padding: 72px 86px 108px;
}
.slide-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}
.slide-visual {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  background: radial-gradient(circle at top, rgba(255,255,255,.88), rgba(255,255,255,0) 40%), linear-gradient(135deg, #efdce7 0%, #fff 100%);
}
.slide-visual::before,
.slide-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}
.slide-visual::before {
  width: 240px;
  height: 240px;
  top: 34px;
  right: 28px;
  background: rgba(255,255,255,.44);
}
.slide-visual::after {
  width: 320px;
  height: 320px;
  left: -60px;
  bottom: -70px;
  background: rgba(255,255,255,.28);
}
.theme-varizes {
  background: linear-gradient(135deg, #d9b5cf 0%, #f7d7e1 50%, #fff7fb 100%);
}
.theme-estrias {
  background: linear-gradient(135deg, #ebc8cf 0%, #f6dfd7 45%, #fff7f4 100%);
}
.theme-rejuvenescer {
  background: linear-gradient(135deg, #dbc3e7 0%, #f4dfee 45%, #fff8fc 100%);
}
.slide-card-float {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.56);
  box-shadow: 0 22px 40px rgba(72, 42, 72, 0.12);
}
.slide-card-float strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  color: var(--text);
}
.slide-card-float span {
  color: var(--muted);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(50,38,53,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 10px 25px rgba(72,42,72,.12);
}
.slider-arrow span {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary-dark);
}
.slider-arrow-prev { left: 20px; }
.slider-arrow-next { right: 20px; }
.slider-bottom {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(50,38,53,.08);
  backdrop-filter: blur(10px);
}
.slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(158,94,158,.28);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, width .2s ease;
}
.slider-dot.is-active {
  width: 28px;
  background: var(--primary);
}
.slider-mini-card {
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(50,38,53,.08);
  backdrop-filter: blur(10px);
}
.slider-mini-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.slider-mini-card strong {
  display: block;
  line-height: 1.35;
}
.section-overlap {
  padding-top: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy p {
  max-width: 640px;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-badges span,
.stat-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  color: var(--text);
}
.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,245,251,1) 100%);
  border: 1px solid rgba(158,94,158,.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-card .photo-stack {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 18px;
}
.visual-box {
  min-height: 190px;
  border-radius: 22px;
  background: linear-gradient(135deg, #efdce7, #fff);
  border: 1px solid rgba(158,94,158,.12);
  padding: 22px;
  display: flex;
  align-items: end;
  justify-content: start;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-heading { margin-bottom: 34px; }
.section-heading.center, .center { text-align: center; }
.cards {
  display: grid;
  gap: 20px;
}
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.soft { background: linear-gradient(180deg, #fff 0%, #fff7fb 100%); }
.icon-bubble {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-soft);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { min-height: 72px; }
.service-card .btn { margin-top: 10px; }

.highlight-band {
  padding: 64px 0;
}
.highlight-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #fff 0%, #fff1f7 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.feature-list, .check-list, .unit-list, .simple-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.feature-list li, .check-list li, .simple-list li {
  position: relative;
  padding-left: 28px;
}
.feature-list li::before, .check-list li::before, .simple-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 800;
}

.page-hero {
  padding: 90px 0 42px;
  text-align: center;
}
.lead-box {
  padding: 28px 0 84px;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px;
  background: linear-gradient(180deg, #fff 0%, #fff4fa 100%);
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(50,38,53,.12);
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.faq-list { display: grid; gap: 14px; }
details {
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}
summary { cursor: pointer; font-weight: 700; color: var(--text); }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-panel {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.muted-box {
  background: #fff7fb;
  border: 1px solid rgba(158,94,158,.12);
  border-radius: 22px;
  padding: 22px;
}
.unit-card p { margin-bottom: 10px; }
.blog-grid article h3 { margin-top: 8px; }
.blog-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
}
.quote-card p { font-size: 1.02rem; color: var(--text); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  padding: 14px 20px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(34,197,94,.25);
}
.site-footer {
  padding-top: 54px;
  background: #2f2431;
  color: rgba(255,255,255,.85);
}
.site-footer p,
.site-footer a,
.site-footer li { color: rgba(255,255,255,.78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
  padding-bottom: 34px;
}
.footer-logo { width: 160px; margin-bottom: 18px; }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .slide-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 32px 108px;
  }
  .slider-track { min-height: 760px; }
  .slide-visual { min-height: 320px; }
  .slider-mini-card { display: none; }
  .slider-arrow { width: 46px; height: 46px; }
  .hero-grid,
  .highlight-shell,
  .lead-grid,
  .split-grid,
  .footer-grid,
  .cards.four,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }
  .desktop-cta { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .mobile-only { display: inline-flex; }
  .nav-dropdown,
  .nav-dropdown-menu { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 8px 0 0;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .site-header .brand img {
    width: 148px;
  }

  .main-nav {
    gap: 10px;
    font-size: 0.92rem;
  }

  .desktop-cta {
    min-width: 168px;
    min-height: 48px;
    padding: 0 18px;
  }
}

@media (max-width: 640px) {
  .hero-slider { padding-top: 16px; }
  .slider-shell { border-radius: 26px; }
  .slider-track { min-height: 700px; }
  .slide-grid { padding: 56px 18px 98px; }
  .slide-visual { min-height: 240px; border-radius: 24px; }
  .slider-bottom { left: 18px; right: 18px; bottom: 18px; }
  .slider-arrow { top: auto; bottom: 110px; transform: none; }
  .slider-arrow-prev { left: 18px; }
  .slider-arrow-next { right: 18px; }
  .hero { padding-top: 72px; }
  .site-header .brand img { width: 140px; }
  .header-inner { min-height: 76px; }
  .section { padding: 64px 0; }
  .hero-card, .card, .lead-grid, .highlight-shell, .info-panel { padding: 22px; }
}


.hero-slider {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 78vh, 920px);
  overflow: hidden;
  background: #1d1724;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  animation: heroZoom 6s ease forwards;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 17, 31, 0.78) 0%, rgba(23, 17, 31, 0.45) 45%, rgba(23, 17, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 720px;
}

.hero-content p {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.42);
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 30px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 991px) {
  .hero-slider {
    min-height: 72vh;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 90px;
    max-width: 100%;
  }

  .hero-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 88vh;
  }

  .hero-slide {
    background-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(23, 17, 31, 0.40) 0%, rgba(23, 17, 31, 0.68) 45%, rgba(23, 17, 31, 0.82) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 88vh;
    padding-top: 120px;
    padding-bottom: 92px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .hero-nav {
    display: none;
  }

  .hero-dots {
    bottom: 20px;
  }
}


.reveal {
  opacity: 0;
  transform: translateY(85px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
  will-change: opacity, transform, filter;
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 767px) {
  .reveal {
    transform: translateY(55px) scale(0.98);
    filter: blur(5px);
    transition-duration: 0.7s;
  }
}



.card,
.feature-card,
.treatment-card,
.blog-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover,
.feature-card:hover,
.treatment-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 22, 40, 0.12);
}

img {
  transition: transform 0.5s ease;
}

.image-hover {
  overflow: hidden;
  border-radius: 24px;
}

.image-hover:hover img {
  transform: scale(1.04);
}

.hero-slide .hero-content > * {
  opacity: 0;
  transform: translateY(24px);
}

.hero-slide.active .hero-kicker {
  animation: fadeUp 0.7s ease 0.15s forwards;
}

.hero-slide.active h1,
.hero-slide.active h2 {
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero-slide.active p {
  animation: fadeUp 0.7s ease 0.45s forwards;
}

.hero-slide.active .hero-buttons {
  animation: fadeUp 0.7s ease 0.6s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BLOCO PREMIUM SCROLL ===== */

.premium-scroll {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.premium-scroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.premium-visual {
  position: relative;
}

.visual-placeholder {
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f3e8f7, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  font-weight: 600;
  color: #6b4b73;
}

.premium-text {
  max-width: 520px;
}

.premium-title {
  opacity: 0;
  transform: translateY(40px);
}

.premium-desc {
  opacity: 0;
  transform: translateY(40px);
}

.premium-list li {
  opacity: 0;
  transform: translateY(30px);
}

/* mobile */
@media (max-width: 991px) {
  .premium-scroll-inner {
    grid-template-columns: 1fr;
  }

  .visual-placeholder {
    height: 260px;
  }
}

/* ===== HERO IBLASER MODERNO - INSPIRAÇÃO BEAUTIQUE ===== */

.ib-hero-modern {
  position: relative;
  width: 100%;
  height: clamp(620px, 92vh, 980px);
  min-height: 620px;
  overflow: hidden;
  background: #201625;
}

.ib-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.4s ease;
}

.ib-hero-slide picture,
.ib-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ib-hero-img {
  object-fit: cover;
  object-position: center;
}

.ib-hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.ib-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 18, 33, 0.82) 0%, rgba(28, 18, 33, 0.56) 42%, rgba(28, 18, 33, 0.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.28) 100%);
}

.ib-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.ib-hero-copy {
  max-width: 760px;
  color: #fff;
  padding-top: 90px;
  padding-left: clamp(40px, 6vw, 100px);
}

.ib-hero-label {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.ib-hero-copy h1,
.ib-hero-copy h2 {
  margin: 0 0 24px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.2rem, 4.9vw, 5rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.ib-hero-copy p {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.75;
}

.ib-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-glass {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.ib-hero-counter {
  position: absolute;
  right: 34px;
  bottom: 36px;
  z-index: 5;
  color: #fff;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.ib-hero-counter span {
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.ib-hero-counter small {
  margin-bottom: 5px;
  opacity: 0.7;
}

.ib-scroll-indicator {
  position: absolute;
  left: 15px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ib-scroll-indicator i {
  display: block;
  width: 76px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  position: relative;
  overflow: hidden;
}

.ib-scroll-indicator i::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: #fff;
  animation: ibScrollLine 1.8s ease infinite;
}

@keyframes ibScrollLine {
  0% { left: -30%; }
  100% { left: 100%; }
}

.ib-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.ib-hero-arrow:hover {
  background: rgba(255,255,255,0.24);
}

.ib-hero-prev {
  left: 24px;
}

.ib-hero-next {
  right: 24px;
}

.ib-hero-dots {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.ib-hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.45);
  transition: 0.25s ease;
}

.ib-hero-dot.active {
  width: 34px;
  background: #fff;
}

.ib-hero-slide.active .ib-hero-label,
.ib-hero-slide.active h1,
.ib-hero-slide.active h2,
.ib-hero-slide.active p,
.ib-hero-slide.active .ib-hero-actions {
  animation: ibHeroText 0.9s ease forwards;
}

.ib-hero-slide.active h1,
.ib-hero-slide.active h2 {
  animation-delay: 0.12s;
}

.ib-hero-slide.active p {
  animation-delay: 0.22s;
}

.ib-hero-slide.active .ib-hero-actions {
  animation-delay: 0.32s;
}

@keyframes ibHeroText {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .ib-hero-modern {
    height: 86vh;
    min-height: 620px;
  }

  .ib-hero-copy {
    max-width: 680px;
  }

  .ib-hero-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .ib-hero-copy {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .ib-hero-modern {
    height: 92vh;
    min-height: 640px;
  }

  .ib-hero-slide {
    background-position: center top;
  }

  .ib-hero-shade {
    background:
      linear-gradient(180deg, rgba(28,18,33,0.18) 0%, rgba(28,18,33,0.58) 45%, rgba(28,18,33,0.88) 100%);
  }

  .ib-hero-content {
    align-items: flex-end;
    padding-bottom: 92px;
  }

  .ib-hero-copy {
    padding-top: 120px;
  }

.ib-hero-copy h1,
.ib-hero-copy h2 {
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1.04;
}

  .ib-hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .ib-hero-slide.active .ib-hero-label,
  .ib-hero-slide.active h1,
  .ib-hero-slide.active h2,
  .ib-hero-slide.active p,
  .ib-hero-slide.active .ib-hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .ib-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ib-hero-actions .btn,
  .ib-hero-actions .btn-glass {
    width: 100%;
  }

  .ib-scroll-indicator {
    left: 20px;
    bottom: 24px;
  }

  .ib-scroll-indicator i {
    width: 48px;
  }

  .ib-hero-counter {
    right: 20px;
    bottom: 22px;
  }

  .ib-hero-counter span {
    font-size: 30px;
  }

  .ib-hero-dots {
    bottom: 62px;
  }
}



/* ============================= */
/* INTRO PREMIUM */
/* ============================= */

.intro-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5b5561;
}

/* ============================= */
/* TRATAMENTOS MODERNOS */
/* ============================= */

.treatment-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.treatment-modern-card {
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 20, 40, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.treatment-modern-card span {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #a889b4;
}

.treatment-modern-card h3 {
  margin: 10px 0 12px;
  font-size: 1.4rem;
  color: #2d2633;
}

.treatment-modern-card p {
  font-size: 0.95rem;
  color: #6b6570;
  line-height: 1.6;
  margin-bottom: 18px;
}

.treatment-modern-card a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #8e5ea2;
  font-weight: 600;
}

.treatment-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(30, 20, 40, 0.12);
}

/* ============================= */
/* ABOUT MODERNO */
/* ============================= */

.about-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-modern-image {
  height: 420px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
}

.about-modern-copy p {
  margin-bottom: 20px;
  color: #5c5662;
  line-height: 1.7;
}

.about-modern-copy blockquote {
  margin: 22px 0;
  padding-left: 18px;
  border-left: 3px solid #d7c5e3;
  font-style: italic;
  color: #7b7188;
}

/* ============================= */
/* VALORES */
/* ============================= */

.clinic-values .card.soft {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(30, 20, 40, 0.05);
  transition: 0.35s ease;
}

.clinic-values .card.soft:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30, 20, 40, 0.1);
}

/* ============================= */
/* GALERIA */
/* ============================= */

.gallery-strip-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gallery-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-mini-grid div {
  height: 140px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
}

.gallery-mini-grid div:hover {
  transform: scale(1.04);
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 991px) {
  .intro-premium,
  .about-modern-grid,
  .gallery-strip-shell {
    grid-template-columns: 1fr;
  }

  .treatment-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .treatment-grid-modern {
    grid-template-columns: 1fr;
  }

  .about-modern-image {
    height: 260px;
  }

  .gallery-mini-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================= */
/* QUEM SOMOS - VISUAL BEAUTIQUE */
/* ============================= */

.ib-about-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 18, 33, 0.78), rgba(28, 18, 33, 0.32)),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 10px 0 18px;
}

.inner-hero p {
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.eyebrow.light {
  color: rgba(255,255,255,0.78);
}

.about-intro-grid,
.about-welcome-grid,
.about-feature-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-intro-copy h2,
.about-welcome-copy h2,
.about-feature-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 12px 0 24px;
}

.about-intro-copy p,
.about-welcome-copy p,
.about-feature-copy p {
  color: #625b68;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-image-collage {
  position: relative;
  min-height: 560px;
}

.about-img {
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(30, 20, 40, 0.14);
}

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 460px;
}

.about-img-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  border: 10px solid #fff;
}

.about-welcome {
  background: #fbf7fb;
}

.about-video-card {
  min-height: 500px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.about-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 40, 0.18);
}

.play-badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #8e5ea2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.18);
}

.about-values-modern .card.soft {
  min-height: 240px;
}

.about-treatments-feature {
  background: #211626;
  color: #fff;
}

.about-treatments-feature .eyebrow,
.about-treatments-feature h2,
.about-treatments-feature p {
  color: #fff;
}

.about-treatment-list {
  display: grid;
  gap: 14px;
}

.about-treatment-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  transition: 0.28s ease;
}

.about-treatment-list a::after {
  content: "→";
  opacity: 0.75;
}

.about-treatment-list a:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.14);
}

.about-cta-shell {
  min-height: 460px;
  border-radius: 34px;
  padding: clamp(34px, 6vw, 76px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,18,33,0.78), rgba(28,18,33,0.18));
}

.about-cta-shell > div {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.about-cta-shell h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 12px 0 18px;
}

.about-cta-shell p {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .about-intro-grid,
  .about-welcome-grid,
  .about-feature-shell {
    grid-template-columns: 1fr;
  }

  .about-image-collage {
    min-height: 480px;
  }

  .about-img-main {
    height: 400px;
  }

  .about-video-card {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .ib-about-hero {
    min-height: 430px;
  }

  .about-image-collage {
    min-height: 390px;
  }

  .about-img-main {
    width: 88%;
    height: 320px;
  }

  .about-img-small {
    width: 55%;
    height: 190px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-cta-shell {
    min-height: 420px;
    border-radius: 24px;
  }
}

/* ============================= */
/* A CLÍNICA */
/* ============================= */

.ib-clinic-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* ============================= */
/* TRATAMENTOS - TEMPLATE MODERNO */
/* ============================= */

.treatment-hero-modern {
  min-height: 540px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.treatment-intro-grid,
.treatment-process-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.treatment-intro-copy h2,
.treatment-process-shell h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 12px 0 24px;
}

.treatment-intro-copy p,
.treatment-process-shell p {
  color: #625b68;
  line-height: 1.75;
  margin-bottom: 24px;
}

.treatment-intro-image {
  min-height: 520px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(30, 20, 40, 0.14);
}

.treatment-before-after {
  height: 520px;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(30, 20, 40, 0.14);
}

.treatment-benefits-modern {
  background: #fbf7fb;
}

.treatment-process-modern {
  background: #211626;
  color: #fff;
}

.treatment-process-modern .eyebrow,
.treatment-process-modern h2,
.treatment-process-modern p {
  color: #fff;
}

.treatment-process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.process-item span {
  color: #d8b6e7;
  font-weight: 700;
}

.process-item h3 {
  color: #fff;
  margin: 0 0 8px;
}

.process-item p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 991px) {
  .treatment-intro-grid,
  .treatment-process-shell {
    grid-template-columns: 1fr;
  }

  .treatment-intro-image {
    min-height: 360px;
  }

  .treatment-before-after {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .treatment-hero-modern {
    min-height: 430px;
  }

  .treatment-intro-image {
    min-height: 280px;
    border-radius: 24px;
  }

  .treatment-before-after {
    height: 280px;
    border-radius: 24px;
  }
}


/* CORREÇÃO A CLÍNICA - CLAREZA E LEITURA */

.ib-clinic-hero {
  min-height: 440px;
  background-position: center;
}

.ib-clinic-hero .inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 18, 38, 0.68), rgba(32, 18, 38, 0.28)),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.22));
}

.about-intro-modern {
  background: #fff;
}

.about-intro-copy h2,
.about-welcome-copy h2,
.about-feature-copy h2 {
  color: #2b1733;
}

.about-intro-copy p,
.about-welcome-copy p,
.about-feature-copy p {
  color: #62576a;
}

.about-image-collage {
  min-height: 500px;
}

.about-img-main {
  width: 76%;
  height: 420px;
}

.about-img-small {
  width: 44%;
  height: 230px;
}

.about-welcome {
  background: #fbf7fb;
}

.about-treatments-feature {
  background: #2a1832;
}

@media (max-width: 767px) {
  .ib-clinic-hero {
    min-height: 360px;
  }

  .about-intro-copy h2,
  .about-welcome-copy h2,
  .about-feature-copy h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
}


/* CORREÇÃO MENU TRATAMENTOS */

.nav-dropdown,
.menu-dropdown,
.has-dropdown {
  position: relative;
}

.nav-dropdown-menu,
.dropdown-menu,
.submenu {
  top: calc(100% + 8px) !important;
  margin-top: 0 !important;
  z-index: 9999;
}

.nav-dropdown::after,
.menu-dropdown::after,
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.menu-dropdown:hover .dropdown-menu,
.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* GALERIA - PORTFOLIO MASONRY */

.ib-gallery-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #eee;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.08);
}

.gallery-masonry-item.tall {
  grid-row: span 2;
}

.gallery-masonry-item.wide {
  grid-column: span 2;
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(33,22,38,0.02), rgba(33,22,38,0.82));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-hover span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transform: translateY(18px);
  transition: 0.35s ease;
}

.gallery-hover h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  transform: translateY(22px);
  transition: 0.35s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}

.gallery-masonry-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-masonry-item:hover .gallery-hover span,
.gallery-masonry-item:hover .gallery-hover h3 {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .gallery-masonry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .ib-gallery-hero {
    min-height: 420px;
  }

  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-masonry-item.tall,
  .gallery-masonry-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-hover {
    opacity: 1;
  }
}



/* BEFORE / AFTER SLIDER */

.before-after {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 28px;
  background: #eee;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.12);
  cursor: ew-resize;
  --position: 50%;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-before {
  z-index: 1;
}


.ba-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 0 0 var(--position));
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 18px rgba(0,0,0,0.18);
}

.ba-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: #8e5ea2;
  cursor: ew-resize;
  box-shadow: 0 12px 35px rgba(30, 20, 40, 0.22);
}

.ba-handle span {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.ba-label {
  position: absolute;
  z-index: 5;
  top: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(33, 22, 38, 0.58);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.ba-label-before {
  left: 18px;
}

.ba-label-after {
  right: 18px;
}

@media (max-width: 767px) {
  .before-after {
    border-radius: 22px;
  }

  .ba-handle {
    width: 48px;
    height: 48px;
  }
}


/* ============================= */
/* CONTATO MODERNO */
/* ============================= */

.ib-contact-hero {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* GRID */

.contact-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* FORM */

.contact-form-modern h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 10px 0 30px;
}

.contact-form-modern form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #e6e1ea;
  background: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.25s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #8e5ea2;
}

/* INFO */

.contact-info-modern h2 {
  margin: 10px 0 30px;
}

.contact-item {
  margin-bottom: 26px;
}

.contact-item h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8e5ea2;
  margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
  color: #4b3e55;
  text-decoration: none;
}

/* MAPA */

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* RESPONSIVO */

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


/* CORREÇÃO CONTATO - REMOVER CAMADA ESCURA */

.contact-modern {
  position: relative;
  background: #fff;
  z-index: 3;
  overflow: visible;
}

.contact-modern::before,
.contact-modern::after {
  display: none !important;
  content: none !important;
}

.contact-modern-grid {
  position: relative;
  z-index: 5;
}

.contact-form-modern,
.contact-info-modern {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.contact-form-modern h2,
.contact-info-modern h2 {
  color: #2b1733;
}

.contact-form-modern,
.contact-info-modern,
.contact-item p,
.contact-item a {
  color: #4b3e55;
}



/* BLOG GRID - ESTILO BEAUTIQUE */

.ib-blog-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.blog-grid-section {
  background: #fff;
}

.blog-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 54px;
}

.blog-card-modern {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.08);
  transition: 0.35s ease;
}

.blog-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(30, 20, 40, 0.14);
}

.blog-card-image {
  display: block;
  height: 290px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.65s ease;
}

.blog-card-modern:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-content {
  padding: 30px;
}

.blog-category {
  display: inline-flex;
  margin-bottom: 14px;
  color: #8e5ea2;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-card-content h2 {
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.blog-card-content h2 a {
  color: #2b1733;
  text-decoration: none;
}

.blog-card-content p {
  color: #625b68;
  line-height: 1.65;
  margin-bottom: 24px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-card-footer small {
  color: #8b8190;
}

.blog-card-footer a {
  color: #8e5ea2;
  text-decoration: none;
  font-weight: 700;
}

/* POST INTERNO */

.blog-post-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 70px;
  align-items: start;
}

.blog-post-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #5d5564;
}

.blog-post-content h2 {
  color: #2b1733;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 46px 0 18px;
}

.blog-post-content p {
  margin-bottom: 20px;
}

.blog-post-content ul {
  padding-left: 20px;
  margin: 20px 0;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-card {
  padding: 30px;
  border-radius: 28px;
  background: #fbf7fb;
  position: sticky;
  top: 120px;
}

.blog-post-card h3 {
  margin-top: 0;
  color: #2b1733;
}

.blog-post-card a {
  display: block;
  color: #8e5ea2;
  text-decoration: none;
  margin-top: 14px;
  font-weight: 700;
}

.blog-post-feature-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 34px;
  box-shadow: 0 20px 55px rgba(30, 20, 40, 0.12);
}

@media (max-width: 991px) {
  .blog-grid-modern {
    grid-template-columns: 1fr 1fr;
  }

  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .ib-blog-hero,
  .blog-post-hero {
    min-height: 420px;
  }

  .blog-grid-modern {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 250px;
  }

  .blog-post-feature-image {
    height: 280px;
  }
}

.blog-card-image,
.blog-title-button,
.blog-read-more {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.blog-card-image {
  width: 100%;
}

.blog-title-button {
  color: #2b1733;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.blog-read-more {
  color: #8e5ea2;
  font-weight: 700;
  text-decoration: none;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.blog-modal.is-open {
  display: block;
}

.blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 25, 0.72);
  backdrop-filter: blur(8px);
}

.blog-modal-box {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 24px auto;
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.blog-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: flex;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #8e5ea2;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
}

#blogModalImage {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
}

#blogModalCategory {
  display: inline-flex;
  color: #8e5ea2;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

#blogModalTitle {
  color: #2b1733;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 10px;
}

#blogModalDate {
  display: block;
  color: #8b8190;
  margin-bottom: 24px;
}

#blogModalContent {
  color: #5d5564;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

#blogModalContent p {
  margin-bottom: 18px;
}

body.blog-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .blog-modal-box {
    padding: 22px;
    border-radius: 22px;
  }

  #blogModalImage {
    height: 240px;
  }
}



/* CONTATO - ESTILO BEAUTIQUE */

.ib-contact-hero-new {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-beautique {
  background: #fff;
}

.contact-beautique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-beautique-info h2,
.contact-beautique-form h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #2b1733;
  margin: 12px 0 24px;
}

.contact-beautique-info > p {
  color: #625b68;
  line-height: 1.75;
  margin-bottom: 34px;
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info-list h3 {
  color: #8e5ea2;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-list p,
.contact-info-list a {
  color: #4b3e55;
  text-decoration: none;
  line-height: 1.6;
}

.contact-beautique-form {
  background: #fbf7fb;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 34px;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.08);
}

.contact-beautique-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-beautique-form input,
.contact-beautique-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #e6e1ea;
  background: #fff;
  font-size: 15px;
  outline: none;
}

.contact-beautique-form input:focus,
.contact-beautique-form textarea:focus {
  border-color: #8e5ea2;
}

/* UNIDADES */

.contact-units-beautique {
  background: #fbf7fb;
}

.units-beautique-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 52px;
}

.unit-beautique-card {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.08);
}

.unit-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.unit-info {
  padding: 32px;
}

.unit-info span,
.unit-extra span {
  color: #8e5ea2;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.unit-info h3,
.unit-extra h3 {
  color: #2b1733;
  font-size: 1.8rem;
  margin: 10px 0 12px;
}

.unit-info p,
.unit-extra p {
  color: #625b68;
  line-height: 1.65;
  margin-bottom: 20px;
}

.unit-info a {
  color: #8e5ea2;
  font-weight: 700;
  text-decoration: none;
}

.unit-extra {
  margin-top: 30px;
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 45px rgba(30, 20, 40, 0.06);
}

.unit-extra h3,
.unit-extra p {
  margin-left: 0;
}

@media (max-width: 991px) {
  .contact-beautique-grid,
  .units-beautique-grid {
    grid-template-columns: 1fr;
  }

  .unit-extra {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .ib-contact-hero-new {
    min-height: 420px;
  }

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

  .unit-map iframe {
    height: 300px;
  }
}
