/* Estilos para os componentes de vídeo */
.videos-grid {
    margin-bottom: 2rem;
}

.video-card, .video-block {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover, .video-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.video-thumbnail-container {
    position: relative;
    overflow: hidden;
    background-color: #201020; /* Fundo escuro para melhor visualização */
    aspect-ratio: 16/9;
}

.video-thumbnail-wrapper {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumbnail, 
.video-block:hover .video-thumbnail {
    opacity: 0.3; /* Reduzir opacidade ao invés de escalar */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.video-card:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.video-block .video-overlay {
    opacity: 0.7;
}

.video-block:hover .video-overlay {
    opacity: 0.3;
}

.play-icon {
    color: white;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 3;
}

.play-icon i {
    font-size: 3rem;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

.video-card:hover .play-icon, 
.video-block:hover .play-icon {
    transform: scale(1.1);
    opacity: 0.7;
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.video-card:hover .video-preview, 
.video-block:hover .video-preview {
    opacity: 1;
}

/* Ajustes para perfil de anunciante */
.profile-videos-section .video-card .video-preview {
    z-index: 3;
}

.profile-videos-section .video-card:hover .video-thumbnail {
    opacity: 0.1;
}

.profile-videos-section .video-card:hover .play-icon {
    opacity: 0;
}

/* Adicionar animação de pulsação para ícone de play */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.profile-videos-section .play-icon i {
    animation: pulse 2s infinite;
}

.video-error-badge, .video-missing-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(220, 53, 69, 0.85);
    color: white;
    padding: 6px 8px;
    font-size: 12px;
    text-align: center;
}

.video-principal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    z-index: 2;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-action:hover {
    transform: scale(1.1);
    background-color: white;
}

.video-info {
    background-color: #fff;
    padding: 15px;
}

.video-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
}

.video-meta {
    color: #777;
}

.video-date, .video-duration {
    color: #666;
}

/* Estilos específicos para a seção de vídeos na página de perfil */
.profile-videos-section .card-header {
    background-color: var(--primary-color);
    color: white;
}

.profile-videos-section .section-title {
    margin-bottom: 0;
    font-size: 1.4rem;
}

/* Estilos para o modal de vídeo */
#videoModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

#videoModal .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal video {
    width: 100%;
    height: auto;
    display: block;
}

/* Ajustes para alinhamento dos cards de perfil */
.profile-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 600px; /* Aumentado para acomodar melhor o conteúdo */
    border-radius: 15px;
    border: 1px solid #f0d4d4;
    transition: transform 0.3s;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 55, 92, 0.2);
}

.profile-card-image {
    position: relative;
    aspect-ratio: 3/4;
    height: 300px; /* Aumentado para dar mais destaque à imagem */
    overflow: hidden;
}

.profile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-card-image img {
    transform: scale(1.05);
}

.profile-card-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow: visible;
    position: relative;
    min-height: 260px; /* Ajustado para a nova estrutura */
}

/* Estilo do nome - ajustado para não cortar */
.profile-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    white-space: normal; /* Permitir quebra de linha */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Permitir até 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #5d1a2b;
    line-height: 1.3;
    min-height: 1.7em; /* Altura mínima para acomodar uma linha */
    max-height: 3.4em; /* Altura máxima para 2 linhas */
}

/* Container de informações */
.profile-info-container {
    margin-bottom: 0.5rem;
    width: 100%;
    clear: both;
}

/* Linha para atributos */
.profile-attributes-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.5rem;
}

/* Botão centralizado */
.profile-button-wrapper {
    position: relative;
    z-index: 10;
}

/* Container para o botão de perfil */
.profile-button-container {
    padding: 0.5rem 0;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.btn-profile {
    background-color: #fff5f7;
    border: 2px solid #f0d4d4;
    color: #9a3853;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(155, 60, 90, 0.1);
    text-decoration: none !important;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    width: 90%;
}

.btn-profile:hover,
.btn-profile:focus {
    background-color: #fff0f3;
    color: #9a3853;
    border-color: #e6bec7;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(155, 60, 90, 0.15);
    text-decoration: none !important;
}

/* Atributos com estilo badge */
.attribute-badge {
    background-color: #fff5f7;
    border-color: #f0d4d4;
    color: #9a3853;
    font-weight: 500;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.attribute-badge i {
    color: #9a3853;
    opacity: 0.85;
    margin-right: 0.3rem;
}

/* Estilo para o contador de visualizações */
.views-count {
    color: #999;
    font-size: 0.75rem;
    text-align: center;
}

.views-count i {
    color: #999;
    opacity: 0.8;
}

/* Atributos do perfil */
.attributes-container {
    margin: 0.5rem 0 4.5rem; /* Aumentar margem inferior para dar mais espaço ao botão */
}

/* Grupo de informações */
.profile-info-group {
    width: 100%;
}

.profile-details {
    margin-bottom: 0.5rem;
}

.profile-location, 
.profile-category {
    font-size: 0.75rem; /* Reduzir tamanho da fonte */
    padding: 0;
    background: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.profile-location i, 
.profile-category i {
    margin-right: 2px; /* Espaçamento menor entre ícone e texto */
}

.info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.2rem;
}

/* Atributos do perfil */
.profile-attributes {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.attribute {
    font-size: 0.75rem;
    color: #666;
    display: inline-flex;
    align-items: center;
}

.attribute i {
    margin-right: 2px; /* Espaçamento menor entre ícone e texto */
}

/* Footer do card */
.card-footer-compact {
    margin-top: 0.5rem;
}

/* Estilos da Galeria de Fotos */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Modal de imagens personalizado */
#imageModal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.95);
    border: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

#imageModal .modal-header {
    background-color: rgba(0,0,0,0.8);
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#imageModal .modal-body {
    padding: 0;
    position: relative;
}

#imageModal .image-container {
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#imageModal img {
    max-height: 80vh;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    transform-origin: center;
}

#imageModal .modal-dialog {
    max-width: 90%;
    margin-top: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

/* Controles do modal */
#imageModal .modal-controls {
    display: flex;
    align-items: center;
}

#imageModal .btn-close {
    color: white;
    background-color: rgba(255,255,255,0.2);
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
    border-radius: 50%;
    padding: 8px;
    transition: all 0.2s ease;
}

#imageModal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
    background-color: rgba(255,255,255,0.3);
}

#imageModal .btn-dark {
    background-color: rgba(255,255,255,0.2);
    border: none;
    color: white;
    opacity: 0.7;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
}

#imageModal .btn-dark:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.3);
}

/* Navegação das imagens */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: white;
    font-size: 20px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.gallery-nav:hover {
    background-color: rgba(0,0,0,0.8);
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

/* Contador de imagens */
.image-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Animação de fade para troca de imagens */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

#modalImage {
    transition: all 0.3s ease;
}

#modalImage.fade-in {
    animation: fadeIn 0.3s ease forwards;
}

#modalImage.fade-out {
    animation: fadeOut 0.15s ease forwards;
}

/* Zoom animado ao passar o mouse sobre as miniaturas */
.gallery-item .gallery-image {
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* Efeito de overlay nas miniaturas */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Ícone de ampliação nas miniaturas */
.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: white;
    font-size: 24px;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Força de estilo para evitar tela cheia em dispositivos móveis */
body, html {
    height: 100%;
    overflow-y: auto !important;
    position: relative;
}

.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

/* Estilos para cards destacados */
.profile-card.highlighted {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(200, 55, 92, 0.25);
}

.profile-card.highlighted:hover {
    box-shadow: 0 15px 35px rgba(200, 55, 92, 0.35);
}

.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.video-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.video-badge i {
    color: #ff4d4d;
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Melhorar espaçamento dos ícones */
.profile-location i, 
.profile-category i,
.attribute i {
    width: 1.2rem;
    margin-right: 0.5rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Estilo para o badge de valor por hora */
.valor-hora-badge {
    background-color: #28a745;
    color: white;
    font-weight: bold;
}

.valor-hora-badge i {
    color: #fff;
    margin-right: 5px;
}

/* Destaque na página de perfil */
.valor-hora-destaque {
    background-color: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.2);
}

.valor-hora-destaque i {
    color: #fff;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Novo design moderno para o valor por hora */
.valor-hora-card {
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
    transform: translateY(-20px);
}

.valor-hora-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    z-index: 0;
}

.valor-hora-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.valor-hora-content {
    position: relative;
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.valor-hora-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.valor-hora-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.valor-hora-icon i {
    color: white;
    font-size: 1.8rem;
}

.valor-hora-label {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.valor-hora-value {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animação sutil ao passar o mouse */
.valor-hora-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.valor-hora-card:hover .valor-hora-icon {
    transform: scale(1.05) rotate(5deg);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .valor-hora-content {
        padding: 1.5rem;
    }
    
    .valor-hora-value {
        font-size: 2.5rem;
    }
    
    .valor-hora-icon {
        width: 50px;
        height: 50px;
    }
    
    .valor-hora-icon i {
        font-size: 1.5rem;
    }
    
    .valor-hora-label {
        font-size: 1rem;
    }
}

/* Novo design compacto para o valor por hora */
.valor-hora-compact {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #481421 0%, #c8375c 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(200, 55, 92, 0.25);
    max-width: 320px;
    margin: 0 auto 1.5rem;
    padding: 3px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valor-hora-compact:hover {
    transform: translateY(-22px);
    box-shadow: 0 8px 20px rgba(200, 55, 92, 0.35);
}

.valor-hora-compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #481421, #c8375c);
}

.valor-hora-compact .valor-hora-content {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
}

.valor-hora-icon {
    background: linear-gradient(135deg, #481421, #c8375c);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(200, 55, 92, 0.3);
}

.valor-hora-icon i {
    color: white;
    font-size: 1.2rem;
}

.valor-hora-text {
    flex: 1;
}

.valor-hora-label {
    color: #7e2538;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.valor-hora-value {
    color: #c8375c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    .valor-hora-compact {
        max-width: 280px;
    }
    
    .valor-hora-icon {
        width: 40px;
        height: 40px;
    }
    
    .valor-hora-value {
        font-size: 1.5rem;
    }
}

/* Estilo para exibição de preço no card */
.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-align: center;
}

.price-display .money-icon {
    color: #c8375c;
    font-size: 1.8rem;
    margin-right: 15px;
}

.price-display .price-value {
    color: #c8375c;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

/* Texto específico para o bloco "Anuncie Também" */
.anuncie-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #666;
    overflow: visible;
    display: block;
}

/* Estilos para a página de edição de perfil */
.profile-edit-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.profile-edit-title {
    color: #481421;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 3px solid #f0d4d4;
}

.profile-edit-subtitle {
    color: #c8375c;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding: 8px 15px;
    background: linear-gradient(to right, rgba(200, 55, 92, 0.1), transparent);
    border-radius: 6px;
    position: relative;
}

.profile-edit-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #c8375c, #481421);
    border-radius: 4px;
}

/* Menu lateral estilizado */
.profile-sidebar {
    background: linear-gradient(135deg, #481421 0%, #c8375c 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.profile-sidebar .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.profile-sidebar .list-group-item:last-child {
    border-bottom: none;
}

.profile-sidebar .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(5px);
}

.profile-sidebar .list-group-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
    border-left: 4px solid #fff;
}

.profile-sidebar .list-group-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Card de formulário estilizado */
.profile-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.profile-card .card-header {
    background: linear-gradient(to right, #481421, #c8375c);
    color: white;
    padding: 15px 20px;
    border: none;
}

.profile-card .card-body {
    padding: 25px;
}

/* Inputs estilizados */
.profile-edit-form .form-control,
.profile-edit-form .form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.profile-edit-form .form-control:focus,
.profile-edit-form .form-select:focus {
    border-color: #c8375c;
    box-shadow: 0 0 0 0.25rem rgba(200, 55, 92, 0.25);
}

.profile-edit-form .form-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.profile-edit-form .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #555;
}

/* Checkbox de serviços estilizados */
.service-checkbox {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.service-checkbox:hover {
    background-color: #fff;
    border-color: #c8375c;
    transform: translateY(-2px);
}

.service-checkbox .form-check-input {
    margin-top: 0.15rem;
}

.service-checkbox .form-check-input:checked {
    background-color: #c8375c;
    border-color: #c8375c;
}

.service-checkbox .form-check-label {
    margin-left: 5px;
    font-weight: 500;
}

/* Botão de envio estilizado */
.btn-submit-profile {
    background: linear-gradient(135deg, #481421, #c8375c);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 10px rgba(200, 55, 92, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-profile:hover {
    background: linear-gradient(135deg, #c8375c, #481421);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(200, 55, 92, 0.4);
}

.btn-submit-profile:active {
    transform: translateY(-1px);
}

/* Upload de foto estilizado */
.photo-upload-container {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8f9fa;
}

.photo-upload-container:hover {
    border-color: #c8375c;
    background-color: #fff;
}

.photo-upload-container .upload-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.photo-upload-container.has-preview {
    border-style: solid;
    border-color: #c8375c;
}

.photo-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photo-preview:hover {
    transform: scale(1.03);
}

/* Contador de caracteres mais atraente */
.char-count {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    background-color: #f8f9fa;
    display: inline-block;
    transition: all 0.3s ease;
    float: right;
    margin-top: 5px;
}

.char-count-warning {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
}

.char-count-danger {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Estilos para métodos de pagamento */
.payment-methods-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.payment-method-item {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.payment-method-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff5f7;
}

.payment-method-item i {
    color: #c8375c;
    margin-right: 5px;
}

/* Estilo para campos com erro */
.has-error {
    animation: shake 0.5s;
}

.has-error .form-check {
    border: 1px solid #dc3545;
    border-radius: 5px;
    padding: 5px;
    background-color: rgba(220, 53, 69, 0.05);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Estilos para o bloco de Bairros Atendidos */
.location-info {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    border-left: 3px solid #c8375c;
}

.location-info i {
    font-size: 1.1rem;
    margin-right: 8px;
    color: #c8375c;
}

/* Estilos para o mapa de atendimento */
#atendimento-map {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#atendimento-map:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animação do pulso do marcador */
@keyframes map-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.map-marker-pulse {
    animation: map-pulse 2s infinite;
}

/* Adicionar estilos para corrigir o espaçamento do rodapé na página de listagem */
body.page-listagem {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.page-listagem main {
    flex: 1;
}

body.page-listagem .footer {
    margin-top: 0 !important;
}

/* Estilos para o sistema de pagamento */
.payment-option,
.payment-method {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.payment-option:hover,
.payment-method:hover {
    border-color: #adb5bd;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-option.border-primary,
.payment-method.border-primary {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 1px #0d6efd;
    background-color: #f8f9ff;
}

.cursor-pointer {
    cursor: pointer;
}

.tab-content {
    border: 1px solid #dee2e6;
    border-top: 0;
    border-radius: 0 0 0.25rem 0.25rem;
    padding: 1.5rem;
}

.nav-pills .nav-link {
    border-radius: 0.5rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: #0d6efd;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.nav-pills .nav-link:not(.active):hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Estilos para o QR Code PIX */
.qr-code-container {
    background-color: #f8f9ff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.qr-code-container:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.pix-code-input {
    background-color: #f8f9ff;
    border: 1px solid #d1d9e6;
    border-radius: 6px 0 0 6px;
    font-family: monospace;
    font-size: 0.9rem;
}

.pix-copy-button {
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.pix-copy-button:hover {
    background-color: #0b5ed7;
}

.pix-instructions {
    background-color: #f8f9ff;
    border-radius: 10px;
    padding: 20px;
}

.pix-instructions ol {
    padding-left: 20px;
}

.pix-instructions ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

/* Estilos para o formulário de cartão */
.card-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.card-form-container .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.card-form-container .form-control {
    border: 1px solid #d1d9e6;
    border-radius: 6px;
    padding: 12px;
    transition: all 0.3s ease;
}

.card-form-container .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.card-form-container .btn-success {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-form-container .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}

/* Animações para feedback visual */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease;
}

/* Estilos para mensagens de status */
.payment-status {
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-status .spinner-border {
    margin-right: 10px;
} 