/* ========================================
   ESTILOS GLOBAIS E RESET
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  background-color: #fff;
  color: #333;
  font-display: swap;
}

/* ========================================
   APP SHELL — topbar + sidebar + bottom nav
   (inspirado em Fatal Model, visual Bellume)
   ======================================== */
.bc-acompanhantes-app {
  --bc-nav-accent: #e91e63;
  --bc-nav-accent-dark: #c2185b;
  --bc-nav-accent-soft: rgba(233, 30, 99, 0.08);
  --bc-nav-border: #e8e8e8;
  --bc-nav-bg: #fff;
  --bc-nav-sidebar-bg: #f5f5f7;
  --bc-nav-text: #2c3e50;
  --bc-nav-muted: #6b7280;
  --bc-nav-sidebar-w: 260px;
  --bc-nav-topbar-h: 64px;
  --bc-nav-bottom-h: 62px;
  min-height: 100vh;
  background: #fff;
}

.bc-acompanhantes-body {
  min-height: calc(100vh - var(--bc-nav-topbar-h));
  transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-acompanhantes-main {
  width: 100%;
  min-width: 0;
}

/* Topbar */
.bc-acompanhantes-topbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  height: var(--bc-nav-topbar-h);
  background: var(--bc-nav-bg);
  border-bottom: 1px solid var(--bc-nav-border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.bc-acompanhantes-topbar.is-inner-hidden {
  height: 0;
  border-bottom-color: transparent;
  box-shadow: none;
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
    border-color 0.4s ease 0.04s,
    box-shadow 0.4s ease 0.04s;
}

.bc-acompanhantes-topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.bc-acompanhantes-topbar.is-inner-hidden .bc-acompanhantes-topbar__inner {
  transform: translateY(calc(-1 * var(--bc-nav-topbar-h, 64px)));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .bc-acompanhantes-topbar,
  .bc-acompanhantes-topbar__inner {
    transition: none;
  }
}

.bc-acompanhantes-topbar__inner--no-search {
  grid-template-columns: auto 1fr auto;
}

.bc-acompanhantes-topbar__inner--no-search .bc-acompanhantes-topbar__actions {
  grid-column: 3;
  justify-self: end;
}

.bc-acompanhantes-topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.bc-acompanhantes-topbar__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--bc-nav-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.bc-acompanhantes-menu-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 22px;
  height: 18px;
}

.bc-acompanhantes-menu-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    width 0.25s ease,
    opacity 0.2s ease;
}

.bc-acompanhantes-menu-line:nth-child(1) {
  width: 20px;
}

.bc-acompanhantes-menu-line:nth-child(2) {
  width: 14px;
}

.bc-acompanhantes-menu-line:nth-child(3) {
  width: 20px;
}

.bc-acompanhantes-app--sidebar-open .bc-acompanhantes-menu-line:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}

.bc-acompanhantes-app--sidebar-open .bc-acompanhantes-menu-line:nth-child(2) {
  width: 0;
  opacity: 0;
}

.bc-acompanhantes-app--sidebar-open .bc-acompanhantes-menu-line:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

.bc-acompanhantes-topbar__menu-btn:hover,
.bc-acompanhantes-app--sidebar-open .bc-acompanhantes-topbar__menu-btn {
  background: var(--bc-nav-accent-soft);
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-topbar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bc-acompanhantes-topbar__logo img {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.bc-acompanhantes-topbar__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--bc-nav-accent);
  letter-spacing: -0.3px;
}

.bc-acompanhantes-topbar__search {
  min-width: 0;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.bc-acompanhantes-search-form {
  width: 100%;
}

.bc-acompanhantes-search-wrap {
  position: relative;
}

.bc-acompanhantes-search-input {
  width: 100%;
  height: 44px;
  padding: 0 88px 0 44px !important;
  border: 1.5px solid var(--bc-nav-border);
  border-radius: 999px;
  font-size: 14px;
  background: #fafafa;
  color: var(--bc-nav-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bc-acompanhantes-search-input:focus {
  outline: none;
  border-color: var(--bc-nav-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.bc-acompanhantes-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bc-nav-muted);
  font-size: 14px;
  pointer-events: none;
}

.bc-acompanhantes-search-clear,
.bc-acompanhantes-search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-acompanhantes-search-clear {
  right: 48px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  font-size: 12px;
}

.bc-acompanhantes-search-submit {
  right: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bc-nav-accent);
  color: #fff;
  font-size: 13px;
}

.bc-acompanhantes-search-submit:hover {
  background: var(--bc-nav-accent-dark);
}

.bc-acompanhantes-search-suggestions {
  border-radius: 12px;
}

.bc-acompanhantes-topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bc-acompanhantes-topbar__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--bc-nav-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bc-acompanhantes-topbar__action:hover {
  background: var(--bc-nav-accent-soft);
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-topbar__action i {
  font-size: 18px;
}

.bc-acompanhantes-topbar__action--messages,
.bc-acompanhantes-topbar__action--notifications {
  position: relative;
}

.bc-acompanhantes-topbar__notif-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  top: auto;
  left: auto;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e91e63;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0 0 2px var(--bc-nav-bg, #fff);
}

.bc-acompanhantes-topbar__login,
.bc-acompanhantes-topbar__signup {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bc-acompanhantes-topbar__login {
  color: var(--bc-nav-text);
}

.bc-acompanhantes-topbar__login:hover {
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-topbar__signup {
  background: var(--bc-nav-accent);
  color: #fff;
}

.bc-acompanhantes-topbar__signup:hover {
  background: var(--bc-nav-accent-dark);
  color: #fff;
}

/* Sidebar */
.bc-acompanhantes-overlay {
  position: fixed;
  inset: 0;
  top: var(--bc-nav-topbar-h);
  background: rgba(15, 23, 42, 0.45);
  z-index: 1090;
  backdrop-filter: blur(2px);
}

.bc-acompanhantes-sidebar {
  position: fixed;
  top: var(--bc-nav-topbar-h);
  left: 0;
  z-index: 1100;
  width: min(var(--bc-nav-sidebar-w), 88vw);
  height: calc(100vh - var(--bc-nav-topbar-h));
  background: var(--bc-nav-sidebar-bg);
  border-right: 1px solid var(--bc-nav-border);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
}

.bc-acompanhantes-app--sidebar-open .bc-acompanhantes-sidebar {
  transform: translateX(0);
}

body.bc-nav-navigating {
  cursor: progress;
}

body.bc-nav-navigating .bc-acompanhantes-sidebar__link,
body.bc-nav-navigating .bc-acompanhantes-bottomnav__item {
  pointer-events: none;
  opacity: 0.7;
}

.bc-acompanhantes-sidebar__head {
  position: relative;
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--bc-nav-border);
  background: var(--bc-nav-bg);
}

.bc-acompanhantes-sidebar__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-acompanhantes-sidebar__avatar,
.bc-acompanhantes-sidebar__avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bc-acompanhantes-sidebar__avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-nav-accent-soft);
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-sidebar__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-nav-text);
  line-height: 1.3;
}

.bc-acompanhantes-sidebar__guest-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-nav-text);
}

.bc-acompanhantes-sidebar__guest-actions {
  display: flex;
  gap: 8px;
}

.bc-acompanhantes-sidebar__guest-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--bc-nav-accent);
  color: #fff;
}

.bc-acompanhantes-sidebar__guest-btn--outline {
  background: #fff;
  color: var(--bc-nav-text);
  border: 1.5px solid var(--bc-nav-border);
}

.bc-acompanhantes-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.bc-acompanhantes-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-acompanhantes-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--bc-nav-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bc-acompanhantes-sidebar__link i {
  width: 18px;
  text-align: center;
  color: var(--bc-nav-muted);
  font-size: 15px;
}

.bc-acompanhantes-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-sidebar__link:hover i {
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-sidebar__link.is-active {
  background: #fff;
  color: var(--bc-nav-accent);
  border-left-color: var(--bc-nav-accent);
  font-weight: 700;
}

.bc-acompanhantes-sidebar__link.is-active i {
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-sidebar__badge {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #e91e63;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.bc-acompanhantes-bottomnav__icon-wrap {
  position: relative;
  display: inline-flex;
}

.bc-acompanhantes-bottomnav__badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e91e63;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.bc-acompanhantes-sidebar__footer {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--bc-nav-border);
  background: var(--bc-nav-bg);
}

.bc-acompanhantes-sidebar__logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bc-nav-muted);
  text-decoration: none;
}

.bc-acompanhantes-sidebar__logout:hover {
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-sidebar__social-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--bc-nav-muted);
}

.bc-acompanhantes-sidebar__social {
  display: flex;
  gap: 10px;
}

.bc-acompanhantes-sidebar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--bc-nav-muted);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.bc-acompanhantes-sidebar__social-link:hover {
  color: var(--bc-nav-accent);
  background: var(--bc-nav-accent-soft);
}

/* Bottom nav (mobile) */
.bc-acompanhantes-bottomnav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1190;
  height: var(--bc-nav-bottom-h);
  background: var(--bc-nav-bg);
  border-top: 1px solid var(--bc-nav-border);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.bc-acompanhantes-bottomnav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 4px;
  text-decoration: none;
  color: var(--bc-nav-muted);
  font-size: 10px;
  font-weight: 600;
  position: relative;
}

.bc-acompanhantes-bottomnav__item i {
  font-size: 17px;
}

.bc-acompanhantes-bottomnav__item.is-active {
  color: var(--bc-nav-accent);
}

.bc-acompanhantes-bottomnav__item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--bc-nav-accent);
}

/* Toolbar filtros (abaixo das tabs) */
.bc-acompanhantes-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.bc-acompanhantes-toolbar .smart-filter-btn,
.bc-acompanhantes-toolbar .smart-sort-btn {
  height: 44px;
}

body.bc-acompanhantes-nav-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .bc-acompanhantes-app--sidebar-open .bc-acompanhantes-body {
    margin-left: var(--bc-nav-sidebar-w);
  }

  .bc-acompanhantes-overlay {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .bc-acompanhantes-bottomnav {
    display: flex;
  }

  .bc-acompanhantes-body {
    padding-bottom: var(--bc-nav-bottom-h);
  }

  .bc-acompanhantes-topbar__signup {
    display: none;
  }

  .bc-acompanhantes-topbar__inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 0 12px;
  }

  .bc-acompanhantes-topbar__search {
    max-width: none;
  }

  .bc-acompanhantes-search-input {
    font-size: 13px;
    padding-left: 38px !important;
    padding-right: 76px !important;
  }
}

@media (max-width: 640px) {
  .bc-acompanhantes-topbar__logo img {
    height: 22px;
    max-width: 120px;
  }

  .bc-acompanhantes-topbar__login {
    display: none;
  }
}

/* Legacy header (fallback) */
.header {
  background: #fff;
  padding: 15px 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #e91e63;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   HERO SECTION - SLIDER
   ======================================== */
.hero-section {
  position: relative;
  background: #fff;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

/* Hero com background Bellume - card à direita */
.hero-section-with-bg {
  position: relative;
  background-color: #000;
  min-height: 600px;
  overflow: hidden;
}

/* Lista sem perfis: apenas fundo — altura menor para alinhar ao desktop/mobile */
.hero-section-with-bg.hero-section--no-slides {
  min-height: 220px;
}

@media (min-width: 769px) {
  .hero-section-with-bg.hero-section--no-slides {
    min-height: 360px;
  }
}

/* Imagem de fundo via img (mais confiável que background-image) */
.hero-section-with-bg .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center left;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.hero-section-with-bg .hero-slider-wrapper {
  position: relative;
  z-index: 2;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-slide {
  display: flex;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 600px;
  justify-content: flex-end;
  align-items: center;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Card branco à direita - estilo da imagem (mais à esquerda, não grudado na borda) */
.hero-card {
  max-width: 480px;
  width: 45%;
  min-width: 400px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  margin: 40px 250px 80px 40px;
  display: flex;
  flex-direction: column;
}

.hero-image-container {
  flex: 0 0 50%;
  background: #000;
  position: relative;
  min-height: 500px;
  max-height: 600px;
  overflow: hidden;
}

/* Carrossel dentro do card */
.hero-card-carousel {
  flex: 0 0 320px;
  min-height: 320px;
  max-height: 320px;
}

.hero-card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

.hero-card-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.hero-card-nav-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.hero-image-container img,
.hero-image-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
}

.hero-image-container img,
.hero-image-container video {
  transition: opacity 0.4s ease-in-out;
  max-height: 600px;
  object-fit: cover;
}

.hero-image-container img.fade-out,
.hero-image-container video.fade-out {
  opacity: 0;
}

.hero-image-container img.fade-in,
.hero-image-container video.fade-in {
  opacity: 1;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #1a1a1a 25%,
    #2d2d2d 25%,
    #2d2d2d 50%,
    #1a1a1a 50%,
    #1a1a1a 75%,
    #2d2d2d 75%,
    #2d2d2d
  );
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.hero-content {
  flex: 1;
  padding: 30px 35px 35px;
  background: #fff;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.hero-section-with-bg .hero-content {
  padding: 25px 30px 30px;
}

.hero-content > *:not(.cta-button) {
  flex: 0 0 auto;
}

.hero-content .cta-button {
  flex: 0 0 auto;
  margin-top: auto;
}

/* Grid de detalhes - duas colunas */
.hero-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.hero-details-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Coluna do resumo com divisor vertical à esquerda */
.hero-details-col.hero-details-resumo {
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}

.hero-details-resumo .hero-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.hero-detail-item {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-detail-item i {
  color: #e91e63;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.hero-services-inline {
  margin-bottom: 15px;
  margin-top: 5px;
}

/* ========================================
   HERO SLIDER CONTROLS
   ======================================== */
.hero-slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.hero-slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-slider-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-slider-btn i {
  font-size: 20px;
}

.hero-slider-prev {
  left: 20px;
}

.hero-slider-next {
  right: 20px;
}

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

/* Dots abaixo do hero-card - alinhados com o card */
.hero-section-with-bg .hero-slider-dots {
  bottom: 15px;
  left: auto;
  right: 250px;
  transform: none;
  justify-content: center;
  width: 480px;
  max-width: 45%;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-slider-dot.active {
  background: #e91e63;
  border-color: #e91e63;
  width: 32px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

/* Barra de progresso animada - overlay encolhe mostrando tempo até próximo slide */
.hero-slider-dot.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  transform-origin: right;
  animation: hero-dot-progress 5s linear forwards;
}

@keyframes hero-dot-progress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* ========================================
   HERO CONTENT
   ======================================== */
.hero-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  height: 68px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.hero-stats {
  list-style: none;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  height: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-stats li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.hero-stats li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e91e63' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

/* ========================================
   PRICE SECTION
   ======================================== */
.price-section {
  margin: 30px 0;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-content .price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  font-weight: 500;
}

.price,
.hero-price {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.price-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-top: 6px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   SERVICES TAGS
   ======================================== */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  height: 50px;
  overflow: hidden;
  align-items: flex-start;
}

.hero-service-tag {
  background: rgba(233, 30, 99, 0.12);
  color: #e91e63;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-button {
  background: #e91e63;
  color: #fff !important;
  border: none;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  margin-top: auto;
  flex-shrink: 0;
}

.cta-button:hover {
  background: #c2185b;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.cta-button i {
  font-size: 16px;
}

/* ========================================
   SECTION TITLE
   ======================================== */
.section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 50px 0 30px;
  padding: 0 40px;
  color: #000;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   GENDER TABS
   ======================================== */
.gender-tabs {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

.gender-tab {
  position: relative;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 22px;
  line-height: 1;
  padding: 10px 4px;
  text-transform: uppercase;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition: color 0.3s ease;
}

.gender-tab:hover {
  color: #e91e63;
}

.gender-tab.active {
  color: #e91e63;
}

.gender-tab.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 4px;
  background: #e91e63;
  border-radius: 3px;
}

/* ========================================
   SMART SEARCH
   ======================================== */
.smart-search-container {
  padding: 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  max-width: 100%;
}

.smart-search-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  box-sizing: border-box;
}

.smart-search-form {
  flex: 1;
  min-width: 0;
  position: relative;
}

.smart-filter-btn,
.smart-sort-btn {
  height: 56px;
  padding: 0 20px;
  border: 2px solid #e5e5e5;
  border-radius: 28px;
  background: #fff;
  color: #111;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.smart-filter-btn:hover,
.smart-sort-btn:hover {
  border-color: #e91e63;
  color: #e91e63;
  background: #fff5f8;
}

.smart-filter-btn i,
.smart-sort-btn i {
  font-size: 16px;
}

.smart-search-actions {
  position: relative;
  display: flex;
  align-items: center;
}

.smart-search-icon {
  position: absolute;
  left: 18px;
  color: #999;
  font-size: 16px;
  z-index: 1;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-search-input {
  width: 100%;
  height: 56px;
  padding: 0 60px 0 55px;
  border: 2px solid #e5e5e5;
  border-radius: 28px;
  font-size: 16px;
  background: #fff;
  color: #111;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding-left: 55px !important;
  text-indent: 0 !important;
  box-sizing: border-box;
}

.smart-search-input-wrapper .smart-search-input {
  padding-left: 55px !important;
}

/* Garantir espaço suficiente para o ícone */
#smart-search-input {
  padding-left: 55px !important;
}

/* Aumentar padding se ainda houver sobreposição */
.smart-search-input-wrapper input#smart-search-input {
  padding-left: 55px !important;
  margin-left: 0 !important;
}

/* Forçar padding maior para evitar sobreposição */
input.smart-search-input {
  padding-left: 55px !important;
}

.smart-search-input::placeholder {
  padding-left: 0;
}

.smart-search-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
}

.smart-search-input::placeholder {
  color: #999;
}

.smart-search-clear {
  position: absolute;
  right: 56px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #999;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.smart-search-clear:hover {
  background: #666;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.smart-search-clear i {
  font-size: 14px;
}

.smart-search-submit {
  position: absolute;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e91e63;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.smart-search-submit:hover {
  background: #c2185b;
  transform: translateY(-50%) scale(1.05);
}

.smart-search-submit i {
  font-size: 16px;
}

/* Ajustar padding do input quando houver botão de limpar */
.smart-search-input-wrapper:has(.smart-search-clear) .smart-search-input {
  padding-right: 100px !important;
}

.smart-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  border: 1px solid #e5e5e5;
}

.smart-search-suggestions.active {
  display: block;
}

.smart-search-suggestion-item {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.smart-search-suggestion-item:last-child {
  border-bottom: none;
}

.smart-search-suggestion-item:hover {
  background: #f8f9fa;
}

.smart-search-suggestion-item.active {
  background: #fff5f8;
}

.smart-search-suggestion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  font-size: 14px;
}

.smart-search-suggestion-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.smart-search-suggestion-city {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.smart-search-suggestion-state {
  font-size: 13px;
  color: #666;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.smart-search-suggestion-count {
  font-size: 12px;
  color: #999;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.smart-search-suggestion-arrow {
  color: #e91e63;
  font-size: 14px;
  opacity: 0.5;
}

.smart-search-suggestion-item:hover .smart-search-suggestion-arrow {
  opacity: 1;
}

.smart-search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.smart-search-suggestions::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 12px;
}

.smart-search-suggestions::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 12px;
}

.smart-search-suggestions::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/* ========================================
   ADVANCED FILTERS MODAL
   ======================================== */
.advanced-filters-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.advanced-filters-modal.active {
  display: flex;
}

.advanced-filters-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.advanced-filters-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 90vh;
  max-height: 800px;
  background: #fff;
  border-radius: 16px;
  margin: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.advanced-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  border-bottom: 1px solid #eee;
}

.advanced-filters-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.advanced-filters-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.advanced-filters-close:hover {
  background: #e91e63;
  color: #fff;
}

.advanced-filters-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.advanced-filters-sidebar {
  width: 220px;
  background: #f8f9fa;
  border-right: 1px solid #eee;
  padding: 20px 0;
  overflow-y: auto;
}

.filter-category {
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.filter-category:hover {
  background: #fff;
  color: #e91e63;
}

.filter-category.active {
  background: #fff;
  color: #e91e63;
  border-right: 3px solid #e91e63;
}

.filter-category i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.advanced-filters-main {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.filter-section {
  display: none;
}

.filter-section.active {
  display: block;
}

.filter-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.filter-field {
  margin-bottom: 30px;
}

.filter-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.filter-input {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition: border-color 0.3s ease;
}

.filter-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

.range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.range-input {
  flex: 1;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition: border-color 0.3s ease;
}

.range-input:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.filter-tag input[type="checkbox"] {
  display: none;
}

.filter-tag input:checked + span {
  border-color: #e91e63;
  background: #e91e63;
  color: #fff;
}

.filter-tag:has(input:checked),
.filter-tag.checked {
  border-color: #e91e63;
  background: #e91e63;
  color: #fff;
}

.filter-tag.checked span {
  color: #fff;
}

.filter-tag:hover {
  border-color: #e91e63;
  color: #e91e63;
}

.distance-slider-wrapper {
  margin: 20px 0;
}

.distance-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e5e5;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.distance-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e91e63;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3);
}

.distance-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e91e63;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(233, 30, 99, 0.3);
}

.distance-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

#distance-value {
  font-weight: 600;
  color: #e91e63;
}

.use-location-btn {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.use-location-btn:hover {
  border-color: #e91e63;
  color: #e91e63;
  background: #fff5f8;
}

.advanced-filters-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid #eee;
  gap: 15px;
}

.btn-clear-filters {
  padding: 12px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.btn-clear-filters:hover {
  border-color: #e91e63;
  color: #e91e63;
  background: #fff5f8;
}

.btn-apply-filters {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #e91e63;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.btn-apply-filters:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* ========================================
   SORT MODAL
   ======================================== */
.sort-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.sort-modal.active {
  display: flex;
}

.sort-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.sort-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.sort-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  border-bottom: 1px solid #eee;
}

.sort-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.sort-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.sort-close:hover {
  background: #e91e63;
  color: #fff;
}

.sort-options {
  padding: 10px 0;
}

.sort-option {
  display: block;
  padding: 16px 30px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.sort-option:last-child {
  border-bottom: none;
}

.sort-option:hover {
  background: #f8f9fa;
}

.sort-option.active {
  background: #fff5f8;
  color: #e91e63;
}

.sort-option input[type="radio"] {
  display: none;
}

.sort-option span {
  font-size: 15px;
  font-weight: 500;
  color: inherit;
}

.sort-option.active span {
  color: #e91e63;
  font-weight: 600;
}

/* ========================================
   FILTER BAR
   ======================================== */
.filter-bar {
  padding: 18px 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.filter-apply-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: #e91e63;
  border-color: #e91e63;
  color: #fff;
  white-space: nowrap;
  display: none;
}

.filter-apply-btn:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.filter-form {
  flex: 1;
}

.filter-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, auto));
  gap: 16px;
  align-items: end;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}

.filter-item label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.filter-item input,
.filter-item select {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  color: #111;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.filter-item input:focus,
.filter-item select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

.filter-item input::placeholder {
  color: #9b9b9b;
}

.filter-item.age .age-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filter-actions-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-actions-inline .btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.filter-actions-inline .btn-primary {
  background: #e91e63;
  border-color: #e91e63;
  color: #fff;
}

.filter-actions-inline .btn-primary:hover {
  background: #c2185b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.filter-actions-inline .btn-secondary {
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #333;
}

.filter-actions-inline .btn-secondary:hover {
  background: #f8f9fa;
  border-color: #e91e63;
  color: #e91e63;
}

/* ========================================
   MODELS GRID
   ======================================== */
.models-container {
  padding: 0 40px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
  min-height: 600px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Lista sem cards: não reservar altura em branco */
.models-grid.bc-models-grid--empty-state {
  min-height: 0;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Card de aviso — identidade Bellume (rosa + branco) */
.bc-empty-companions-card {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(
    145deg,
    #fff8fb 0%,
    #ffffff 45%,
    #fff5f9 100%
  );
  border: 1px solid rgba(233, 30, 99, 0.18);
  border-radius: 16px;
  box-shadow:
    0 4px 24px rgba(233, 30, 99, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.bc-empty-companions-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.bc-empty-companions-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  color: #c2185b;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.bc-empty-companions-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.45;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.bc-empty-companions-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  max-width: min(42ch, 100%);
}

/* Bloco único quando não há nenhum perfil (sem hero / sem secções duplicadas) */
.bc-acompanhantes-solo-empty {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 20px;
}

.bc-acompanhantes-solo-empty .section-title {
  margin-top: 36px;
}

.models-grid .model-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

/* ========================================
   MODEL CARD
   ======================================== */
.model-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.model-card--link {
  cursor: pointer;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.model-image-container {
  width: 100%;
  height: 320px;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.model-image-container img,
.model-image-container video,
.model-image-container .model-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.model-image-container .model-media.fade-out {
  opacity: 0;
}

.model-image-container .model-media.fade-in {
  opacity: 1;
}

.model-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.model-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

.model-nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.model-nav-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.model-nav-btn i {
  font-size: 14px;
}

.model-info {
  padding: 25px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  position: relative;
  min-height: 400px;
}

.model-info > .model-status-badges {
  grid-column: 1 / -1;
  grid-row: 1;
}

.model-info > .model-name {
  grid-column: 1 / -1;
  grid-row: 2;
}

.model-info > .model-tagline {
  grid-column: 1 / -1;
  grid-row: 3;
}

.model-info > .model-details {
  grid-column: 1;
  grid-row: 4;
}

.model-info > .model-price {
  grid-column: 1;
  grid-row: 5;
}

.model-info > .model-rating,
.model-info > .model-services {
  grid-column: 1;
}

.model-info > .model-description {
  grid-column: 2;
  grid-row: 4 / 6;
  align-self: start;
  max-height: none;
  margin-bottom: 0;
  padding-left: 15px;
  border-left: 1px solid #e0e0e0;
}

.model-info > .model-cta {
  grid-column: 1 / -1;
  grid-row: 6;
}

.model-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  flex-shrink: 0;
}

.model-details {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  flex-shrink: 0;
}

.model-details div {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.model-details div i {
  color: #e91e63;
  font-size: 14px;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.model-rating {
  margin-bottom: 14px;
  flex-shrink: 0;
}

.model-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.model-stars i {
  color: #e91e63;
  font-size: 14px;
}

.model-rating-count {
  font-size: 12px;
  color: #666;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.model-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.model-service-tag {
  background: rgba(233, 30, 99, 0.12);
  color: #e91e63;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.model-description {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.model-price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #444;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.model-price .price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9a9a9a;
  font-weight: 600;
}

.model-price .price-main {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.model-price .price-unit {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.model-price .price-separator {
  color: #666;
  font-size: 14px;
}

.model-cta {
  background: #e91e63;
  color: #fff !important;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  margin-top: 15px;
}

.model-cta:hover {
  background: #c2185b;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.model-cta i {
  font-size: 14px;
}

/* ========================================
   MODEL STATUS AND BADGES
   ======================================== */
.model-status-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
  grid-column: 1 / -1;
}

.model-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.model-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.model-status.online .status-dot {
  background: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.model-status.offline .status-dot {
  background: #999;
}

.model-status.online .status-text {
  color: #28a745;
  font-weight: 500;
}

.model-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.model-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.model-badge i {
  font-size: 10px;
}

.badge-new {
  background: #e3f2fd;
  color: #1976d2;
}

.badge-verified {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-premium {
  background: #fff3e0;
  color: #f57c00;
}

/* Tagline - texto simples na listagem */
.model-tagline {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: -8px;
  margin-bottom: 8px;
  line-height: 1.4;
  grid-column: 1 / -1;
}

/* Detalhes melhorados */
.model-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.model-detail-item i {
  font-size: 14px;
  color: #e91e63;
  width: 16px;
  text-align: center;
  margin-right: 0;
}

.model-detail-item.model-detail-videos {
  color: #e91e63;
}

.model-detail-item.model-detail-videos i {
  color: #e91e63;
}

/* Avaliações - estrela vazia quando não há avaliações (igual ao perfil) */
.model-detail-item i.far.fa-star {
  color: #ddd;
}

.model-detail-item i.fas.fa-star {
  color: #e91e63;
}

/* Serviços melhorados */
.model-service-more {
  padding: 6px 12px;
  background: #fff5f8;
  border-radius: 12px;
  font-size: 12px;
  color: #e91e63;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   TAGS CONTAINER
   ======================================== */
.tags-container {
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #fff;
  color: #e91e63;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  border: 1.5px solid #e91e63;
  font-weight: 500;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #e91e63;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* ========================================
   BANNER
   ======================================== */
.banner {
  margin: 50px 40px;
  background: linear-gradient(135deg, #ff6b00 0%, #ffd700 100%);
  border-radius: 12px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

.banner p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-content {
    padding: 40px 50px;
  }

  .filter-form {
    grid-template-columns: repeat(3, minmax(160px, auto));
  }
}

@media (max-width: 992px) {
  .smart-search-container {
    padding: 15px 20px;
  }

  .smart-search-actions {
    gap: 8px;
  }

  .smart-filter-btn,
  .smart-sort-btn {
    padding: 0 15px;
    font-size: 14px;
  }

  .filter-form {
    grid-template-columns: repeat(2, minmax(160px, auto));
  }

  .section-title,
  .models-container,
  .tags-container,
  .filter-bar {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .model-info > .model-description {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 18px;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .advanced-filters-content {
    width: 98%;
    height: 98vh;
  }

  .advanced-filters-header {
    padding: 20px;
  }

  .advanced-filters-header h2 {
    font-size: 20px;
  }

  .filter-tags {
    gap: 8px;
  }

  .filter-tag {
    padding: 8px 14px;
    font-size: 13px;
  }

  .gender-tabs {
    gap: 22px;
    padding: 20px 16px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .gender-tab {
    font-size: 17px;
    letter-spacing: 0.5px;
  }

  .gender-tab.active:after {
    bottom: -20px;
  }

  .smart-search-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .hero-section-with-bg {
    min-height: auto;
    background-position: center;
  }

  .hero-section-with-bg.hero-section--no-slides {
    min-height: 168px;
  }

  .hero-section-with-bg .hero-slider-wrapper,
  .hero-section-with-bg .hero-slides-container {
    min-height: auto;
  }

  .hero-section-with-bg .hero-slide {
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-section-with-bg .hero-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 20px 15px 50px;
  }

  .hero-section-with-bg .hero-slider-dots {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: none;
  }

  .hero-section-with-bg .hero-card-carousel {
    min-height: 280px;
    max-height: 280px;
  }

  .hero-slide {
    flex-direction: column;
  }

  .hero-image-container,
  .hero-content {
    flex: 1 1 100%;
  }

  .hero-image-container {
    min-height: 400px;
    max-height: 400px;
  }

  .hero-image-container img,
  .hero-image-container video {
    max-height: 400px;
  }

  .hero-content {
    padding: 30px 20px;
    min-height: 400px;
  }

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

  .hero-details-col.hero-details-resumo {
    padding-left: 0;
    padding-top: 15px;
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }

  .hero-slider-controls {
    padding: 0 10px;
  }

  .hero-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

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

  .hero-title {
    font-size: 24px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bc-empty-companions-card {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
  }

  .bc-empty-companions-title {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 20px;
    margin: 40px 0 25px;
    padding: 0 20px;
  }

  .models-container {
    padding: 0 20px;
  }

  .tags-container {
    padding: 15px 20px;
  }

  .filter-bar {
    padding: 15px 20px;
  }

  .smart-search-container {
    padding: 15px 20px;
  }

  .smart-search-input {
    height: 50px;
    font-size: 15px;
  }

  .filter-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-item {
    min-width: auto;
  }

  .filter-bar {
    flex-direction: column;
    gap: 12px;
  }

  .filter-actions-inline {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .filter-actions-inline .btn {
    flex: 1;
  }

  .filter-apply-btn {
    width: 100%;
  }

  .gender-tabs {
    gap: 14px;
    padding: 16px 12px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }

  .gender-tab {
    font-size: 15px;
    letter-spacing: 0.35px;
    padding: 8px 4px;
  }

  .gender-tab.active:after {
    bottom: -16px;
    height: 3px;
  }

  .banner {
    margin: 30px 20px;
    padding: 50px 30px;
  }

  .banner h2 {
    font-size: 32px;
  }

  .banner p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-section-with-bg.hero-section--no-slides {
    min-height: 140px;
  }

  .hero-image-container {
    min-height: 300px;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-price {
    font-size: 28px;
  }

  .models-container {
    padding: 0 15px;
  }

  .bc-empty-companions-card {
    padding: 1.2rem 0.95rem;
    border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
  }

  .bc-empty-companions-title {
    font-size: 1rem;
    line-height: 1.4;
  }

  .bc-empty-companions-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .bc-empty-companions-icon {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .bc-acompanhantes-solo-empty .section-title {
    margin-top: 24px;
  }

  .model-info {
    padding: 20px;
    padding-bottom: 65px;
    min-height: 320px;
    grid-template-columns: 1fr;
  }

  .model-info > .model-description {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 18px;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .model-cta {
    width: 100%;
    position: relative;
    margin-top: 15px;
  }

  .model-name {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .model-price .price-main {
    font-size: 18px;
  }

  .gender-tabs {
    gap: 10px;
    column-gap: 12px;
    row-gap: 8px;
    padding: 14px 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gender-tab {
    font-size: 13px;
    letter-spacing: 0.2px;
    padding: 6px 2px;
  }

  .gender-tab.active:after {
    bottom: -12px;
    height: 3px;
  }

  .banner {
    margin: 20px 15px;
    padding: 40px 20px;
  }

  .banner h2 {
    font-size: 24px;
  }

  .banner p {
    font-size: 14px;
  }

  .section-title {
    font-size: 18px;
    margin: 30px 0 20px;
    padding: 0 15px;
  }

  /* Smart Search Actions */
  .smart-search-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .smart-search-actions {
    width: 100%;
    justify-content: space-between;
  }

  .smart-filter-btn,
  .smart-sort-btn {
    flex: 1;
    justify-content: center;
  }

  /* Advanced Filters Modal */
  .advanced-filters-content {
    width: 95%;
    height: 95vh;
    max-height: none;
  }

  .advanced-filters-body {
    flex-direction: column;
  }

  .advanced-filters-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .filter-category {
    white-space: nowrap;
    padding: 10px 16px;
    border-right: none;
    border-bottom: 3px solid transparent;
  }

  .filter-category.active {
    border-right: none;
    border-bottom: 3px solid #e91e63;
  }

  .advanced-filters-main {
    padding: 20px 15px;
  }

  .advanced-filters-footer {
    flex-direction: column;
    padding: 15px;
  }

  .btn-apply-filters {
    width: 100%;
  }

  /* Sort Modal */
  .sort-content {
    width: 95%;
    max-width: none;
  }
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states para acessibilidade */
.cta-button:focus,
.model-cta:focus,
.hero-slider-btn:focus,
.model-nav-btn:focus,
.filter-actions-inline .btn:focus,
.filter-apply-btn:focus,
.gender-tab:focus {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

.bc-acompanhantes-topbar__menu-btn:focus,
.bc-acompanhantes-sidebar__link:focus,
.bc-acompanhantes-bottomnav__item:focus,
.bc-acompanhantes-topbar__action:focus,
.bc-acompanhantes-topbar__login:focus,
.bc-acompanhantes-topbar__signup:focus {
  outline: 2px solid #e91e63;
  outline-offset: 2px;
}

.filter-item input:focus,
.filter-item select:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

/* Painel membro dentro do shell de acompanhantes */
.bc-acompanhantes-page.bc-painel-page .bc-acompanhantes-main {
  background: #f5f5f7;
}

.bc-acompanhantes-page.bc-painel-page .bc-member-dashboard {
  min-height: auto;
}

.bc-acompanhantes-page.bc-painel-page .bc-member-main {
  min-height: auto;
  background: transparent;
}

.bc-acompanhantes-page.bc-painel-page .bc-member-content {
  padding-top: 24px;
  padding-bottom: calc(var(--bc-nav-bottom-h, 62px) + 24px);
}

@media (min-width: 1024px) {
  .bc-acompanhantes-page.bc-painel-page .bc-member-content {
    padding-bottom: 32px;
  }
}

/* Rodapé de indicação: fundo rosa até o fim da página (sem faixa cinza/branca) */
.bc-acompanhantes-page.bc-painel-page .bc-member-dashboard:has(.bc-member-fullwidth) {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--bc-nav-topbar-h, 64px));
}

.bc-acompanhantes-page.bc-painel-page .bc-member-dashboard:has(.bc-member-fullwidth) .bc-member-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.bc-acompanhantes-page.bc-painel-page .bc-member-content:has(.bc-member-fullwidth) {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.bc-acompanhantes-page.bc-painel-page .bc-member-fullwidth {
  flex: 1;
  margin-top: 24px;
  margin-bottom: 0;
  border-radius: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  padding-bottom: 40px;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .bc-acompanhantes-page.bc-painel-page .bc-acompanhantes-body:has(.bc-member-fullwidth) {
    padding-bottom: 0;
  }

  .bc-acompanhantes-page.bc-painel-page .bc-member-fullwidth {
    padding-bottom: calc(var(--bc-nav-bottom-h, 62px) + 28px);
  }
}

.bc-companion-profile-shell {
  padding-bottom: calc(var(--bc-nav-bottom-h, 62px) + 16px);
}

@media (min-width: 1024px) {
  .bc-companion-profile-shell {
    padding-bottom: 24px;
  }
}
