.pf-lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 110px;
  overflow: hidden;
  z-index: 100;
}

.pf-lang-dropdown.pf-lang-open {
  display: block;
}

.morado{
	color?#7e2a5e;
		}
	.morado a {
  color?#7e2a5e;
}
		
/* ===== HEADER ===== */
.pf-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.pf-header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf-header-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.pf-header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.pf-header-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.pf-header-nav a:hover,
.pf-header-nav a.pf-nav-active {
  color: #7E2A5E;
}

.pf-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Selector idioma */
.pf-lang-selector {
  position: relative;
}

.pf-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s;
}

.pf-lang-btn:hover {
  border-color: #7E2A5E;
}

.pf-lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 110px;
  overflow: hidden;
  z-index: 100;
}

.pf-lang-selector:hover .pf-lang-dropdown {
  display: block;
}

.pf-lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
  transition: background 0.15s;
}

.pf-lang-dropdown a:hover {
  background: #f9fafb;
}

/* Hamburguesa */
.pf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pf-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: background 0.2s;
}

/* Menú mobile */
.pf-mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid #f0f0f0;
  padding: 1.25rem 1.5rem;
  gap: 1.1rem;
}

.pf-mobile-nav.pf-mobile-nav--open {
  display: flex;
}

.pf-mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.pf-mobile-nav a:hover {
  color: #7E2A5E;
}

/* Responsive */
@media (max-width: 1024px) {
  .pf-header-nav {
    display: none;
  }
  .pf-hamburger {
    display: flex;
  }
}

/* =============================================================
   LE VIP ESCORTS — perfil.css
   Estilos exclusivos para páginas de perfil de escort.
   Prefijo "pf-" en todas las clases para no colisionar con Bootstrap/Canvas.
   ============================================================= */

:root {
  --pf-accent:      #7E2A5E;
  --pf-accent-dark: #6A224B;
  --pf-card-bg:     #e5e5e5;
  --pf-body-bg:     #f4f4f5;
  --pf-border:      #d1d5db;
  --pf-text:        #374151;
  --pf-text-muted:  #6b7280;
  --pf-radius-card: 1.5rem;
  --pf-radius-btn:  1rem;
}

/* ---- Reset de contexto ------------------------------------ */
.pf-page-wrap {
  background-color: var(--pf-body-bg);
  color: var(--pf-text);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ---- Contenedor general ----------------------------------- */
.pf-wrap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.pf-section {
  padding-bottom: 4rem;
}

/* ---- HERO ------------------------------------------------- */
.pf-hero {
  text-align: center;
  padding: 1rem 1.5rem 2rem;
}

.pf-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.pf-hero .pf-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.pf-hero .pf-tagline {
  font-size: 1.1rem;
  color: var(--pf-text);
}

/* ---- GRID PRINCIPAL galería + sidebar --------------------- */
.pf-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .pf-main-grid {
    grid-template-columns: 8fr 4fr;
    align-items: start;
  }
}

/* ---- GALERÍA desktop -------------------------------------- */
.pf-gallery-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .pf-gallery-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .pf-gallery-mobile {
    display: none !important;
  }
}

.pf-gallery-img {
  aspect-ratio: 4 / 6;
  width: 100%;
  object-fit: cover;
  border-radius: var(--pf-radius-card);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
}

/* ---- GALERÍA mobile --------------------------------------- */
.pf-gallery-mobile {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1.5rem;
}

.pf-gallery-mobile::-webkit-scrollbar {
  display: none;
}

.pf-gallery-slide {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 88%;
}

/* ---- SIDEBAR ---------------------------------------------- */
.pf-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: stretch;
}

@media (min-width: 1024px) {
  .pf-sidebar .pf-card {
    flex: 1;
  }
}

/* ---- CARD ------------------------------------------------- */
.pf-card {
  background-color: var(--pf-card-bg);
  border-radius: var(--pf-radius-card);
 /* padding: 1.2rem; */
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  padding-top: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pf-card-lg {
  padding: 2.5rem;
}

.pf-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #111;
}

.pf-card-title i {
  color: var(--pf-accent);
}

.pf-card-divider {
  border: none;
  border-bottom: 1px solid var(--pf-border);
  margin: 0 0 1rem;
}

/* ---- INFO LINES (datos personales) ------------------------ */
.pf-info-line {
  border-bottom: 1px solid var(--pf-border);
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--pf-text);
}

.pf-info-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* ---- TARIFAS --------------------------------------------- */
.pf-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--pf-border);
  padding-bottom: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--pf-text);
}

.pf-rate-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.pf-rate-price {
  font-weight: 600;
  color: #111;
}

.pf-rate-note {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: #111;
}

/* ---- VÍDEO ----------------------------------------------- */
.pf-video-wrap {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.pf-video-wrap video {
  width: 100%;
  border-radius: var(--pf-radius-card);
  display: block;
}

/* ---- BOTONES DE CONTACTO ---------------------------------- */
.pf-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--pf-radius-btn);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  line-height: 1;
}

.pf-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.pf-btn-accent {
  background-color: var(--pf-accent);
  color: #fff;
}

.pf-btn-accent:hover,
.pf-btn-accent:focus {
  background-color: var(--pf-accent-dark);
  color: #fff;
}

.pf-btn-dark {
  background-color: #111;
  color: #fff;
}

.pf-btn-dark:hover,
.pf-btn-dark:focus {
  background-color: #222;
  color: #fff;
}

.pf-btn-sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

/* ---- SECTION TITLE (h2/h3 internos) ---------------------- */
.pf-section-title {
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.pf-section-title i {
  color: var(--pf-accent);
}

.pf-section-divider {
  border: none;
  border-bottom: 1px solid var(--pf-border);
  margin: 0.75rem 0 2rem;
}

/* ---- SERVICIOS -------------------------------------------- */
.pf-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem 1.5rem;
}

@media (min-width: 768px) {
  .pf-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pf-service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--pf-text);
}

.pf-service-item i {
  color: var(--pf-accent);
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.pf-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease-in-out;
}

.pf-expandable.pf-expanded {
  max-height: 1600px;
}

.pf-services-expanded-inner {
  margin-top: 1.5rem;
}

.pf-services-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pf-border);
  font-size: 0.875rem;
  color: var(--pf-text-muted);
  line-height: 1.7;
}

/* ---- ABOUT TEXT ------------------------------------------ */
.pf-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pf-text);
  max-width: 820px;
  margin: 0 auto;
}

/* ---- INFO GRID (info + pagos) ----------------------------- */
.pf-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .pf-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pf-info-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--pf-text);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.pf-info-icon-row:last-child {
  margin-bottom: 0;
}

.pf-info-icon-row i {
  color: var(--pf-accent);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.pf-info-icon-row p {
  margin: 0;
}

/* ---- PAYMENT BADGES -------------------------------------- */
.pf-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pf-badge {
  background-color: #e5e7eb;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  border: 1px solid var(--pf-border);
  color: var(--pf-text);
}

/* ---- CARRUSEL -------------------------------------------- */
.pf-carousel-section {
  padding-bottom: 5rem;
}

.pf-carousel-section h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #111;
}

.pf-carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.pf-carousel-container {
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 55px;
}

.pf-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.7s ease-in-out;
}

.pf-carousel-item {
  position: relative;
  width: calc(100% / 6);
  flex-shrink: 0;
}

.pf-carousel-item img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.pf-carousel-name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.85));
  color: #fff;
  padding: 6px 20px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.pf-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 30;
  transition: background-color 0.2s;
  line-height: 1;
}

.pf-carousel-btn:hover {
  background: #fff;
}

.pf-carousel-btn.pf-prev { left: -4px; }
.pf-carousel-btn.pf-next { right: -4px; }

@media (max-width: 1024px) {
  .pf-carousel-item {
    width: 48%;
  }
  .pf-carousel-item img {
    aspect-ratio: 6 / 9;
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }
}

/* ---- BOTÓN FLOTANTE -------------------------------------- */


.float-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #7E2A5E;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.6rem;
  gap: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: background-color 0.2s;
}
.float-contact:hover { 
  background-color: #6a2350;
}
.float-contact a {
  display: flex;
  align-items: center;
  padding: 0;
}
.float-contact .divider {
  width: 22px;
  height: 1px;
  margin: 0.7rem 0;
 /* background: rgba(255,255,255,0.25); */
}
.float-contact a:hover {
  opacity: 0.8;
}