/* ==========================================================================
   Club do Desejo - Public Profile Header Styles
   ========================================================================== */

/* Layout Wrapper */
body .clubPublic_profileHeader {
    position: relative;
    background-color: #100025;
    color: #ffffff;
    overflow: hidden;
    padding-bottom: 2rem;
}

/* Cover Slider */
body .clubPublic_profileHeader .clubPublic_profileCoverCarousel {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: #0b001a;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileCoverCarousel {
        height: 65vh;
    }
}

body .clubPublic_profileHeader .clubPublic_profileCoverInner,
body .clubPublic_profileHeader .clubPublic_profileCoverItem,
body .clubPublic_profileHeader .clubPublic_profileCoverImg {
    height: 100%;
    width: 100%;
}

body .clubPublic_profileHeader .clubPublic_profileCoverImg {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.05);
}

/* Gradient Overlay over Cover */
body .clubPublic_profileHeader .clubPublic_profileCoverOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(16, 0, 37, 0) 30%,
            rgba(16, 0, 37, 0.4) 60%,
            rgba(16, 0, 37, 0.85) 85%,
            #100025 100%);
    pointer-events: none;
    z-index: 2;
}

/* Profile Info Container (Shifted up to overlap cover) */
body .clubPublic_profileHeader .clubPublic_profileInfoContainer {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    /* Overlaps cover slider */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileInfoContainer {
        margin-top: -100px;
    }
}

body .clubPublic_profileHeader .clubPublic_profileInfoRow {
    align-items: flex-end;
}

/* Avatar Wrapper & Image */
body .clubPublic_profileHeader .clubPublic_profileAvatarWrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    /* Dual gradient border effect using padding & background */
    padding: 4px;
    background: linear-gradient(135deg, #5d11cf 0%, #9f10d8 100%);
    box-shadow: 0 8px 24px rgba(93, 17, 207, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body .clubPublic_profileHeader .clubPublic_profileAvatarWrapper:hover {
    transform: scale(1.05);
}

body .clubPublic_profileHeader .clubPublic_profileAvatarImg {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #100025;
    background-color: #100025;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileAvatarImg {
        width: 160px;
        height: 160px;
        border-width: 4px;
    }
}

/* Status Dot (Online Indicator) */
body .clubPublic_profileHeader .clubPublic_profileStatusDot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #100025;
    z-index: 3;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileStatusDot {
        bottom: 12px;
        right: 12px;
        width: 24px;
        height: 24px;
        border-width: 4px;
    }
}

body .clubPublic_profileHeader .clubPublic_profileStatusOnline {
    background-color: #2ec4b6;
    /* vibrant green */
    box-shadow: 0 0 8px #2ec4b6, 0 0 16px rgba(46, 196, 182, 0.5);
    animation: clubPublic_profilePulseOnline 2s infinite;
}

@keyframes clubPublic_profilePulseOnline {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

/* Profile Details Column */
body .clubPublic_profileHeader .clubPublic_profileDetailsCol {
    padding-bottom: 8px;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileDetailsCol {
        padding-left: 1.5rem;
    }
}

/* Name */
body .clubPublic_profileHeader .clubPublic_profileName {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(16, 0, 37, 0.9);
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileName {
        font-size: 2.5rem;
    }
}

/* Verified Badge */
body .clubPublic_profileHeader .clubPublic_profileVerifiedBadge {
    display: inline-flex;
    align-items: center;
    color: #1d9bf0;
    /* Twitter/Instagram verified blue */
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 8px rgba(29, 155, 240, 0.4));
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileVerifiedBadge {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
}

body .clubPublic_profileHeader .clubPublic_profileVerifiedSvg {
    width: 22px;
    height: 22px;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileVerifiedSvg {
        width: 28px;
        height: 28px;
    }
}

/* Meta Data (Location) */
body .clubPublic_profileHeader .clubPublic_profileMeta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    /* Softer text color */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileMeta {
        font-size: 1.05rem;
        justify-content: flex-start;
    }
}

body .clubPublic_profileHeader .clubPublic_profileMetaItem {
    display: inline-flex;
    align-items: center;
}

body .clubPublic_profileHeader .clubPublic_profileMetaIconWrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(240, 220, 6, 0.15);
    /* Soft transparent yellow circle */
    margin-right: 8px;
    flex-shrink: 0;
}

body .clubPublic_profileHeader .clubPublic_profileMetaIcon {
    color: #f0dc06;
    margin-right: 0;
}

body .clubPublic_profileHeader .clubPublic_profileMetaIconSvg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    vertical-align: middle;
}

@media (min-width: 768px) {
    body .clubPublic_profileHeader .clubPublic_profileMetaIconSvg {
        width: 16px;
        height: 16px;
    }
}

/* Specific Location color */
body .clubPublic_profileHeader .clubPublic_profileMetaLocation {
    font-weight: 400;
}

/* ==========================================================================
   Club do Desejo - Public Profile Info & Sidebar Styles
   ========================================================================== */

/* Main Containers */
body .clubPublic_profileInfosContainer {
    color: #ffffff;
    background-color: #100025;
}

/* Service Type Badges (Atendimento) */
body .clubPublic_profileServTypeContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body .clubPublic_profileServTypeBadge {
    display: inline-flex;
    align-items: center;
    background: rgba(28, 15, 58, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(159, 16, 216, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body .clubPublic_profileServTypeBadge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 17, 207, 0.25);
    border-color: rgba(159, 16, 216, 0.4);
}

body .clubPublic_profileServTypeIcon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

body .clubPublic_profileServTypeIcon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Presencial Badge Colors */
body .clubPublic_profileServTypeBadge.clubPublic_profileServTypePresencial {
    border-color: rgba(159, 16, 216, 0.45);
    background: rgba(93, 17, 207, 0.15);
    box-shadow: 0 0 12px rgba(159, 16, 216, 0.2);
}

body .clubPublic_profileServTypeBadge.clubPublic_profileServTypePresencial .clubPublic_profileServTypeIcon {
    background-color: rgba(93, 17, 207, 0.25);
    color: #b825f2;
}

/* Virtual Badge Colors */
body .clubPublic_profileServTypeBadge.clubPublic_profileServTypeVirtual {
    border-color: rgba(240, 220, 6, 0.4);
    background: rgba(240, 220, 6, 0.08);
    box-shadow: 0 0 12px rgba(240, 220, 6, 0.15);
}

body .clubPublic_profileServTypeBadge.clubPublic_profileServTypeVirtual .clubPublic_profileServTypeIcon {
    background-color: rgba(240, 220, 6, 0.2);
    color: #ffdc00;
}

body .clubPublic_profileServTypeName {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
}

@media (max-width: 767px) {
    body .clubPublic_profileServTypeBadge {
        width: 100%;
        justify-content: center;
    }
}

/* Highlight Box (Destaque) */
body .clubPublic_profileHighlightBox {
    position: relative;
    background: linear-gradient(135deg, rgba(93, 17, 207, 0.2) 0%, rgba(159, 16, 216, 0.08) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 4px solid #9f10d8;
    padding: 1.5rem 2rem;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

body .clubPublic_profileQuoteSymbol {
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 3rem;
    color: rgba(159, 16, 216, 0.25);
    line-height: 1;
}

body .clubPublic_profileHighlightText {
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: #ffdc00;
    /* Yellow highlight color */
    letter-spacing: 0.2px;
}

/* Cards & Containers */
body .clubPublic_profileSectionCard {
    background: rgba(22, 10, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(159, 16, 216, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body .clubPublic_profileSectionTitle {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #ffffff;
    border-bottom: none;
    padding-bottom: 4px;
}

/* About Me Collapsible Description */
body .clubPublic_profileAboutWrapper {
    position: relative;
}

body .clubPublic_profileAboutText {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

body .clubPublic_profileDescCollapseContent {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body .clubPublic_profileAboutText.clubPublic_profileExpanded .clubPublic_profileDescCollapseContent {
    display: inline;
    opacity: 1;
}

body .clubPublic_profileToggleDescBtn {
    background: none;
    border: none;
    color: #9f10d8;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 6px 0 0 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

body .clubPublic_profileToggleDescBtn:hover {
    color: #5d11cf;
}

body .clubPublic_profileToggleDescIcon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

body .clubPublic_profileAboutText.clubPublic_profileExpanded+body .clubPublic_profileToggleDescBtn .clubPublic_profileToggleDescIcon {
    transform: rotate(180deg);
}

/* Characteristics / Features Grid styling */
body .clubPublic_profileFeatureCard {
    background: rgba(28, 15, 58, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(159, 16, 216, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body .clubPublic_profileFeatureCard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 17, 207, 0.15);
}

body .clubPublic_profileFeatureIconWrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(240, 220, 6, 0.12);
    /* transparent yellow */
    color: #f0dc06;
    /* yellow icon color */
    margin-right: 8px;
    flex-shrink: 0;
}

body .clubPublic_profileFeatureIconWrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

body .clubPublic_profileFeatureLabel {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

body .clubPublic_profileFeatureValue {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

/* Sidebar & Rates list styling */
body .clubPublic_profileRatesCard {
    border-color: rgba(159, 16, 216, 0.25);
}

body .clubPublic_profileRateItem {
    background: rgba(28, 15, 58, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(93, 17, 207, 0.15);
    transition: transform 0.2s ease;
}

body .clubPublic_profileRateItem:hover {
    transform: translateX(4px);
    border-color: rgba(159, 16, 216, 0.3);
}

body .clubPublic_profileRateIconWrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(240, 220, 6, 0.12);
    /* transparent yellow */
    color: #f0dc06;
    /* yellow icon color */
    margin-right: 14px;
    flex-shrink: 0;
}

body .clubPublic_profileRateIconWrapper svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

body .clubPublic_profileRateTime {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

body .clubPublic_profileRateDesc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}

body .clubPublic_profileRatePrice {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

body .clubPublic_profileCurrency {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 2px;
}

/* ==========================================================================
   Club do Desejo - Public Profile Image Gallery Styles
   ========================================================================== */

/* Gallery Container */
body .clubPublic_profileGalleryContainer {
    position: relative;
    z-index: 10;
}

/* Gallery Title */
body .clubPublic_profileGalleryTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Gallery Item Container */
body .clubPublic_profileGalleryItem {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(22, 10, 44, 0.65);
    border: 1px solid rgba(159, 16, 216, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

/* Hover Zoom Effect */
body .clubPublic_profileGalleryItem:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(159, 16, 216, 0.5);
    box-shadow: 0 10px 25px rgba(93, 17, 207, 0.35);
}

/* Image Link wrapper */
body .clubPublic_profileGalleryLink {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Image Styling */
body .clubPublic_profileGalleryImg {
    width: 100%;
    aspect-ratio: 321 / 481;
    object-fit: cover;
    object-position: center;
    transition: filter 0.3s ease;
    filter: brightness(0.9);
}

body .clubPublic_profileGalleryItem:hover .clubPublic_profileGalleryImg {
    filter: brightness(1.05);
}

/* "Ver mais" Button Styling */
body .clubPublic_profileBtnMore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5d11cf 0%, #9f10d8 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(93, 17, 207, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

body .clubPublic_profileBtnMore:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(93, 17, 207, 0.45);
    background: linear-gradient(135deg, #6c1be0 0%, #ad1fe9 100%);
}

body .clubPublic_profileBtnMore:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(93, 17, 207, 0.25);
}

body .clubPublic_profileBtnMoreIcon {
    transition: transform 0.2s ease;
}

body .clubPublic_profileBtnMore:hover .clubPublic_profileBtnMoreIcon {
    transform: translateY(2px);
}

/* Smooth Fade In Animation for loaded images */
@keyframes clubPublic_profileFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

body .clubPublic_profileFadeIn {
    animation: clubPublic_profileFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ==========================================================================
   Club do Desejo - Public Profile Video Gallery & Lightbox Styles
   ========================================================================== */

/* Video Container & Titles */
body .clubPublic_profileVideoContainer {
    position: relative;
    z-index: 10;
}

body .clubPublic_profileVideoTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Video Grid Item */
body .clubPublic_profileVideoItem {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    background: rgba(22, 10, 44, 0.65);
}

body .clubPublic_profileVideoItem:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(159, 16, 216, 0.5) !important;
    box-shadow: 0 10px 25px rgba(93, 17, 207, 0.35) !important;
}

/* Transitions for overlay play elements */
body .clubPublic_profileVideoPlayOverlay {
    transition: background-color 0.3s ease;
}

body .clubPublic_profileVideoPlayIcon {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

body .clubPublic_profileVideoLink:hover .clubPublic_profileVideoPlayOverlay {
    background-color: rgba(11, 0, 26, 0.5) !important;
}

body .clubPublic_profileVideoLink:hover .clubPublic_profileVideoPlayIcon {
    transform: scale(1.15);
    color: #ffdc00 !important;
    filter: drop-shadow(0 0 8px rgba(159, 16, 216, 0.8));
}

/* Backdrop Blur for Lightbox modal */
body .modal-backdrop.show {
    background-color: rgba(11, 0, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Custom modal close transition */
body .clubPublic_profileVideoLightboxModal .btn-close {
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.25s ease;
}

body .clubPublic_profileVideoLightboxModal .btn-close:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: transparent !important;
}

/* Premium scale-in transition for modal dialog */
body .clubPublic_profileVideoLightboxModal.fade .modal-dialog {
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body .clubPublic_profileVideoLightboxModal.show .modal-dialog {
    transform: scale(1);
}

/* ==========================================================================
   Club do Desejo - Public Profile Comments Section
   ========================================================================== */

body .clubPublic_profileCommentsContainer {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

body .clubPublic_profileCommentsTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

body .clubPublic_profileCommentsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body .clubPublic_profileCommentItem {
    background: rgba(22, 10, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(159, 16, 216, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body .clubPublic_profileCommentItem:hover {
    transform: translateY(-2px);
    border-color: rgba(159, 16, 216, 0.4);
    box-shadow: 0 10px 25px rgba(93, 17, 207, 0.15);
}

body .clubPublic_profileCommentAvatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5d11cf 0%, #9f10d8 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(93, 17, 207, 0.3);
    user-select: none;
}

body .clubPublic_profileCommentDetails {
    flex-grow: 1;
}

body .clubPublic_profileCommentHeader {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

body .clubPublic_profileCommentAuthor {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

body .clubPublic_profileCommentDate {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

body .clubPublic_profileCommentText {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

body .clubPublic_profileCommentText p {
    margin-bottom: 0.75rem;
}

body .clubPublic_profileCommentText p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Club do Desejo - Public Profile Services Section
   ========================================================================== */

body .clubPublic_profileServicesContainer {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

body .clubPublic_profileServicesTitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

body .clubPublic_profileServiceItem {
    background: rgba(22, 10, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(159, 16, 216, 0.2);
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

body .clubPublic_profileServiceItem:hover {
    transform: translateY(-5px);
    border-color: rgba(159, 16, 216, 0.5);
    box-shadow: 0 8px 24px rgba(93, 17, 207, 0.35);
}

body .clubPublic_profileServiceThumbWrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

body .clubPublic_profileServiceItem:hover .clubPublic_profileServiceThumbWrapper {
    transform: scale(1.08);
}

body .clubPublic_profileServiceThumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body .clubPublic_profileServiceThumbPlaceholder {
    width: 100%;
    height: 100%;
    background-color: rgba(28, 15, 58, 0.85);
    color: #ffdc00;
}

body .clubPublic_profileServicePlaceholderSvg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

body .clubPublic_profileServiceName {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    word-break: break-word;
}

/* ==========================================================================
   Club do Desejo - Public Profile Contact Section Styles
   ========================================================================== */

body .clubPublic_profileContactContainer {
    position: relative;
    z-index: 10;
}

body .clubPublic_profileContactCard {
    background: rgba(22, 10, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(159, 16, 216, 0.25);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body .clubPublic_profileContactCard:hover {
    border-color: rgba(159, 16, 216, 0.4);
    box-shadow: 0 12px 40px 0 rgba(93, 17, 207, 0.2);
}

body .clubPublic_profileContactTitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(93, 17, 207, 0.4);
    letter-spacing: -0.3px;
}

body .clubPublic_profileContactPhone {
    margin: 2rem 0;
}

body .clubPublic_profileContactPhoneLabel {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

body .clubPublic_profileContactPhoneNumber {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffdc00;
    /* Yellow highlight color */
    text-shadow: 0 0 15px rgba(255, 220, 0, 0.4);
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

@media (max-width: 576px) {
    body .clubPublic_profileContactPhoneNumber {
        font-size: 1.75rem;
    }
}

body .clubPublic_profileContactButtons {
    width: 100%;
}

body .clubPublic_profileContactBtn {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, filter 0.2s ease;
    color: #ffffff !important;
    text-decoration: none;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

body .clubPublic_profileContactBtn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

body .clubPublic_profileContactBtn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

body .clubPublic_profileContactBtnIcon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body .clubPublic_profileContactBtnIcon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

/* WhatsApp Specific Button */
body .clubPublic_profileContactBtnWhats {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

body .clubPublic_profileContactBtnWhats:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Call Specific Button */
body .clubPublic_profileContactBtnCall {
    background: linear-gradient(135deg, #5d11cf 0%, #9f10d8 100%);
    box-shadow: 0 4px 15px rgba(159, 16, 216, 0.3);
}

body .clubPublic_profileContactBtnCall:hover {
    box-shadow: 0 8px 25px rgba(159, 16, 216, 0.45);
}

/* Telegram Specific Button */
body .clubPublic_profileContactBtnTelegram {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

body .clubPublic_profileContactBtnTelegram:hover {
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.45);
}

/* Site Specific Button */
body .clubPublic_profileContactBtnSite {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}

body .clubPublic_profileContactBtnSite:hover {
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.45);
}

/* ==========================================================================
   Club do Desejo - Public Profile More Infos Section (Locais, Pagamento, Atendo)
   ========================================================================== */

body .clubPublic_profileMoreInfosContainer {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

body .clubPublic_profileMoreInfosCard {
    background: rgba(22, 10, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(159, 16, 216, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body .clubPublic_profileMoreInfosCard:hover {
    border-color: rgba(159, 16, 216, 0.4);
    box-shadow: 0 8px 24px rgba(93, 17, 207, 0.25);
}

body .clubPublic_profileMoreInfosHeader {
    display: flex;
    align-items: center;
}

body .clubPublic_profileMoreInfosIcon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

body .clubPublic_profileMoreInfosIcon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

body .clubPublic_profileMoreInfosCard:hover .clubPublic_profileMoreInfosIcon {
    color: #9f10d8;
    transform: scale(1.1);
}

body .clubPublic_profileMoreInfosTitle {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

body .clubPublic_profileMoreInfosBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body .clubPublic_profileMoreInfosBadge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    background-color: rgba(28, 15, 58, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

body .clubPublic_profileMoreInfosBadge:hover {
    transform: translateY(-2px);
    border-color: rgba(159, 16, 216, 0.4);
    background-color: rgba(93, 17, 207, 0.15);
}

/* ==========================================================================
   Club do Desejo - Public Profile Floating CTA Styles
   ========================================================================== */
body .clubPublic_floatingCtaContainer {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

body .clubPublic_floatingCtaInfo {
    display: none;
    /* Hidden on Desktop */
}

body .clubPublic_floatingCtaBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff !important;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, filter 0.2s ease;
}

body .clubPublic_floatingCtaBtnIcon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

body .clubPublic_floatingCtaBtnIcon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

/* Mobile styles */
@media (max-width: 767px) {
    body .clubPublic_floatingCtaContainer {
        bottom: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        background: rgba(22, 10, 44, 0.55);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(159, 16, 216, 0.3);
        border-radius: 16px;
        padding: 12px 20px;
        width: 95%;
        max-width: 450px;
        justify-content: space-between;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    body .clubPublic_floatingCtaContainer.clubPublic_noPrice {
        justify-content: center;
    }

    body .clubPublic_floatingCtaInfo {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    body .clubPublic_floatingCtaLabel {
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.5px;
    }

    body .clubPublic_floatingCtaPrice {
        font-size: 1.15rem;
        font-weight: 800;
        color: #ffdc00;
        /* Yellow highlight */
        text-shadow: 0 0 10px rgba(255, 220, 0, 0.3);
    }

    body .clubPublic_floatingCtaBtn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: auto;
    }
}