:root {
    --primary-color: #481421;
    --secondary-color: #c8375c;
    --primary-dark: #350f18;
    --secondary-light: #e05a7a;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --bs-primary: #481421;
    --bs-primary-rgb: 72, 20, 33;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

/* Navbar Styling */
.site-header {
    position: relative;
    z-index: 100;
}

.navbar {
    background-color: var(--primary-color);
    padding: 0.25rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link:hover:after {
    width: 80%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-logout {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.btn-logout:hover {
    color: #fff;
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(53, 15, 24, 0.8), rgba(68, 20, 31, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 5rem;
}

@media (max-width: 768px) {
    .banner-overlay h1 {
        font-size: 2rem;
    }
    
    .banner-overlay p.lead {
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background-color: #fff;
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(200, 55, 92, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Featured Profiles Section */
.featured-profiles-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    margin-bottom: 50px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 25px;
}

/* Profile Card Styling - Modern & Professional */
.profile-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: none;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(200, 55, 92, 0.2);
}

.profile-card .card-img-top {
    transition: transform 0.5s ease;
    height: 250px;
    object-fit: cover;
}

.profile-card:hover .card-img-top {
    transform: scale(1.05);
}

.profile-name {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.profile-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.profile-card:hover .profile-name::after {
    width: 60px;
}

.profile-location, .profile-category {
    background-color: rgba(200, 55, 92, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.profile-location:hover, .profile-category:hover {
    background-color: rgba(200, 55, 92, 0.15);
    transform: translateY(-2px);
}

.profile-location i, .profile-category i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.card-text.small {
    line-height: 1.5;
    color: #6c757d;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-card .btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.profile-card .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 55, 92, 0.25);
}

.highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.profile-card.highlighted {
    border: none;
    box-shadow: 0 10px 25px rgba(200, 55, 92, 0.15);
}

.profile-card.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    z-index: 2;
}

/* Adicionar indicador de vídeo */
.video-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: normal;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 120px;
}

.video-badge i {
    margin-right: 5px;
    color: #ff4d4d;
    font-size: 0.8rem;
}

/* Animação suave para os efeitos hover */
.profile-card, .profile-card *, .btn, .badge {
    transition: all 0.3s ease;
}

.profile-quick-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.profile-card:hover .profile-quick-info {
    opacity: 1;
    transform: translateY(0);
}

.profile-card .profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.profile-card .profile-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.profile-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.profile-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.profile-location, .profile-category {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    font-weight: 500;
    border-radius: 20px;
    padding: 4px 12px;
    background-color: rgba(200, 55, 92, 0.08);
    transition: all 0.3s ease;
}

.profile-location:hover, .profile-category:hover {
    background-color: rgba(200, 55, 92, 0.15);
    transform: translateY(-2px);
}

.profile-location i, .profile-category i {
    margin-right: 6px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Estilos para informações adicionais */
.additional-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.additional-info span {
    display: flex;
    align-items: center;
    background-color: rgba(72, 20, 33, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.additional-info span:hover {
    background-color: rgba(72, 20, 33, 0.1);
    transform: translateY(-2px);
}

.additional-info i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Visualizações */
.d-flex .text-muted {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    background-color: rgba(72, 20, 33, 0.05);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.d-flex .text-muted:hover {
    background-color: rgba(72, 20, 33, 0.1);
    transform: translateY(-2px);
}

.d-flex .text-muted i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Card text para descrição */
.card-text {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background-color: rgba(248, 249, 250, 0.7);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

/* Botão Ver Detalhes */
.profile-card .btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.profile-card .btn-outline-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 55, 92, 0.25);
}

/* Estilo para card do perfil destacado */
.profile-card.highlighted {
    border: none;
    box-shadow: 0 15px 35px rgba(200, 55, 92, 0.15);
    position: relative;
}

.profile-card.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    z-index: 2;
    border-radius: 15px 15px 0 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .profile-card-image {
        padding-bottom: 100%; /* Aspect ratio 1:1 em dispositivos móveis */
    }
    
    .profile-card-content {
        padding: 1rem;
    }
    
    .profile-name {
        font-size: 1.2rem;
    }
    
    .profile-location, .profile-category {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .additional-info span {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}

/* Destaque para cards VIP */
.profile-card.vip {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(200, 55, 92, 0.15);
}

.profile-card.vip .video-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

/* CTA Section */
.cta-section {
    padding: 150px 0;
    background-color: #fff;
}

.cta-title {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-features {
    list-style-type: none;
    padding-left: 0;
}

.cta-features li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.cta-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-image img {
    transition: all 6s ease;
}

.cta-image:hover img {
    transform: scale(1.1);
}

/* Footer Styling */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem 0;
}

.footer h5 {
    color: var(--secondary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-light);
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Card Styling */
.card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 280px;
    object-fit: cover;
}

.card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.card.destacado {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.card.destacado:before {
    content: "Destaque";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

/* Button Styling */
.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Form Styling */
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(200, 55, 92, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
}

/* Plan Card Styling */
.plan-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: none;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card .plan-header {
    padding: 1.5rem;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
    display: block;
}

.plan-card .validity {
    font-size: 0.9rem;
    color: var(--gray-color);
    display: block;
    margin-bottom: 1rem;
}

.plan-card .plan-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-card .plan-features {
    margin: 0 0 1.5rem 0;
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.plan-card .plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    padding-left: 1.5rem;
}

.plan-card .plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.plan-card .btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Cores específicas para cada plano */
.basico .plan-header {
    background-color: rgba(200, 200, 200, 0.1);
}

.basico .plan-title {
    color: #6c757d;
}

.premium .plan-header {
    background-color: rgba(128, 0, 32, 0.05);
}

.premium .plan-title {
    color: #800020;
}

.vip .plan-title {
    color: #d4af37;
}

/* Destaque para o plano principal */
.premium {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    z-index: 1;
}

.premium .plan-header {
    background-color: var(--primary-color);
}

.premium .plan-title {
    color: white;
}

.premium:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Estilo para as perguntas frequentes */
.faq-section {
    padding: 40px 0;
    background-color: white;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    color: var(--gray-color);
    background-color: #f9f9f9;
}

@media (max-width: 991px) {
    .premium {
        transform: scale(1);
    }
    
    .premium:hover {
        transform: translateY(-10px);
    }
    
    .plan-card {
        margin-bottom: 2rem;
    }
}

/* Profile Styling */
.profile-header {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.profile-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.profile-header p {
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.profile-info {
    display: none;
    flex: 1;
    color: white;
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.profile-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

.profile-info p {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #f0f0f0;
    line-height: 1.4;
}

.profile-info ul li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #f0f0f0;
}

.profile-info .text-muted {
    color: #d3d3d3 !important;
}

.profile-info .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    font-weight: 600;
}

.profile-info .btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

/* Dashboard Styling */
.dashboard-card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: white;
}

.dashboard-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.dashboard-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter-sidebar h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Status Badges */
.badge-active {
    background-color: var(--secondary-color);
}

.badge-inactive {
    background-color: #dc3545;
}

.badge-pending {
    background-color: var(--primary-color);
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.pagination .page-link {
    color: var(--secondary-color);
}

.pagination .page-link:hover {
    background-color: var(--secondary-light);
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .plan-card.featured {
        transform: scale(1);
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .card-img-top {
        height: 220px;
    }
}

/* Ribbon for featured profiles */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: var(--secondary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.ribbon-top-right {
    top: -10px;
    right: -10px;
}

.ribbon-top-right span {
    left: -10px;
    top: 30px;
    transform: rotate(45deg);
}

/* Plan Section Styling */
.premium-section .card-header {
    background: linear-gradient(45deg, #d4af37, #f9f095);
    color: #333;
}

.standard-section .card-header {
    background: linear-gradient(45deg, #C0C0C0, #e6e6e6);
    color: #333;
}

.basic-section .card-header {
    background: linear-gradient(45deg, #cd7f32, #e6be94);
    color: #333;
}

@media (max-width: 768px) {
    .profile-card .card-img-top {
        height: 300px;
    }
    
    .profile-overlay {
        padding: 15px 10px;
    }
    
    .profile-info h5 {
        font-size: 1.2rem;
    }
}

/* Video Section Styling */
.video-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-container .card {
    border: none;
    background-color: #5c1a2b;
}

.video-container .card-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.video-container video {
    max-height: 300px;
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .video-container .card-title {
        font-size: 1rem;
    }
    
    .video-container video {
        max-height: 200px;
    }
}

/* Galeria de Fotos */
.gallery-section img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.gallery-section img:hover {
    transform: scale(1.03);
}

.gallery-section .col-md-4 {
    margin-bottom: 1.5rem;
}

.gallery-section a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .gallery-section img {
        height: 150px;
    }
}

/* Banner Styling */
.banner-section {
    background-color: #121212;
    margin-bottom: 2rem;
}

.banner-img {
    /*height: 500px;*/
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Estilo dos Planos - Versão Moderna */
.planos-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.planos-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.planos-section .subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-color);
}

.beneficios-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.beneficios-list .item {
    margin: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

.beneficios-list .item i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Ajustes diversos para remoção do azul */
.text-primary {
    color: var(--secondary-color) !important;
}

.section-subtitle {
    color: var(--gray-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

/* Menu lateral - cores personalizadas para o item ativo */
.list-group-item-action.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(200, 55, 92, 0.1);
    color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(200, 55, 92, 0.25);
}

/* Ocultando a tabela de permissões no modal de adicionar administrador */
#modalAddAdmin .table-bordered {
    display: none;
}

/* Ocultando a tabela de permissões na imagem na listagem de administradores */
tbody tr > td .table-bordered,
.table-bordered > tbody > tr > td > table {
    display: none !important;
}

/* Estilos para campos de data */
.date-field {
    position: relative;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s ease;
    height: 38px;
    padding-right: 30px;
}

.date-field:hover {
    border-color: rgba(72, 20, 33, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(72, 20, 33, 0.25);
}

/* Adicionar um ícone de calendário */
.date-field::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.7;
}

.date-field::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Estilização para inputs no foco */
.date-field:focus {
    border-color: rgba(72, 20, 33, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(72, 20, 33, 0.25);
    outline: 0;
}

/* Placeholder para campos de data */
.date-field::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

/* Remover aparência nativa em alguns navegadores */
.date-field::-webkit-datetime-edit {
    padding: 0;
}

.date-field::-webkit-inner-spin-button {
    display: none;
}

/* Melhorar o estilo em mobile */
@media (max-width: 576px) {
    .date-field {
        font-size: 16px; /* Evita zoom automático em iOS */
    }
}

.shadow-lg {
    display: none;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

/* Listagem styles */
.container {
    margin-top: 30px;
}

/* VIP Section Styling */
.premium-section, .standard-section, .basic-section {
    margin-top: 50px;
}

/* Video Preview Styling */
.video-preview {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 15px;
}

.preview-poster {
    position: relative;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.preview-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    transition: all 0.3s ease;
}

.preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-preview:hover .preview-poster {
    opacity: 0;
}

.video-preview:hover .preview-play-icon {
    opacity: 0;
}

.video-preview:hover .preview-video {
    opacity: 1;
}

/* Estilos para as seções de planos */
.premium-section {
    border: 2px solid #ffd700; /* Dourado */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.premium-section .card-header {
    background: linear-gradient(45deg, #b8860b, #ffd700) !important;
}

.standard-section {
    border: 2px solid #c0c0c0; /* Prata */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.standard-section .card-header {
    background: linear-gradient(45deg, #a9a9a9, #c0c0c0) !important;
}

.basic-section {
    border: 2px solid #cd7f32; /* Bronze */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.basic-section .card-header {
    background: linear-gradient(45deg, #8b4513, #cd7f32) !important;
}

/* Estilos para os cards de perfil */
.profile-card {
    transition: transform 0.3s;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-5px);
}

/* Estilos para o vídeo no hover do card */
.profile-media {
    position: relative;
    overflow: hidden;
    height: 450px !important;
    width: 100%;
    border-radius: 0;
    background-color: #f8f9fa;
}

.profile-image {
    z-index: 2;
    transition: opacity 0.4s ease;
    border-radius: 0;
    width: 100%;
    height: 450px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.profile-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.profile-img {
    height: 450px !important;
    object-fit: cover !important;
    font-synthesis-weight: 106px !important;
    width: 100% !important;
    border-radius: 0 !important;
    max-width: 100% !important;
}

.profile-image img, .profile-card-image img, .card-img-top {
    border-radius: 0 !important;
    max-width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
}

.has-video .profile-image {
    cursor: pointer;
}

.has-video:hover .profile-image {
    opacity: 0.2;
}

.has-video:hover .profile-video {
    opacity: 1;
}

.hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Remova qualquer estilo específico da página listagem.php que possa estar interferindo */
.position-relative, .position-relative a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    padding: 25px 15px 15px;
    z-index: 10;
}

/* Vídeo preview no hover */
.has-video .profile-card-image {
    cursor: pointer;
    position: relative;
}

.profile-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.profile-card.has-video:hover .profile-card-image img {
    opacity: 0.2;
    transform: scale(1);
}

.profile-card.has-video:hover .profile-video-wrapper {
    opacity: 1;
}

.profile-card.has-video:hover .profile-quick-info {
    opacity: 0;
}

.video-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: normal;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 120px;
}

.video-badge i {
    margin-right: 5px;
    color: #ff4d4d;
    font-size: 0.8rem;
}

.hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    z-index: 3;
    transition: all 0.3s ease;
}

.has-video:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Estilização avançada para a página de perfil da anunciante */
.profile-page-container {
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}

.profile-page-container .container {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

/* Ajuste do hero banner */
.profile-hero {
    position: relative;
    height: 250px;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}

.profile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(72,20,33,0.7) 100%);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    bottom: -40px;
    left: 20px;
    border-width: 3px;
}

.profile-hero-content {
    padding: 15px 15px 15px 130px;
}

.profile-title {
    font-size: 1.5rem;
    margin-bottom: 3px;
}

/* Ajuste do card de estatísticas */
.profile-card.stats {
    margin-top: 0;
    margin-bottom: 10px;
    border-radius: 0;
    padding: 10px;
}

/* Ajuste dos cards de conteúdo */
.profile-card {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1px;
    padding: 15px;
    border-top: 1px solid #eee;
}

/* Ajuste do conteúdo do perfil */
.profile-page-container .row {
    margin: 0;
}

.profile-page-container .col-lg-8,
.profile-page-container .col-lg-4 {
    padding: 0;
}

.col-lg-4 .profile-card {
    border-left: 1px solid #eee;
}

/* Ajuste dos botões de contato */
.profile-card a[href^="https://wa.me"],
.profile-card a[href^="tel:"],
.profile-card a[href^="https://t.me"],
.profile-card a[href^="https://instagram.com"],
.profile-card a[href^="index.php?page="] {
    margin-bottom: 10px;
    padding: 10px;
}

/* Ajuste da galeria de fotos */
.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

/* Ajuste de vídeos */
.video-container {
    margin-bottom: 10px;
}

/* Títulos das seções */
.profile-card h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 767px) {
    .profile-hero {
        height: 200px;
        margin-bottom: 40px;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
    }
    
    .col-lg-4 .profile-card {
        border-left: none;
        border-top: 1px solid #eee;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix para conteúdo transbordando */
.container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Fix para os espaços em branco e alinhamento */
.profile-page-container .row {
    margin-left: 0;
    margin-right: 0;
}

.profile-card.stats {
    background: linear-gradient(to right, #5c1a2b, #481421);
    color: white;
}

.profile-stat {
    border-right-color: rgba(255, 255, 255, 0.2);
}

.profile-stat .value {
    color: white;
}

.profile-stat .label {
    color: rgba(255, 255, 255, 0.7);
}

/* Ajuste para evitar o problema de layout quebrado */
@media (max-width: 767px) {
    .profile-page-container .col-lg-8,
    .profile-page-container .col-lg-4 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .profile-page-container .row {
        margin-top: 10px;
    }
    
    .video-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .col-md-6 {
        padding: 0 5px;
    }
}

.video-title .badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background-color: #c8375c;
    color: white;
}

.bg-danger {
    background-color: #c8375c !important;
}

/* Ajustes específicos para dispositivos móveis */
@media (max-width: 575px) {
    .profile-hero {
        height: 180px;
        margin-bottom: 50px;
    }
    
    .profile-hero-content {
        padding-left: 15px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -35px;
    }
    
    .profile-title {
        font-size: 1.3rem;
        text-align: center;
        margin-top: 40px;
    }
    
    .profile-subtitle {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .profile-badge {
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    .video-container .video-preview {
        aspect-ratio: 16/10;
    }
    
    .col-6 {
        padding: 0 5px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Estilos para a página de perfil - Nova estrutura */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

/* Novo cabeçalho do perfil - Design moderno e clean */
.profile-header-container {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Capa do perfil - Versão redesenhada */
.profile-cover-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.profile-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 15s ease;
}

.profile-header-container:hover .profile-cover {
    transform: scale(1.1);
}

.profile-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%, 
        rgba(72,20,33,0.8) 85%, 
        rgba(72,20,33,0.95) 100%);
    z-index: 2;
}

/* Badge de destaque com novo design */
.profile-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-featured-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.profile-featured-badge i {
    font-size: 1.1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Conteúdo de perfil direto na capa */
.profile-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
}

/* Avatar do perfil redesenhado */
.profile-avatar-container {
    position: relative;
    margin-bottom: 0;
}

.profile-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: white;
}

/* Informações do perfil redesenhadas */
.profile-info {
    display: none;
    flex: 1;
    color: white;
}

.profile-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: none;
    position: relative;
    display: inline-block;
    color: var(--primary-color) !important;
}

.profile-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Metadata com design mais moderno */
.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-meta-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-meta-item i {
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.profile-meta-item span {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Estatísticas com novo visual */
.profile-stats-container {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 15px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Regras para responsividade do cabeçalho do perfil */
@media (max-width: 991.98px) {
    .profile-cover-wrapper {
        height: 320px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .profile-avatar {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 767.98px) {
    .profile-cover-wrapper {
        height: 280px;
    }
    
    .profile-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }
    
    .profile-avatar-container {
        margin-bottom: 15px;
    }
    
    .profile-avatar {
        width: 130px;
        height: 130px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-name::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .profile-meta {
        justify-content: center;
    }
    
    .profile-stats-container {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .profile-cover-wrapper {
        height: 250px;
    }
    
    .profile-header-content {
        padding: 15px;
    }
    
    .profile-avatar {
        width: 110px;
        height: 110px;
    }
    
    .profile-name {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .profile-meta-item {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
    
    .profile-stat {
        padding: 10px 15px;
        min-width: auto;
        flex: 1;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .content-section {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .description-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Regras mais específicas para garantir que os estilos se apliquem corretamente */
.profile-info-card .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: none;
    letter-spacing: 0.5px;
}

.profile-cover-wrapper .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.profile-cover-wrapper .profile-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.profile-cover-wrapper .profile-meta-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.profile-cover-wrapper .profile-meta-item i {
    color: #fff;
    font-size: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.profile-cover-wrapper .profile-meta-item span {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Conteúdo principal - Cards redesenhados */
.content-section {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    margin-bottom: 60px;
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(to right, rgba(72,20,33,0.05), rgba(255,255,255,0));
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 25px;
}

.card-body {
    padding: 25px;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

/* Descrição */
.description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Características - Redesenhado */
.attribute-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    background-color: #f9f9f9;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.attribute-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.attribute-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(200, 55, 92, 0.1) 0%, rgba(200, 55, 92, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(200, 55, 92, 0.1);
}

.attribute-icon i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.attribute-info {
    flex: 1;
}

.attribute-label {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 3px;
}

.attribute-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Serviços - Redesenhado */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to right, #f8f9fa, #f0f0f0);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-tag:hover {
    background: linear-gradient(to right, #f0f0f0, #e8e8e8);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-tag i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Galeria - Redesenhado */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

/* Vídeos - redesenhado */
.video-player {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    background-color: #f5f5f5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all 0.3s ease;
}

.video-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button i {
    color: white;
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.video-player:hover .play-button {
    background-color: rgba(0, 0, 0, 0.4);
}

.video-player:hover .play-button i {
    transform: scale(1.2);
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 12px 0 5px;
    color: var(--primary-color);
}

.principal-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(200, 55, 92, 0.2);
}

/* Botões de Contato - Redesenhados */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.contact-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.contact-button i {
    font-size: 1.3rem;
}

.contact-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-button.phone {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.contact-button.telegram {
    background: linear-gradient(135deg, #0088cc, #0064a3);
}

.contact-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-button.plans {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-button.signup {
    background: linear-gradient(135deg, #481421, #5d1b2d);
}

/* Segunda seção da página de perfil - baseada na imagem (versão mais compacta) */
.profile-summary-section {
    background-color: #481421;
    padding: 25px 20px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: lowercase;
    position: relative;
    padding-bottom: 5px;
}

.profile-title-large::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.profile-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.profile-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.profile-meta-pill:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.profile-meta-pill i {
    color: white;
    font-size: 1.2rem;
}

.profile-meta-pill span {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.profile-stats-grid {
    display: flex;
    gap: 10px;
}

.profile-stat-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-stat-box:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.profile-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    line-height: 1;
}

.profile-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 767px) {
    .profile-summary-section {
        padding: 20px 15px;
    }
    
    .profile-title-large {
        font-size: 2rem;
        text-align: center;
    }
    
    .profile-title-large::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .profile-meta-pills {
        justify-content: center;
    }
    
    .profile-stats-grid {
        gap: 8px;
    }
    
    .profile-stat-box {
        padding: 8px 5px;
    }
    
    .profile-stat-value {
        font-size: 1.5rem;
    }
} 

/* Regras para o .profile-info da primeira seção - escondido */
.profile-header-content .profile-info {
    display: none;
}

/* Informações do perfil redesenhadas - para a segunda seção */
.profile-info {
    flex: 1;
    color: white;
}

/* Nome específico para o header novo */
.profile-header-content .profile-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Estilos para galeria de vídeos no painel do usuário */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.video-box {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thumbnail {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.thumbnail-placeholder {
    height: 200px;
    background-color: #2c1d2c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-placeholder-content {
    color: white;
    text-align: center;
    z-index: 1;
}

.thumbnail-title {
    margin-top: 10px;
    font-size: 0.9rem;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    font-weight: 600;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 10px;
}

.video-item:hover .overlay {
    opacity: 1;
}

.video-options .dropdown-menu {
    min-width: 190px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Estilos para toast de notificações */
.toast-container {
    z-index: 1070;
}

/* Estilização de placeholders para imagens e vídeos */
.media-placeholder {
    background-color: #2c1d2c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    height: 200px;
    border-radius: 8px;
}

.media-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.media-placeholder p {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    max-width: 80%;
}

/* Ajustes para seletores de thumbnails */
.thumbnail-selector {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 5px 10px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.thumbnail-selector:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Estilos para galeria de vídeos na página de perfil */
.profile-section .video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.profile-section .video-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.profile-section .video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.profile-section .video-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.profile-section .default-thumb {
    height: 160px;
    background-color: #2c1d2c;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-section .default-thumb-content {
    color: white;
    text-align: center;
    z-index: 1;
    padding: 10px;
}

.profile-section .video-title-preview {
    font-size: 0.85rem;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-section .video-info-preview {
    padding: 12px;
}

.profile-section .video-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-section .play-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;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-section .play-overlay i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.profile-section .video-item:hover .play-overlay {
    opacity: 1;
}

.profile-section .video-item:hover .play-overlay i {
    transform: scale(1.1);
}

/* Estilo para o modal de vídeo */
#videoModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

#videoModal .modal-header {
    padding: 15px 20px;
    background-color: #201020;
}

#videoModal .modal-title {
    color: white;
    font-weight: 600;
}

#videoModal .modal-body {
    padding: 0;
    background-color: #000;
}

#videoModal video {
    display: block;
    max-width: 100%;
    height: auto;
}

#videoModal .btn-close-white {
    filter: brightness(0) invert(1);
}

/* Estilos para vídeos responsivos */
@media (max-width: 768px) {
    .profile-section .video-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }
    
    .profile-section .video-thumb,
    .profile-section .default-thumb {
        height: 120px;
    }
    
    .profile-section .video-info-preview {
        padding: 8px;
    }
    
    .profile-section .video-title {
        font-size: 0.85rem;
    }
    
    .profile-section .play-overlay i {
        font-size: 2.5rem;
    }
}

/* Estilos para galeria de vídeos na página de perfil */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.video-item {
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.video-play-link {
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.video-play-link:hover {
    color: #fff;
    text-decoration: none;
}

.video-info-preview {
    padding: 10px;
    background-color: #1a1a1a;
}

.video-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}

/* Ajustes para o modal de vídeo */
#videoModal .modal-content {
    background-color: #000;
}

#videoModal .modal-header {
    border-bottom: none;
}

#videoModal .modal-title {
    color: #fff;
}

#videoModal video {
    width: 100%;
    height: auto;
    max-height: 80vh;
}

@media (max-width: 767px) {
    .video-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .video-hover-container .hover-video {
        display: none; /* Desativa o vídeo no hover em dispositivos móveis */
    }
}

/* Estilos para hover vídeo na página de perfil */
.video-hover-container {
    position: relative;
    overflow: hidden;
}

.video-hover-container .hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-hover-container.is-playing .hover-video {
    opacity: 1;
}

.video-hover-container.is-playing .play-overlay {
    opacity: 0.5;
    background: rgba(0,0,0,0.2);
}

.video-hover-container.is-playing .default-thumb-content {
    opacity: 0;
}

.video-thumb {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.default-thumb {
    background-color: #2c1d2c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-thumb-content {
    color: white;
    text-align: center;
    z-index: 2;
    padding: 15px;
    transition: opacity 0.3s ease;
}

.video-title-preview {
    margin-top: 8px;
    font-size: 0.9rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play-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;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.play-overlay i {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.video-item:hover .play-overlay i {
    transform: scale(1);
}

/* Estilos para Vídeos */
.video-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-container {
    position: relative;
    padding-top: 56.25%; /* Proporção 16:9 */
    overflow: hidden;
    background-color: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.video-card:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(200, 200, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-icon i {
    color: #fff;
    font-size: 24px;
    margin-left: 4px;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
    background-color: rgba(72, 20, 33, 0.8); /* Cor vinho semi-transparente */
}

.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-info {
    padding: 15px;
    background-color: #fff;
}

.video-title {
    margin-top: 0;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.video-description {
    color: #666;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-error {
    color: #fff;
    background-color: rgba(220, 53, 69, 0.7);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.video-error i {
    font-size: 24px;
    margin-bottom: 8px;
}

.video-error-text {
    color: #dc3545;
}

/* Estilos para o Modal de Vídeo */
#videoModal .modal-content {
    background-color: #1c1c1c;
    border: none;
}

#videoModal .modal-header {
    border-bottom: 1px solid #333;
    background-color: #482131; /* Cor vinho */
    color: white;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal video {
    width: 100%;
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-card {
        margin-bottom: 20px;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .play-icon {
        width: 40px;
        height: 40px;
    }
    
    .play-icon i {
        font-size: 16px;
    }
}

/* Estilo específico para cards na página de listagem */
.listing-profile-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.listing-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(200, 55, 92, 0.25);
}

.listing-profile-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.listing-profile-card .profile-card-image {
    position: relative;
    height: 0;
    padding-bottom: 120%;
    overflow: hidden;
}

.listing-profile-card .profile-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-profile-card:hover .profile-card-image img {
    transform: scale(1.08);
}

.listing-profile-card .profile-quick-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(72, 20, 33, 0.9), rgba(72, 20, 33, 0));
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
    z-index: 10;
}

.listing-profile-card:hover .profile-quick-info {
    opacity: 1;
    transform: translateY(0);
}

.listing-profile-card .profile-quick-info span {
    color: white;
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    backdrop-filter: blur(5px);
}

.listing-profile-card .highlight-badge {
    position: absolute;
    top: 15px;
    right: 0;
    left: auto;
    background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 15px;
    border-radius: 20px 0 0 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.listing-profile-card .profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
}

.listing-profile-card:hover .profile-name {
    color: var(--secondary-color);
}

.listing-profile-card .profile-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.listing-profile-card:hover .profile-name::after {
    width: 60px;
}

.listing-profile-card .profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.listing-profile-card .profile-location,
.listing-profile-card .profile-category {
    background-color: rgba(200, 55, 92, 0.08);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.listing-profile-card .profile-location:hover,
.listing-profile-card .profile-category:hover {
    background-color: rgba(200, 55, 92, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.listing-profile-card .profile-location i,
.listing-profile-card .profile-category i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.listing-profile-card .additional-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.2rem;
}

.listing-profile-card .additional-info span {
    background-color: rgba(72, 20, 33, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.listing-profile-card .additional-info span:hover {
    background-color: rgba(72, 20, 33, 0.1);
    transform: translateY(-3px);
}

.listing-profile-card .text-muted {
    font-size: 0.85rem;
    background-color: rgba(72, 20, 33, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.listing-profile-card .text-muted:hover {
    background-color: rgba(72, 20, 33, 0.1);
    transform: translateY(-3px);
}

.listing-profile-card .text-muted i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.listing-profile-card .card-text {
    color: #6c757d;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    background-color: rgba(248, 249, 250, 0.7);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.listing-profile-card:hover .card-text {
    background-color: rgba(248, 249, 250, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.listing-profile-card .btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-top: auto;
    background-color: transparent;
}

.listing-profile-card .btn-outline-primary:hover {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(200, 55, 92, 0.25);
    border-color: transparent;
}

/* Responsividade para os cards de listagem */
@media (max-width: 768px) {
    .listing-profile-card .profile-card-image {
        padding-bottom: 100%;
    }
    
    .listing-profile-card .profile-name {
        font-size: 1.2rem;
    }
    
    .listing-profile-card .profile-location,
    .listing-profile-card .profile-category,
    .listing-profile-card .additional-info span,
    .listing-profile-card .text-muted {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    .listing-profile-card .btn-outline-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Efeitos adicionais para os cards */
.listing-profile-card {
    border-top: 3px solid transparent;
    transition: all 0.4s ease;
}

.listing-profile-card.highlighted {
    border-top: 3px solid var(--secondary-color);
}

.listing-profile-card:hover {
    border-top: 3px solid var(--secondary-color);
}

.listing-profile-card .profile-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(72, 20, 33, 0.6), rgba(72, 20, 33, 0) 60%);
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.listing-profile-card:hover .profile-card-image::before {
    opacity: 0.8;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.listing-profile-card:hover .category-badge {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(200, 55, 92, 0.2);
}

/* Melhoria nos botões de info adicional */
.listing-profile-card .additional-info span {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
}

/* Adicionar ícone de verificado para perfis destacados */
.listing-profile-card.highlighted .profile-name:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 6px;
    font-size: 0.9em;
}

/* Estilo para contadores de visualizações */
.views-counter {
    background-color: rgba(255, 255, 255, 0.12);
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
    z-index: 10;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.views-counter i {
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.listing-profile-card:hover .views-counter {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Melhoria para o cabeçalho da página de listagem */
.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-header h1 {
    position: relative;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-header p.lead {
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Cards de filtro e estatísticas */
.card.border-0.shadow-sm {
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.card.border-0.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.card.border-0.shadow-sm .card-body {
    padding: 1.5rem;
}

.card.border-0.shadow-sm .fs-3 {
    color: var(--secondary-color);
    background-color: rgba(200, 55, 92, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card.border-0.shadow-sm:hover .fs-3 {
    background-color: var(--secondary-color);
    color: white;
    transform: rotateY(180deg);
}

.badge.bg-secondary {
    background-color: var(--secondary-color) !important;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Melhoria para o formulário de filtro */
.form-select, .form-control {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    box-shadow: 0 0 0 3px rgba(200, 55, 92, 0.15);
    border-color: var(--secondary-color);
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.btn-primary {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(200, 55, 92, 0.25);
}

/* Paginação estilizada */
.pagination {
    margin-top: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.pagination .page-item .page-link {
    color: var(--primary-color);
    border: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-item .page-link:hover {
    background-color: rgba(200, 55, 92, 0.1);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(200, 55, 92, 0.25);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    opacity: 0.5;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header p.lead {
        font-size: 1rem;
    }
    
    .card.border-0.shadow-sm .card-body {
        padding: 1rem;
    }
    
    .card.border-0.shadow-sm .fs-3 {
        width: 40px;
        height: 40px;
        font-size: 1.2rem !important;
    }
}

/* Estilos específicos para página de cadastro de anunciante */
.anunciante-cadastro-wrapper {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(72, 20, 33, 0.03) 0%, rgba(200, 55, 92, 0.08) 100%);
    border-radius: 20px;
}

.anunciante-cadastro-card {
    border: none;
    box-shadow: 0 15px 35px rgba(72, 20, 33, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.anunciante-cadastro-card .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 25px;
    border-bottom: none;
}

.anunciante-cadastro-card .card-header h4 {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.anunciante-cadastro-card .card-body {
    padding: 30px;
}

.anunciante-cadastro-card .card-footer {
    background: rgba(72, 20, 33, 0.03);
    padding: 20px;
    border-top: none;
}

/* Estilos para o alerta informativo */
.anunciante-alert {
    background: linear-gradient(135deg, rgba(72, 20, 33, 0.08) 0%, rgba(200, 55, 92, 0.12) 100%);
    border: none;
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.anunciante-alert i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Estilos para os campos do formulário */
.anunciante-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.anunciante-form .form-control,
.anunciante-form .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(72, 20, 33, 0.15);
    transition: all 0.3s ease;
}

.anunciante-form .form-control:focus,
.anunciante-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(200, 55, 92, 0.15);
}

.anunciante-form .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Estilização para as categorias */
.anunciante-form .categoria-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.anunciante-form .categoria-option {
    flex: 1;
    position: relative;
}

.anunciante-form .categoria-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}

.anunciante-form .categoria-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(72, 20, 33, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.anunciante-form .categoria-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: rgba(72, 20, 33, 0.6);
    transition: all 0.3s ease;
}

.anunciante-form .categoria-option input:checked + .categoria-label {
    border-color: var(--secondary-color);
    background-color: rgba(200, 55, 92, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(72, 20, 33, 0.1);
}

.anunciante-form .categoria-option input:checked + .categoria-label .categoria-icon {
    color: var(--secondary-color);
}

/* Botão de cadastro estilizado */
.anunciante-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(200, 55, 92, 0.3);
}

.anunciante-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 55, 92, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* Benefícios visuais */
.beneficios-container {
    background: linear-gradient(135deg, rgba(72, 20, 33, 0.05) 0%, rgba(200, 55, 92, 0.1) 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.beneficio-item:last-child {
    margin-bottom: 0;
}

.beneficio-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(200, 55, 92, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.beneficio-text {
    flex: 1;
}

.beneficio-text h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.beneficio-text p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .anunciante-cadastro-card .card-body {
        padding: 20px;
    }
    
    .anunciante-form .categoria-options {
        flex-direction: column;
        gap: 10px;
    }
}

/* Estilos para a seção de dicas de visibilidade */
.tip-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.tip-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tip-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
    white-space: normal;
    overflow: visible;
}

.tip-card .card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.tip-card .card-text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    width: 100%;
}

@media (max-width: 767px) {
    .tip-card {
        margin-bottom: 20px;
    }
}

/* Estilos para o cropper de imagens */
.img-container {
    max-height: 400px;
    margin-bottom: 1rem;
}

.img-container img {
    max-width: 100%;
    max-height: 400px;
}

.preview-container {
    margin-bottom: 1rem;
    text-align: center;
}

.preview-perfil {
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid var(--primary-color);
}

.preview-capa {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.cropper-container {
    margin: 0 auto;
}

.cropper-controls {
    margin: 1rem 0;
}

.cropper-controls .btn {
    margin: 0 5px;
}

/* Ajustes específicos para a modal do cropper */
#uploadFotoModal .modal-body, 
#uploadCapaModal .modal-body {
    padding: 1.5rem;
}

#uploadFotoModal .alert,
#uploadCapaModal .alert {
    font-size: 0.9rem;
}