/* Ad Styles */
.ad-label {
    color: var(--bs-gray-600);
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.ad-placeholder {
    background: var(--bs-body-bg);
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--bs-border-color);
    margin: 0 auto;
}

.ad-desktop {
    height: 150px;
    width: 728px;
}

.ad-mobile {
    height: 150px;
    width: 320px;
}

.ad-placeholder span {
    color: var(--bs-gray-600);
}

/* Fallback da imagem da categoria e do em breve */
.card-image-fallback {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    font-weight: 600;
    width: 100%;
    height: 100%;
}

.card-image-fallback i {
    opacity: 0.7;
}

/* Títulos das Seções */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-gray-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

[data-bs-theme="dark"] .section-title {
    color: var(--bs-gray-100);
}

[data-bs-theme="dark"] .section-title .ki-duotone {
    color: var(--bs-gray-100);
}

.section-spacing {
    margin-bottom: 4rem !important;
}

/* Responsividade Melhorada */
@media (max-width: 1200px) {
    .ad-desktop {
        width: 100%;
        max-width: 728px;
    }
}

@media (max-width: 768px) {
    .ad-mobile {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-title i {
        font-size: 1.5rem !important;
    }
}