/**
 * ImSexxy — Profile CSS (Fatal Model inspired)
 *
 * @package 55acompanhantes
 * @since   3.0.8
 */

/* ═══════════════════════════════════════════════
   SCOPE RESET
   ═══════════════════════════════════════════════ */
.fp { font-family: var(--fm-font, 'Inter', -apple-system, sans-serif); color: var(--fm-text, #1A1A1A); line-height: 1.5; -webkit-font-smoothing: antialiased; }
.fp *, .fp *::before, .fp *::after { box-sizing: border-box; }
.fp a { color: inherit; text-decoration: none; }
.fp img { display: block; max-width: 100%; }
.fp button { font-family: var(--fm-font, 'Inter', sans-serif); cursor: pointer; border: none; background: none; }
.fp-wrap { max-width: var(--fm-max, 1180px); margin: 0 auto; padding: 0 20px; }
.fp-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fm-text-3, #9CA3AF); display: inline-block; margin: 0 6px; vertical-align: middle; }

/* ═══════════════════════════════════════════════
   SEÇÃO 1 — COVER
   ═══════════════════════════════════════════════ */
.fp-cover { position: relative; background: #fff; }
.fp-cover__img {
	position: relative; width: 100%; max-width: var(--fm-max, 1180px);
	margin: 0 auto; height: 280px; overflow: hidden;
	border-radius: 0 0 16px 16px;
}
.fp-cover__img img { width: 100%; height: 100%; object-fit: cover; }
.fp-cover__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--fm-red-light, #FFF0F1) 0%, var(--fm-bg-alt, #F8F8FA) 100%);
}
.fp-cover__back {
	position: absolute; top: 20px; left: 20px; z-index: 11;
	display: flex; align-items: center; gap: 8px;
	background: #fff; border-radius: 999px;
	padding: 8px 16px; font-size: 14px; font-weight: 600;
	color: var(--fm-text, #1A1A1A);
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	transition: background .2s;
}
.fp-cover__back:hover { background: var(--fm-bg-alt, #F8F8FA); }
.fp-cover__back span { display: none; }
.fp-cover__actions {
	position: absolute; top: 20px; right: 20px; z-index: 11;
	display: flex; gap: 8px;
}
.fp-cover__action-btn {
	display: flex; align-items: center; gap: 6px;
	background: #fff; border-radius: 999px;
	padding: 8px 14px; font-size: 13px; font-weight: 600;
	color: var(--fm-text, #1A1A1A);
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
	transition: all .2s;
}
.fp-cover__action-btn:hover { background: var(--fm-bg-alt, #F8F8FA); }
.fp-cover__action-btn--danger { color: var(--fm-red, #e25352); }
.fp-cover__action-btn span { display: none; }

/* Avatar */
.fp-cover__avatar-wrap {
	position: relative; z-index: 12;
	display: flex; align-items: flex-end; gap: 12px;
	max-width: var(--fm-max, 1180px); margin: -50px auto 0;
	padding: 0 20px 0 100px;
}
.fp-cover__avatar {
	width: 100px; height: 100px; border-radius: 50%;
	border: 4px solid #fff; overflow: hidden;
	background: var(--fm-red-light, #FFF0F1);
	display: flex; align-items: center; justify-content: center;
	font-size: 40px; color: var(--fm-red-bg, #FCEAEC);
	position: absolute; left: 20px; bottom: -20px;
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.fp-cover__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fp-cover__status-dot {
	width: 16px; height: 16px; border-radius: 50%;
	background: var(--fm-text-3, #9CA3AF); border: 3px solid #fff;
	position: absolute; left: 92px; bottom: -16px; z-index: 13;
}
.fp-cover__status-text {
	font-size: 12px; font-weight: 500; color: var(--fm-text-2, #6B7280);
	font-style: italic; margin-left: 8px; white-space: nowrap;
}

/* Header info */
.fp-header-info {
	max-width: var(--fm-max, 1180px); margin: 0 auto;
	padding: 24px 20px 16px 130px;
}
.fp-header-info__top {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	margin-bottom: 8px;
}
.fp-header-info__name {
	font-size: 20px; font-weight: 700; line-height: 1.2;
	color: var(--fm-text, #1A1A1A); margin: 0;
}
.fp-header-info__meta {
	display: flex; align-items: center; gap: 4px;
	font-size: 13px; color: var(--fm-text-2, #6B7280); flex-wrap: wrap;
}

/* Badge */
.fp-badge {
	display: inline-flex; align-items: center; gap: 4px;
	font-size: 12px; font-weight: 600; padding: 3px 10px;
	border-radius: 6px; line-height: 1.3;
}
.fp-badge--green {
	background: #E8F5E9; color: #258130;
}

/* ═══════════════════════════════════════════════
   SEÇÃO 2 — CARDS
   ═══════════════════════════════════════════════ */
.fp-cards { padding: 12px 0; }
.fp-cards__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.fp-card {
	border: 1px solid var(--fm-border, #E5E7EB);
	border-radius: 12px; padding: 14px; background: #fff;
	min-height: 115px;
}
.fp-card__header {
	display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.fp-card__icon {
	width: 18px; height: 18px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; color: #fff;
}
.fp-card__icon--red { background: var(--fm-red, #e25352); }
.fp-card__label { font-size: 12px; font-weight: 600; color: var(--fm-red, #e25352); }
.fp-card__chevron { margin-left: auto; font-size: 10px; color: var(--fm-red, #e25352); }
.fp-card__body { margin-bottom: 8px; }
.fp-card__small { font-size: 10px; color: var(--fm-text-2, #6B7280); margin: 0; }
.fp-card__value { display: flex; align-items: baseline; gap: 6px; }
.fp-card__value strong { font-size: 18px; font-weight: 700; }
.fp-card__value span { font-size: 12px; color: var(--fm-text-2, #6B7280); }
.fp-card__location { font-size: 18px; font-weight: 700; display: block; margin-bottom: 2px; }
.fp-card__city { font-size: 12px; color: var(--fm-text-2, #6B7280); display: block; }
.fp-card__footer { font-size: 12px; color: var(--fm-text-2, #6B7280); margin-top: 6px; }

/* ═══════════════════════════════════════════════
   WHATSAPP CTA
   ═══════════════════════════════════════════════ */
.fp-cta-desktop { padding: 12px 0; display: none; }
.fp-wa-btn {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	width: 100%; max-width: 480px; margin: 0 auto;
	padding: 14px 24px; border-radius: 10px;
	background: #25D366; color: #fff;
	font-size: 16px; font-weight: 700;
	transition: background .2s, transform .2s;
}
.fp-wa-btn:hover { background: #1fba59; transform: translateY(-1px); }
.fp-wa-btn i { font-size: 22px; }
.fp-wa-btn--sm { padding: 12px 16px; font-size: 13px; max-width: none; }
.fp-wa-btn--sm i { font-size: 18px; }

/* ═══════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════ */
.fp-tabs {
	background: #fff; border-bottom: 1px solid var(--fm-border, #E5E7EB);
	z-index: 10; transition: all .3s;
}
.fp-tabs--sticky {
	position: sticky; top: 60px;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.fp-tabs__inner {
	display: flex; gap: 8px; height: 48px;
}
.fp-tabs__btn {
	padding: 0 16px; font-size: 14px; font-weight: 500;
	color: var(--fm-text-2, #6B7280); background: none;
	border-bottom: 2px solid transparent;
	transition: all .2s; white-space: nowrap;
}
.fp-tabs__btn span { font-size: 12px; color: var(--fm-text-3, #9CA3AF); margin-left: 2px; }
.fp-tabs__btn:hover { color: var(--fm-text, #1A1A1A); }
.fp-tabs__btn--active {
	color: var(--fm-text, #1A1A1A); font-weight: 600;
	border-bottom-color: var(--fm-red, #e25352);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.fp-section { padding: 24px 0; background: #fff; }
.fp-section + .fp-section { border-top: 1px solid var(--fm-border-lt, #F3F4F6); }
.fp-section__header {
	display: flex; align-items: center; gap: 10px;
	margin-bottom: 20px;
}
.fp-section__header i { font-size: 20px; color: var(--fm-text, #1A1A1A); }
.fp-section__header h2 { font-size: 16px; font-weight: 700; margin: 0; }
.fp-empty { font-size: 14px; color: var(--fm-text-3, #9CA3AF); text-align: center; padding: 24px 0; }

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.fp-gallery {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.fp-gallery__item {
	aspect-ratio: 1; overflow: hidden; border-radius: 4px;
	cursor: pointer; position: relative;
}
.fp-gallery__item img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .3s;
}
.fp-gallery__item:hover img { transform: scale(1.05); }
.fp-gallery__item--hidden { display: none; }
.fp-gallery__more {
	display: flex; justify-content: center; padding: 24px 0 8px;
}

/* ═══════════════════════════════════════════════
   MDC
   ═══════════════════════════════════════════════ */
.fp-mdc__video {
	max-width: 400px; border-radius: 12px; overflow: hidden;
	background: #000;
}
.fp-mdc__video video,
.fp-mdc__video img { width: 100%; display: block; }
.fp-mdc__date {
	font-size: 12px; color: var(--fm-text-2, #6B7280);
	margin-top: 10px;
}

/* ═══════════════════════════════════════════════
   DESCRIPTION
   ═══════════════════════════════════════════════ */
.fp-description {
	font-size: 14px; line-height: 1.7;
	color: var(--fm-text, #1A1A1A);
}
.fp-description p { margin: 0 0 12px; }

/* ═══════════════════════════════════════════════
   CHARACTERISTICS
   ═══════════════════════════════════════════════ */
.fp-chars {
	display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.fp-chars__item {
	padding: 10px 0; border-bottom: 1px solid var(--fm-border-lt, #F3F4F6);
}
.fp-chars__item:nth-child(odd) { padding-right: 16px; }
.fp-chars__item:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--fm-border-lt, #F3F4F6); }
.fp-chars__label {
	font-size: 11px; font-weight: 600; color: var(--fm-text-3, #9CA3AF);
	text-transform: uppercase; letter-spacing: .3px;
	display: block; margin-bottom: 2px;
}
.fp-chars__value { font-size: 14px; font-weight: 500; }
.fp-chars__detail {
	font-size: 11px; color: var(--fm-text-3, #9CA3AF);
	margin: 2px 0 0;
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.fp-service-info {
	border-left: 2px solid var(--fm-border, #E5E7EB);
	padding-left: 12px; margin-bottom: 20px;
}
.fp-service-info p { font-size: 14px; margin: 0 0 4px; }
.fp-services__title {
	font-size: 14px; font-weight: 700; margin: 0 0 12px;
	padding-bottom: 8px; border-bottom: 1px solid var(--fm-border-lt, #F3F4F6);
}
.fp-services__title--not { margin-top: 24px; color: var(--fm-text-2, #6B7280); }
.fp-services { display: flex; flex-direction: column; gap: 0; }
.fp-services__item {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 0; border-bottom: 1px solid var(--fm-border-lt, #F3F4F6);
}
.fp-services__item--disabled { opacity: .45; }
.fp-services__item--disabled .fp-services__name { text-decoration: line-through; }
.fp-services__name { font-size: 14px; }
.fp-services__tag {
	font-size: 11px; font-weight: 700; padding: 3px 12px;
	border-radius: 16px; border: 1px solid;
}
.fp-services__tag--does { color: var(--fm-red, #e25352); border-color: var(--fm-red, #e25352); }
.fp-services__tag--receive { color: var(--fm-text, #1A1A1A); border-color: var(--fm-text, #1A1A1A); }

/* ═══════════════════════════════════════════════
   RATES
   ═══════════════════════════════════════════════ */
.fp-rates { margin-bottom: 24px; }
.fp-rates__row {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 12px; border-bottom: 1px solid var(--fm-border-lt, #F3F4F6);
}
.fp-rates__label { font-size: 14px; font-style: italic; }
.fp-rates__value { font-size: 14px; font-weight: 600; }
.fp-payments { text-align: center; }
.fp-payments__title { font-size: 12px; color: var(--fm-text-2, #6B7280); margin-bottom: 12px; }
.fp-payments__list { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.fp-payments__item {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	width: 64px;
}
.fp-payments__item i { font-size: 22px; color: var(--fm-text, #1A1A1A); }
.fp-payments__item span { font-size: 10px; font-weight: 600; text-transform: uppercase; }

/* ═══════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════ */
.fp-location {
	display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.fp-location__item h3 {
	font-size: 11px; font-weight: 600; color: var(--fm-text-3, #9CA3AF);
	text-transform: uppercase; letter-spacing: .3px;
	margin: 0 0 4px;
}
.fp-location__item p { font-size: 14px; margin: 0 0 4px; }
.fp-location__item a { color: var(--fm-red, #e25352); font-weight: 500; }

/* ═══════════════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════════════ */
.fp-schedule__row {
	display: grid; grid-template-columns: 1fr 1.5fr;
	border-bottom: 1px solid var(--fm-border-lt, #F3F4F6);
	padding: 8px 12px;
}
.fp-schedule__row--today { font-weight: 700; }
.fp-schedule__day { font-size: 14px; font-style: italic; }
.fp-schedule__hours { font-size: 12px; text-align: right; }
.fp-schedule__note {
	font-size: 12px; font-style: italic; color: var(--fm-text-2, #6B7280);
	margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   REVIEWS SUMMARY
   ═══════════════════════════════════════════════ */
.fp-review-summary__stats {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 16px;
}
.fp-review-summary__avg {
	display: flex; align-items: center; gap: 6px;
	font-size: 20px;
}
.fp-review-summary__avg i { color: var(--fm-gold, #F59E0B); }
.fp-review-summary__avg strong { font-weight: 800; }

/* ═══════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════ */
.fp-breadcrumbs {
	padding: 16px 0 32px; background: #fff;
}
.fp-breadcrumbs .fp-wrap {
	display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
	font-size: 12px; color: var(--fm-text-3, #9CA3AF);
}
.fp-breadcrumbs a { color: var(--fm-text-2, #6B7280); transition: color .2s; }
.fp-breadcrumbs a:hover { color: var(--fm-red, #e25352); }
.fp-breadcrumbs .fa-chevron-right { font-size: 8px; }
.fp-breadcrumbs span { color: var(--fm-text, #1A1A1A); font-weight: 500; }

/* ═══════════════════════════════════════════════
   CREATED DATE
   ═══════════════════════════════════════════════ */
.fp-created {
	text-align: center; font-size: 13px; color: var(--fm-text-2, #6B7280);
	padding: 24px 20px;
}
.fp-created i { margin-right: 6px; }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.fp-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 24px; border-radius: 8px;
	font-size: 14px; font-weight: 600; transition: all .2s;
	cursor: pointer;
}
.fp-btn--primary { background: var(--fm-red, #e25352); color: #fff; border: none; }
.fp-btn--primary:hover { background: var(--fm-red-dark, #c94443); }
.fp-btn--outline {
	background: #fff; color: var(--fm-text, #1A1A1A);
	border: 1.5px solid var(--fm-border, #E5E7EB);
}
.fp-btn--outline:hover { border-color: var(--fm-red, #e25352); color: var(--fm-red, #e25352); }

/* ═══════════════════════════════════════════════
   MOBILE STICKY WHATSAPP BAR
   ═══════════════════════════════════════════════ */
.fp-wa-sticky {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
	background: #fff; padding: 12px 16px;
	box-shadow: 0 -2px 12px rgba(0,0,0,.08);
	display: flex; align-items: center; gap: 12px;
	border-radius: 12px 12px 0 0;
}
.fp-wa-sticky__price {
	display: flex; flex-direction: column; min-width: 80px;
}
.fp-wa-sticky__price small { font-size: 10px; color: var(--fm-text-3, #9CA3AF); }
.fp-wa-sticky__price strong { font-size: 18px; font-weight: 700; line-height: 1.2; }
.fp-wa-sticky__price span { font-size: 12px; color: var(--fm-text-2, #6B7280); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (min-width: 769px) {
	.fp-cover__back span,
	.fp-cover__action-btn span { display: inline; }

	.fp-cover__img { height: 280px; border-radius: 16px 16px 0 0; }

	.fp-cta-desktop { display: block; }
	.fp-wa-sticky { display: none; }

	.fp-cover__avatar { width: 160px; height: 160px; left: 30px; bottom: -40px; }
	.fp-cover__avatar-wrap { padding-left: 210px; margin-top: -70px; }
	.fp-cover__status-dot { left: 148px; bottom: -34px; width: 20px; height: 20px; }
	.fp-header-info { padding-left: 230px; }
	.fp-header-info__name { font-size: 22px; }
}

@media (max-width: 768px) {
	.fp-cover__img { height: 160px; border-radius: 0; }

	.fp-header-info { padding-left: 120px; padding-top: 16px; }
	.fp-header-info__name { font-size: 18px; }

	.fp-cards__grid { gap: 8px; }
	.fp-card { padding: 12px; }

	.fp-gallery { grid-template-columns: repeat(3, 1fr); }

	.fp-chars { grid-template-columns: 1fr; }
	.fp-chars__item:nth-child(even) { padding-left: 0; border-left: none; }
	.fp-chars__item:nth-child(odd) { padding-right: 0; }

	.fp-location { grid-template-columns: 1fr; }

	.fp-tabs__btn { padding: 0 12px; font-size: 13px; }

	.fp-breadcrumbs .fp-wrap { font-size: 11px; }

	/* Bottom padding for sticky WA bar */
	.fp-profile { padding-bottom: 90px; }
}

@media (max-width: 480px) {
	.fp-cards__grid { grid-template-columns: 1fr; }
	.fp-gallery { grid-template-columns: repeat(3, 1fr); gap: 2px; }
}
