/* Layout Básico do Perfil */
/* Otimização: font-display: swap já aplicado via Google Fonts (display=swap) */
.bc-companion-profile,
.bc-hero,
.bc-profile-content {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    /* Preload hint para fontes críticas */
    font-display: swap;
}

/* Garantir consistência visual independente do estado de login */
body.logged-in .bc-companion-profile,
body:not(.logged-in) .bc-companion-profile {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

body.logged-in .bc-profile-content,
body:not(.logged-in) .bc-profile-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

body.logged-in .bc-hero,
body:not(.logged-in) .bc-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-container,
body:not(.logged-in) .bc-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-section,
body:not(.logged-in) .bc-section {
    margin-top: 0 !important;
    padding-top: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

body.logged-in #sidebar-fixo,
body:not(.logged-in) #sidebar-fixo {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-gallery-preview,
body:not(.logged-in) .bc-gallery-preview {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-hero-content,
body:not(.logged-in) .bc-hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-hero-info,
body:not(.logged-in) .bc-hero-info {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-profile-actions,
body:not(.logged-in) .bc-profile-actions {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.logged-in .bc-profile-meta,
body:not(.logged-in) .bc-profile-meta {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.bc-companion-profile {
    /*max-width: 1200px;
    margin: 0 auto;*/
    display: flex;
    max-width: calc(100vw - 40px);
    padding: 20px;
}

#sidebar-fixo {
    width: calc(25vw - 40px);
    padding: 20px;
    position: relative;
}

.bc-profile-content {
    max-width: calc(75vw - 40px);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bc-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.bc-section {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    padding: 30px 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.bc-gallery-section {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
}

.bc-gallery-section .bc-gallery-preview {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bc-section-title {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
    color: #000;
    flex-basis: 100%;
}

.col-2 {
    width: 50%;
}

.col-3 {
    width: 33.33%;
}

.col-4 {
    width: 25%;
}

/* Hero Section */
.bc-hero {
    padding: 0;
    width: 100%;
}

.bc-hero-section {
    width: 100%;
    max-width: 100%;
}

.bc-hero-section .bc-container {
    max-width: calc(75vw - 40px);
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.bc-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
}

.bc-hero-left {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1 1 0;
    min-width: 300px;
    max-width: none;
}

.bc-hero-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    min-width: 200px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 5%; /* Usa porcentagem para manter posição proporcional */
}

.bc-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-verified-badge {
    border: 1px solid #28a745;
    border-radius: 20px;
    color: #28a745;
    padding: 5px 15px;
    display: flex
;
}

.bc-verified-badge .bc-icon-check{
    /*position: absolute;
    bottom: 5px;
    right: 5px;*/
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-hero-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    height: 200px;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Remover borda rosa do hero-info durante edição */
.bc-hero-info.bc-card-editing-active {
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Manter posição fixa do hero-left durante edição para não afetar about-section */
.bc-hero-left:has(.bc-hero-info.bc-card-editing-active) {
    flex: 1 1 0 !important;
    min-width: 300px !important;
    max-width: none !important;
    width: auto !important;
}

/* Esconder idade, avaliações e perfil verificado durante edição do hero-info */
.bc-hero-info.bc-card-editing-active .bc-profile-meta .bc-meta-age,
.bc-hero-info.bc-card-editing-active .bc-profile-meta .bc-meta-rating,
.bc-hero-info.bc-card-editing-active .bc-profile-meta .bc-meta-verified {
    display: none !important;
}

/* Transições suaves para evitar mudanças bruscas de posição */
.bc-profile-meta .bc-meta-item {
    transition: opacity 0.2s ease, max-height 0.2s ease, margin 0.2s ease, padding 0.2s ease;
}

/* Manter estrutura estável durante edição */
.bc-hero-info {
    transition: height 0.2s ease, min-height 0.2s ease;
    position: relative;
}

.bc-hero-info.bc-card-editing-active {
    min-height: 200px;
    height: auto;
}

/* Garantir que os botões de ação apareçam */
.bc-hero-info.bc-card-editing-active .bc-card-action-buttons {
    display: flex !important;
}

/* Esconder seção sobre durante edição */
.bc-about-section.bc-card-editing-active,
.bc-hero-content:has(.bc-hero-info.bc-card-editing-active) .bc-about-section {
    display: none !important;
}

.bc-profile-name {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #000;
    line-height: 1.2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.bc-profile-name strong {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

/* Botão de edição ao lado do nome */
.bc-profile-name .bc-card-edit-btn-inline {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-left: 8px;
    flex-shrink: 0;
}

/* Botões de ação inline ao lado dos inputs no hero-info */
.bc-hero-info .bc-card-action-buttons {
    display: inline-flex !important;
    gap: 4px !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-left: 8px !important;
    align-self: center !important;
    flex-shrink: 0 !important;
}

/* Garantir que os inputs fiquem alinhados verticalmente mesmo com botões ao lado */
.bc-hero-info.bc-card-editing-active .bc-profile-name,
.bc-hero-info.bc-card-editing-active .bc-gender-row,
.bc-hero-info.bc-card-editing-active .bc-profile-meta {
    display: flex !important;
    align-items: center !important;
}

.bc-hero-info .bc-edit-input,
.bc-hero-info .bc-edit-select {
    align-self: center !important;
}

.bc-hero-info .bc-card-edit-btn-inline {
    position: relative !important;
}

.bc-gender-row {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    font-size: 15px;
    color: #333;
}

.bc-gender-row i {
    color: #e91e63;
    font-size: 16px;
}

.bc-gender-value {
    font-weight: 500;
}

.bc-profile-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    min-height: 40px;
    transition: min-height 0.2s ease;
}

.bc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 15px;
    white-space: nowrap;
}

.bc-meta-item i {
    color: #e91e63;
    font-size: 16px;
}

.bc-meta-item.bc-meta-rating {
    flex-basis: 100%;
    width: 100%;
    margin-top: -2px;
}

.bc-meta-item.bc-meta-verified {
    border: 3px solid #28a745;
    border-radius: 9999px;
    padding: 10px 15px;
    color: #28a745;
    background: #f0fdf4;
    font-weight: 650;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    margin-top: 10px;
    max-width: 70%;
}

.bc-meta-item.bc-meta-verified i {
    color: #28a745;
    font-size: 16px;
    margin-right: 5px;
}

.bc-about-section {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 24px;
    flex: 0 1 500px;
    min-width: 450px;
    max-width: 600px;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

/* Garantir que o tamanho seja mantido em modo de edição */
body.bc-editing-global .bc-about-section {
    flex: 0 1 500px !important;
    min-width: 450px !important;
    max-width: 600px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

/* Garantir que o textarea de edição não altere o layout do card */
.bc-about-content textarea.bc-edit-input {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    resize: vertical !important;
    min-height: 100px !important;
    display: block !important;
}

/* Garantir que o elemento data-editable fique oculto mas não quebre o layout */
body.bc-editing-global .bc-about-content [data-editable] {
    display: none !important;
}

.bc-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Garantir que o conteúdo não quebre o layout em modo de edição */
body.bc-editing-global .bc-about-content {
    overflow: visible !important;
}

.bc-about-content > * {
    flex-shrink: 1;
}

.bc-about-content::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 24px;
    right: 24px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
    pointer-events: none;
    z-index: 1;
}

.bc-about-content p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.bc-about-content .bc-about-me-extra p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 0;
}

.bc-about-more {
    margin-top: auto;
    text-align: right;
    padding-top: 16px;
}


/* Botões */
.bc-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.bc-btn-primary {
    background: #e91e63;
    color: white;
}

.bc-btn-primary:hover {
    background: #c2185b;
}

.bc-btn-secondary {
    background: #6c757d;
    color: white;
}

.bc-btn-share {
    background: #17a2b8;
    color: white;
}

/* Gallery */
.bc-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.bc-gallery-card {
    position: relative;
    border: none;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(-180deg, #ffffff 10%, #000000 100%);
    cursor: pointer;
    display: block;
}

.bc-gallery-main {
    grid-column: span 2;
}

.bc-gallery-card img,
.bc-gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .3s ease-in-out;
    transform: translate3d(0, 0, 0) scale(1, 1);
}

.bc-gallery-card::after {
    content: "";
    position: absolute;
    left: -230px;
    top: 0;
    border-top: 208px solid rgba(7, 0, 2, .3);
    border-left: 140px solid rgba(240, 74, 126, .6);
    border-bottom: 188px solid transparent;
    border-right: 160px solid transparent;
    transition: all .4s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.bc-gallery-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-gallery-card:hover .bc-gallery-card-info {
    opacity: 1;
}

.bc-gallery-card-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-gallery-card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-gallery-card-stat i {
    font-size: 16px;
}

.bc-gallery-card-caption {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-gallery-card-location {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-gallery-card-button {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.bc-gallery-card-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    z-index: 3;
    pointer-events: auto;
}

.bc-gallery-card-edit:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.bc-gallery-card-stat {
    cursor: pointer;
    transition: all 0.2s;
}

.bc-gallery-card-stat:hover {
    opacity: 0.8;
}

.bc-gallery-card-stat.liked i {
    color: #e91e63;
}

.bc-gallery-card-stat.liked .fa-heart {
    font-weight: 900;
}

.bc-media-edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.bc-media-edit-modal.active {
    display: flex;
}

.bc-media-edit-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.bc-media-edit-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.bc-media-edit-close:hover {
    background: #f5f5f5;
    color: #333;
}

.bc-media-edit-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bc-media-edit-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-media-edit-field label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-media-edit-field input,
.bc-media-edit-field textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    resize: vertical;
}

.bc-media-edit-field textarea {
    min-height: 100px;
}

.bc-media-edit-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.bc-media-edit-actions button {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s;
}

.bc-media-edit-save {
    background: #e91e63;
    color: #fff;
}

.bc-media-edit-save:hover {
    background: #c2185b;
}

.bc-media-edit-cancel {
    background: #f5f5f5;
    color: #333;
}

.bc-media-edit-cancel:hover {
    background: #e0e0e0;
}

.bc-gallery-card:hover img,
.bc-gallery-card:hover video {
    opacity: .6;
    transform: translate3d(-20px, 0, 0) scale(1.1, 1.1);
}

.bc-gallery-card:hover::after {
    transform: rotate3d(0, 0, 1, 52deg) scale3d(1, 1, 1);
    opacity: 1;
    top: 103px;
    left: -378px;
    border-top: 325px solid rgba(240, 74, 126, .8);
    border-left: 422px solid rgba(240, 74, 126, .8);
    border-bottom: 218px solid transparent;
    border-right: 160px solid transparent;
}

.bc-gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: background 0.3s;
    z-index: 1;
    pointer-events: none;
}

.bc-gallery-card-overlay-video {
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: auto;
    justify-content: flex-start;
    align-items: flex-start;
}

.bc-gallery-card:hover .bc-gallery-card-overlay-video {
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.bc-gallery-card-overlay i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s, color 0.3s;
}

.bc-gallery-card-overlay-video i {
    display: none;
}

.bc-gallery-card:hover .bc-gallery-card-overlay i {
    transform: scale(1.2);
    color: #ffffff;
}

.bc-gallery-card-volume-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 3;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    font-size: 16px;
}

.bc-gallery-card:hover .bc-gallery-card-volume-toggle {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.bc-gallery-card-volume-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.bc-gallery-card-volume-toggle i {
    font-size: 20px;
    color: #ffffff;
}

.bc-gallery-show-all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    padding: 24px 16px;
}

.bc-gallery-show-all span {
    position: relative;
    z-index: 1;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.bc-gallery-show-all strong {
    font-size: 18px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .bc-gallery-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 200px;
    }

    .bc-gallery-main {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bc-gallery-preview {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .bc-gallery-main {
        grid-column: span 1;
    }
}

.bc-media-uploader {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 4px 0 12px 0;
    flex-wrap: wrap;
}

.bc-media-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bc-media-actions .bc-btn {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
}

.bc-media-hint {
    color: #6b7280;
    font-size: 11px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-upload-list { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.bc-upload-row { background:#f8f9fb; border:1px solid #e5e7eb; border-radius:10px; padding:10px 12px; }
.bc-upload-name { font-size:13px; color:#374151; margin-bottom:6px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; }
.bc-upload-bar { width:100%; height:6px; background:#e5e7eb; border-radius:9999px; overflow:hidden; }
.bc-upload-bar-fill { height:100%; width:0%; background:#10b981; transition: width .2s ease; }
.bc-upload-done .bc-upload-bar-fill { background:#10b981; }
.bc-upload-error .bc-upload-bar-fill { background:#ef4444; width:100%; }

.bc-gallery-grid-expanded {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.bc-gallery-grid-expanded.expanded {
    opacity: 1;
}

.bc-gallery-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-gallery-grid-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.bc-gallery-grid-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #333;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
    line-height: 1;
}

.bc-gallery-grid-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.bc-gallery-grid-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    align-content: start;
}

.bc-gallery-grid-content .bc-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4 / 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.bc-gallery-grid-content .bc-gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.bc-gallery-grid-content .bc-gallery-item img,
.bc-gallery-grid-content .bc-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.bc-gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: background 0.3s;
}

.bc-gallery-item:hover .bc-gallery-item-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.bc-gallery-item-overlay i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s, color 0.3s;
}

.bc-gallery-item:hover .bc-gallery-item-overlay i {
    transform: scale(1.2);
    color: #ffffff;
}

@media (max-width: 768px) {
    .bc-gallery-grid-content {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        padding: 20px;
    }
    
    .bc-gallery-grid-header {
        padding: 15px 20px;
    }
    
    .bc-gallery-grid-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bc-gallery-grid-content {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
        padding: 15px;
    }
}

.bc-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.bc-gallery-modal.active {
    display: flex;
}

.bc-gallery-modal-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    background: #000;
}

.bc-gallery-modal-media-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    background: #000;
}

.bc-gallery-modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
}

.bc-gallery-modal-media-container.dragging {
    cursor: grabbing;
}

.bc-gallery-modal-content.dragging {
    cursor: grabbing;
}

.bc-gallery-modal-media {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    user-select: none;
    -webkit-user-drag: none;
}

.bc-gallery-modal-media.zoomed {
    cursor: grab;
}

.bc-gallery-modal-media.zoomed:active {
    cursor: grabbing;
}

.bc-gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    z-index: 10002;
    transition: background 0.3s;
}

.bc-gallery-modal-close:hover {
    background: rgba(255, 255, 255, 1);
}

.bc-gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    z-index: 10001;
    transition: background 0.3s, transform 0.3s;
}

.bc-gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.bc-gallery-modal-nav.prev {
    left: 20px;
}

.bc-gallery-modal-nav.next {
    right: 420px;
}

.bc-gallery-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bc-gallery-modal-nav:disabled:hover {
    transform: translateY(-50%);
}

.bc-gallery-modal-delete {
    display: none;
}

.bc-gallery-modal-delete-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.bc-gallery-modal-delete-btn:hover {
    color: #e74c3c;
}

.bc-gallery-modal-delete:hover {
    background: #c0392b;
}

.bc-gallery-modal-delete:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bc-gallery-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10001;
}

.bc-gallery-modal-zoom-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10001;
}

.bc-gallery-modal-zoom-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: background 0.3s, transform 0.3s;
}

.bc-gallery-modal-zoom-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.bc-gallery-modal-zoom-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.bc-gallery-modal-zoom-btn:disabled:hover {
    transform: scale(1);
}

.bc-gallery-modal-sidebar {
    width: 400px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid #e0e0e0;
}

.bc-gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.bc-gallery-modal-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.bc-gallery-modal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bc-gallery-modal-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bc-gallery-modal-author-info strong {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.bc-gallery-modal-location {
    font-size: 12px;
    color: #8e8e8e;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bc-gallery-modal-edit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #262626;
    font-size: 18px;
}

.bc-gallery-modal-caption {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    color: #262626;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.bc-gallery-modal-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.bc-gallery-modal-action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 24px;
    color: #262626;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-gallery-modal-action-btn:hover {
    opacity: 0.7;
}

.bc-gallery-modal-action-btn:active {
    transform: scale(0.9);
}

.bc-gallery-modal-like {
    font-size: 24px;
}

.bc-gallery-modal-like.liked i {
    color: #e91e63;
    font-weight: 900;
}

.bc-gallery-modal-like-count,
.bc-gallery-modal-comment-count {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

.bc-gallery-modal-stats {
    padding: 8px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.bc-gallery-modal-likes-text {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 8px;
}

.bc-gallery-modal-comments-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bc-gallery-modal-comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bc-gallery-modal-comment-item {
    display: flex;
    gap: 12px;
}

.bc-gallery-modal-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bc-gallery-modal-comment-content {
    flex: 1;
}

.bc-gallery-modal-comment-text {
    font-size: 14px;
    line-height: 1.5;
    color: #262626;
    margin-bottom: 4px;
}

.bc-gallery-modal-comment-text strong {
    font-weight: 600;
    margin-right: 4px;
}

.bc-gallery-modal-comment-meta {
    font-size: 12px;
    color: #8e8e8e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-gallery-modal-comment-like {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #8e8e8e;
    font-size: 12px;
    padding: 0;
}

.bc-gallery-modal-comment-like:hover {
    color: #e91e63;
}

.bc-gallery-modal-comment-form {
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.bc-gallery-modal-comment-input {
    flex: 1;
    border: none;
    outline: none;
    resize: none;
    font-size: 14px;
    font-family: inherit;
    padding: 8px 0;
    max-height: 100px;
    line-height: 1.5;
}

.bc-gallery-modal-comment-submit {
    background: transparent;
    border: none;
    color: #0095f6;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.bc-gallery-modal-comment-submit:not(:disabled) {
    opacity: 1;
}

.bc-gallery-modal-comment-submit:disabled {
    cursor: not-allowed;
}

.bc-gallery-modal-comment-submit:hover:not(:disabled) {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .bc-gallery-modal-wrapper {
        flex-direction: column;
    }
    
    .bc-gallery-modal-media-container {
        height: 60vh;
    }
    
    .bc-gallery-modal-sidebar {
        width: 100%;
        height: 40vh;
    }
    
    .bc-gallery-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .bc-gallery-modal-nav.prev {
        left: 10px;
    }
    
    .bc-gallery-modal-nav.next {
        right: 10px;
    }
    
    .bc-gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .bc-gallery-modal-zoom-controls {
        top: 10px;
        left: 10px;
        gap: 8px;
    }
    
    .bc-gallery-modal-zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .bc-gallery-modal-delete {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .bc-gallery-modal-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Características */
.bc-characteristics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

body.logged-in .bc-characteristics-grid,
body:not(.logged-in) .bc-characteristics-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.bc-char-group {
    /*background: #f8f9fa;*/
    padding: 20px;
    border-radius: 20px;
    border: 2px #e0e0e0 solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bc-char-title {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
    margin-bottom: 15px;
    font-size: 18px;
}

.bc-char-list {
    list-style: none;
    padding: 0;
}

.bc-char-list li {
    padding: 8px 0;
    /*border-bottom: 1px solid #dee2e6;*/
}

/* Serviços */
.bc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bc-services-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bc-service-category-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bc-category-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e91e63;
}

.bc-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.bc-service-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bc-service-note {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

/* Reviews */
.bc-review-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bc-review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bc-reviewer-name {
    font-weight: bold;
    color: #333;
}

.bc-review-date {
    color: #999;
    font-size: 14px;
}

/* Premium Lock */
.bc-premium-lock {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bc-premium-lock i {
    font-size: 48px;
    color: #ffc107;
    margin-bottom: 15px;
}

/* ========================================
   SEÇÃO: RESUMO DO PERFIL
   ======================================== */

.bc-top-container {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.bc-profile-summary {
    padding: 40px 0;
    background: #fff;
}

/* Grid de 3 Colunas */
.bc-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Cards Padrão */
.bc-summary-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 520px;
    overflow-y: auto;
    gap: 8px;
}

/* Ajustes específicos para card de atendimento */
.bc-summary-card[data-card-type="atendimento"] {
    padding: 12px;
    gap: 6px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-top-container {
    margin-bottom: 10px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-divider {
    margin: 4px 0;
}

/* Reduzir espaçamento de seções e títulos no card de atendimento */
.bc-summary-card[data-card-type="atendimento"] .bc-attendance-cities,
.bc-summary-card[data-card-type="atendimento"] .bc-attendance-types-section,
.bc-summary-card[data-card-type="atendimento"] .bc-services-section {
    margin-bottom: 8px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-attendance-cities h4,
.bc-summary-card[data-card-type="atendimento"] .bc-attendance-types-section h4,
.bc-summary-card[data-card-type="atendimento"] .bc-services-section h3 {
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}

.bc-summary-card[data-card-type="atendimento"] .bc-services-section .bc-top-container {
    margin-bottom: 8px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-cities-list {
    margin-bottom: 0;
}

/* Reduzir espaçamento do hr no card de atendimento */
.bc-summary-card[data-card-type="atendimento"] hr.bc-divider {
    margin: 6px 0 !important;
}


/* Reduzir line-height geral para economizar espaço */
.bc-summary-card[data-card-type="atendimento"] {
    line-height: 1.3;
}

/* Ícones dos Cards */
.bc-sticky-location {
    margin-bottom: 10px;
}

.bc-card-icon i {
    background: #e91e63;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.bc-icon-pink {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bc-card-title {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

/* ========================================
   COLUNA 1: VALORES
   ======================================== */

.bc-value-highlight {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 0;
}

.bc-value-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.bc-value-price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #e91e63;
}

.bc-value-price small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.bc-value-info {
    margin: 0;
    color: #666;
}

.bc-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

/* Formas de Pagamento */
.bc-payment-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 75px;
}

.bc-payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 9px;
    line-height: 1em;
    font-weight: 600;
}

.bc-payment-item i {
    font-size: 18px;
    margin-bottom: 2px;
    color: #e91e63;
}

/* Manter cores rosa no resumo - sobrescrever estilos .on e .off */
.bc-payment-section .bc-payment-item.on .payment-circle,
.bc-payment-section .bc-payment-item.off .payment-circle {
    background: transparent !important;
    border-color: #e91e63 !important;
    color: #e91e63 !important;
}

.bc-payment-section .bc-payment-item.on span,
.bc-payment-section .bc-payment-item.off span {
    color: #e91e63 !important;
}

.bc-payment-section .bc-payment-item.on .payment-circle i,
.bc-payment-section .bc-payment-item.off .payment-circle i {
    color: #e91e63 !important;
}

/* ========================================
   COLUNA 2: ATENDIMENTO
   ======================================== */

.bc-attendance-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 6px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-attendance-list {
    margin-bottom: 4px;
}

.bc-attendance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    line-height: 1.4;
}

.bc-summary-card[data-card-type="atendimento"] .bc-attendance-item {
    padding: 1px 0;
}

.bc-attendance-item.active {
    color: #28a745;
}

.bc-attendance-item.active i {
    color: #28a745;
}

.bc-attendance-item.inactive {
    color: #dc3545;
    text-decoration: line-through;
}

.bc-attendance-item.inactive i {
    color: #dc3545;
}

/* Serviços */
.bc-services-list {
    list-style: none;
    padding: 0;
    margin: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-services-list {
    margin: 4px 0;
    gap: 3px;
}

.bc-service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.bc-summary-card[data-card-type="atendimento"] .bc-service-item {
    gap: 6px;
}

.bc-service-item i {
    font-size: 12px;
}

/* ========================================
   COLUNA 3: AVALIAÇÕES
   ======================================== */

.bc-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bc-stars {
    display: flex;
    gap: 3px;
}

.bc-stars i {
    color: #e91e63;
    font-size: 18px;
}

.bc-rating-count {
    font-size: 14px;
    color: #666;
}

/* Reviews Preview */
.bc-reviews-preview {
    margin: 10px 0;
}

.bc-review-mini {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.bc-stars-mini {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

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

.bc-companion-profile i.fa-star,
.bc-companion-profile i.fa-star-half-alt,
.bc-companion-profile i.far.fa-star {
    color: #e91e63;
}

.bc-stars i.fas.fa-star,
.bc-stars-mini i.fas.fa-star,
.bc-companion-profile i.fas.fa-star {
    color: #e91e63;
}

/* Últimas avaliações: estrela do topo deve ser branca */
.bc-top-container i.fas.fa-star,
.bc-top-container .bc-stars i.fas.fa-star {
    color: #ffffff;
}

.bc-review-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
}

.bc-review-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Link "mais" */
.bc-link-more {
    display: inline-block;
    color: #e91e63;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 14px;
    margin-top: 4px;
}

.bc-link-more:hover {
    text-decoration: underline;
}

/* ========================================
   COLUNA 4: CARD FIXO (STICKY)
   ======================================== */

.bc-sticky-col {
    position: relative;
}

.bc-card-sticky {
    position: sticky;
    background: #f8f9fa;
    top: 20px;
    /*text-align: center;*/
}

.bc-sticky-avatar {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bc-sticky-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-sticky-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 8px;
}

.bc-verified-icon {
    color: #28a745;
    font-size: 18px;
}

.bc-sticky-info {
    display: flex;
    /*justify-content: center;*/
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.bc-sticky-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bc-sticky-rating {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /*justify-content: center;*/
}

.bc-sticky-rating .bc-stars {
    display: flex;
    gap: 4px;
}

.bc-sticky-rating .bc-stars i {
    color: #e91e63;
    font-size: 16px;
}

.bc-sticky-rating .bc-stars i.far {
    color: #ddd;
}

.bc-sticky-rating-count {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 600;
}

.bc-sticky-location {
    display: flex;
    flex-direction: column;
    /*background: #f8f9fa;
    padding: 15px;*/
    border-radius: 8px;
    margin-bottom: 20px;
}

.bc-sticky-location h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0 5px 0;
    color: #333;
}

.bc-sticky-location p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Botões */
.bc-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.bc-btn-whatsapp {
    background: #25D366;
    color: white;
}

.bc-btn-whatsapp:hover {
    background: #1da851;
    color: white;
}

.bc-btn-premium {
    background: #ffc107;
    color: #333;
}

.bc-btn-premium:hover {
    background: #ffb300;
}

.bc-btn i {
    margin-right: 8px;
}

/* ========================================
   SEÇÃO: MÍDIA DE COMPARAÇÃO
   ======================================== */

.bc-verification-media-section {
    padding: 40px 0;
    /*background: #f8f9fa;*/
}

.bc-verification-grid {
    display: grid;
    grid-template-columns: 345px 1fr 330px;
    gap: 20px;
    align-items: stretch;
}

.bc-verification-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px #e0e0e0 solid;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* CARD 1: Foto de Verificação */
.bc-verification-card.bc-verification-photo {
    position: relative;
    min-height: 460px;
}

.bc-verification-photo {
    position: relative;
    min-height: 460px;
    flex: 1;
}

.bc-verification-image {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    flex: 1;
}

.bc-verification-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
}

.bc-verification-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

/* CARD 2: Indicadores de Confiança */
.bc-trust-indicators {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-trust-header {
    margin-bottom: 20px;
}

.bc-trust-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.bc-trust-badge {
    color: #28a745;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bc-trust-badge i {
    font-size: 16px;
}

.bc-trust-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.bc-trust-meta i {
    color: #007bff;
    font-size: 18px;
}

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

.bc-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #333;
}

.bc-trust-item:last-child {
    border-bottom: none;
}

.bc-trust-item > i {
    color: #28a745;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.bc-trust-item.bc-trust-expandable {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.bc-trust-item.bc-trust-expandable:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
}

.bc-trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-trust-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.bc-trust-main span {
    flex: 1;
}

.bc-trust-arrow {
    color: #6c757d;
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bc-trust-item.bc-trust-expanded .bc-trust-arrow {
    transform: rotate(180deg);
}

.bc-trust-explanation {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    padding-left: 0;
}

.bc-trust-item.bc-trust-expanded .bc-trust-explanation {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
    padding-top: 4px;
    padding-left: 0;
}

/* CARD 3: Denúncia */
.bc-report-card {
    padding: 25px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bc-report-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e91e63;
}

.bc-report-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #000;
}

.bc-report-cta-text {
    font-weight: 600;
}

.bc-btn-report {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.95);
    color: #e91e63;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.bc-btn-report:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Sidebar fixo com comportamento sticky */
.bc-sidebar,
.sidebar-fixo,
.bc-profile-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Garantir que o container pai do sidebar permite sticky */
.bc-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start; /* Importante para sticky funcionar */
}

/* Container de descrição */
.bc-description-content {
    width: 100%;
    max-width: 100%;
    border: 2px #e0e0e0 solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    border-radius: 20px;
    box-sizing: border-box;
}

body.logged-in .bc-description-content,
body:not(.logged-in) .bc-description-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* ========================================
   SEÇÃO MAIS INFORMAÇÕES - BELLUME CLUB
   Baseado no PDF de layout
   ======================================== */

.bc-more-info {
    margin: 40px 0;
    padding: 0;
}

.bc-more-info .bc-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

/* Grid de 3 colunas */
.bc-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Cards das colunas */
.bc-info-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.bc-info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Header do card */
.bc-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    border-bottom: 2px solid #dee2e6;
}

/* Body do card */
.bc-card-body {
    padding: 20px;
}

/* Items de informação */
.bc-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    gap: 10px;
}

.bc-info-item:last-child {
    border-bottom: none;
}

.bc-info-item .bc-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    flex-shrink: 0;
    min-width: 120px;
}

.bc-info-item .bc-value {
    font-size: 14px;
    color: #2c3e50;
    text-align: right;
    flex: 1;
}

/* Subtítulos dentro dos cards */
.bc-subsection-title {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0 10px 0;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.bc-subsection-title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.bc-subsection-title i {
    margin-right: 8px;
    color: #e74c3c;
}

/* Listas de serviços e comodidades */
.bc-services-list,
.bc-amenities-list {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.6;
    padding: 10px 0;
}

/* Items de valores */
.bc-rate-item .bc-label {
    min-width: 140px;
}

/* Formas de pagamento */
.bc-payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

/* Checkboxes de formas de pagamento (modo edição) */
.bc-payment-methods-editable {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
}

.bc-payment-checkbox-item {
    display: flex;
    align-items: center;
}

.bc-payment-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    user-select: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.bc-payment-checkbox-label:hover {
    background-color: #f8f9fa;
}

.bc-payment-checkbox-icon {
    font-size: 20px;
    color: #e91e63;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-payment-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e91e63;
}

.bc-payment-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.bc-payment-checkbox-text {
    flex: 1;
}

/* Exibição visual das formas de pagamento (modo visualização) */
.bc-payment-icons-display {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

/* Tipos de atendimento - Checkboxes (modo edição) */
.bc-attendance-types-editable {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
}

.bc-attendance-checkbox-item {
    display: flex;
    align-items: center;
}

.bc-attendance-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    user-select: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.bc-attendance-checkbox-label:hover {
    background-color: #f8f9fa;
}

.bc-attendance-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e91e63;
}

.bc-attendance-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.bc-attendance-checkbox-text {
    flex: 1;
}

/* Exibição visual dos tipos de atendimento (modo visualização) */
.bc-attendance-types-display {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.bc-attendance-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: #2c3e50;
    font-weight: 500;
}

.bc-attendance-type-badge i {
    color: #e91e63;
    font-size: 14px;
}

/* Cidades no card de Atendimento */
.bc-attendance-cities {
    margin-bottom: 15px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-attendance-cities {
    margin-bottom: 8px;
}

.bc-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bc-summary-card[data-card-type="atendimento"] .bc-cities-list {
    gap: 4px;
}

.bc-city-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #e91e63;
    border-radius: 6px;
    padding: 4px 10px;
    color: #e91e63;
    font-weight: 500;
    line-height: 1.3;
}

.bc-summary-card[data-card-type="atendimento"] .bc-city-badge {
    padding: 3px 8px;
    gap: 4px;
}

.bc-city-badge i {
    font-size: 12px;
}

.bc-payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.payment-circle:hover {
    transform: scale(1.1);
}

.payment-circle.pix {
    background: linear-gradient(135deg, #00bfa5 0%, #00897b 100%);
}

.payment-circle.dinheiro {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.payment-circle.debito {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.payment-circle.credito {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.payment-circle img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.bc-payment-icon span {
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Items de horário */
.bc-schedule-item {
    padding: 8px 0;
}

.bc-schedule-item .bc-label {
    min-width: 130px;
    font-size: 13px;
}

.bc-schedule-item .bc-value {
    font-size: 13px;
}

/* Container de edição de horários */
.bc-schedule-edit-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: 8px;
}

.bc-schedule-edit-container .bc-schedule-start-input,
.bc-schedule-edit-container .bc-schedule-end-input {
    width: 100px;
    padding: 4px 6px;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #333;
    transition: border-color 0.2s ease;
}

.bc-schedule-edit-container .bc-schedule-start-input:focus,
.bc-schedule-edit-container .bc-schedule-end-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

.bc-schedule-edit-container .bc-schedule-clear-btn {
    padding: 4px 8px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.2s ease;
}

.bc-schedule-edit-container .bc-schedule-clear-btn:hover {
    background: #c0392b;
}

.bc-schedule-edit-container .bc-schedule-clear-btn:active {
    transform: scale(0.98);
}

/* Display de horário (modo visualização/edição) */
.bc-schedule-display {
    cursor: pointer;
    transition: color 0.2s ease;
}

.bc-editing .bc-schedule-display:hover {
    color: #e91e63;
    text-decoration: underline;
}

/* Aviso de disponibilidade */
.bc-availability-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
}

.bc-availability-notice p {
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    /* Hero Section */
    .bc-hero-section .bc-container {
        max-width: calc(100vw - 40px);
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .bc-hero-content {
        flex-wrap: wrap;
    }
    
    .bc-hero-left {
        gap: 20px;
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .bc-hero-avatar {
        margin-left: 3%; /* Proporcional */
    }
    
    .bc-about-section {
        min-width: auto !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bc-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bc-sticky-col {
        grid-column: span 2;
    }
    
    .bc-card-sticky {
        position: relative;
        top: 0;
    }

    .bc-verification-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bc-verification-photo {
        grid-row: span 2;
    }
}

/* Tablet */
@media (max-width: 992px) {
    /* Hero Section */
    .bc-hero-section .bc-container {
        max-width: calc(100vw - 40px);
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .bc-hero-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .bc-hero-left {
        gap: 20px;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .bc-hero-avatar {
        margin-left: 2%; /* Proporcional */
        width: 150px;
        height: 150px;
        min-width: 150px;
    }
    
    .bc-hero-info {
        height: auto;
        min-height: 150px;
        flex: 1;
    }
    
    .bc-about-section {
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    body.bc-editing-global .bc-about-section {
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .bc-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bc-info-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .bc-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bc-info-item .bc-label {
        min-width: auto;
    }
    
    .bc-info-item .bc-value {
        text-align: left;
    }
    
    .bc-payment-methods {
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero Section */
    .bc-hero-section .bc-container {
        max-width: calc(100vw - 40px);
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .bc-hero-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    
    .bc-hero-left {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .bc-hero-avatar {
        margin-left: 0;
        width: 150px;
        height: 150px;
        min-width: 150px;
    }
    
    .bc-hero-info {
        width: 100%;
        height: auto;
        align-items: center;
        text-align: center;
    }
    
    .bc-profile-name {
        justify-content: center;
        text-align: center;
        font-size: 30px;
    }
    
    .bc-profile-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bc-about-section {
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
    }
    
    body.bc-editing-global .bc-about-section {
        min-width: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
    }
    
    .bc-characteristics-grid,
    .bc-services-grid {
        grid-template-columns: 1fr;
    }

    .bc-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-sticky-col {
        grid-column: span 1;
    }
    
    .bc-payment-icons {
        grid-template-columns: repeat(4, 1fr);
    }

    .bc-verification-grid {
        grid-template-columns: 1fr;
    }
    
    .bc-verification-photo {
        height: 400px;
        grid-row: auto;
    }

    .bc-more-info .bc-section-title {
        font-size: 24px;
    }
    
    .bc-card-header {
        padding: 15px;
        font-size: 18px;
    }
    
    .bc-card-body {
        padding: 15px;
    }
    
    .bc-info-item .bc-label,
    .bc-info-item .bc-value {
        font-size: 13px;
    }
    
    .bc-payment-methods {
        gap: 10px;
    }
    
    .payment-circle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .bc-payment-icon span {
        font-size: 10px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    /* Hero Section */
    .bc-hero-section .bc-container {
        max-width: calc(100vw - 20px);
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .bc-hero-content {
        gap: 15px;
    }
    
    .bc-hero-left {
        gap: 10px;
    }
    
    .bc-hero-avatar {
        width: 120px;
        height: 120px;
        min-width: 120px;
    }
    
    .bc-hero-info {
        gap: 3px;
    }
    
    .bc-profile-name {
        font-size: 24px;
    }
    
    .bc-profile-meta {
        font-size: 12px;
        gap: 6px;
    }
    
    .bc-meta-item {
        font-size: 12px;
    }
    
    .bc-about-section {
        padding: 10px !important;
    }
    
    .bc-more-info {
        margin: 20px 0;
    }
    
    .bc-info-grid {
        gap: 10px;
    }
    
    .bc-card-body {
        padding: 12px;
    }
    
    .bc-subsection-title {
        font-size: 15px;
        margin: 15px 0 8px 0;
        padding-top: 12px;
    }
    
    .payment-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .payment-circle img {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   VARIAÇÕES DE CORES
   ======================================== */

/* Destaque para valores positivos */
.bc-value strong {
    font-weight: 600;
}

/* Valores não disponíveis */
.bc-value .not-available {
    color: #e74c3c !important;
    font-style: italic;
}

/* Valores informativos */
.bc-value .info-text {
    color: #7f8c8d !important;
    font-style: italic;
}

/* Links dentro dos cards */
.bc-card-body a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bc-card-body a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* ========================================
   ACESSIBILIDADE
   ======================================== */

.bc-payment-icon:focus-within .payment-circle {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.bc-info-card:focus-within {
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

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

.bc-info-card {
    animation: fadeInUp 0.5s ease forwards;
}

.bc-info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.bc-info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bc-info-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .bc-info-grid {
        display: block;
    }
    
    .bc-info-card {
        page-break-inside: avoid;
        break-inside: avoid;
        margin-bottom: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .payment-circle {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Estilos para Localizações */
.bc-locations-container {
    margin-bottom: 16px;
}

.bc-location-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.bc-location-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bc-location-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bc-location-city {
    font-weight: 600;
    color: #2c3e50;
}

.bc-location-neighborhood {
    color: #7f8c8d;
    font-size: 0.95em;
}

.bc-location-address {
    color: #95a5a6;
    font-size: 0.9em;
}

.bc-location-form {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.bc-location-form label {
    display: block;
    font-size: 0.85em;
    color: #7f8c8d;
    margin-bottom: 4px;
    font-weight: 500;
}

.bc-location-form input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.bc-location-form input[type="text"]:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
}

.bc-remove-location-btn {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    padding: 4px 0;
    margin-top: 8px;
    transition: color 0.2s;
}

.bc-remove-location-btn:hover {
    color: #c0392b;
}

.bc-add-location-btn {
    width: 100%;
    padding: 10px;
    margin-top: 12px;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    border-radius: 4px;
    cursor: pointer;
    color: #27ae60;
    font-size: 14px;
    transition: all 0.2s;
}

.bc-add-location-btn:hover {
    background: #e8f5e9;
    border-color: #27ae60;
    color: #229954;
}

.bc-no-locations {
    color: #7f8c8d;
    font-style: italic;
    padding: 12px 0;
}