/* 
 * Banner de Destaque - Estilo Mercado Livre
 * Cores da identidade visual: Roxo (#6f42c1) e Laranja (#fd7e14)
 */

.banner-destaque {
    background: linear-gradient(135deg, #6f42c1 0%, #fd7e14 100%);
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

/* Efeito de brilho no fundo */
.banner-destaque::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    opacity: 0.6;
    z-index: 1;
}

.banner-destaque-content {
    position: relative;
    z-index: 2;
}

.banner-destaque h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-destaque p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-destaque-btn {
    display: inline-block;
    background-color: white;
    color: #6f42c1;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-destaque-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsividade */
@media (min-width: 768px) {
    .banner-destaque {
        padding: 3rem 2rem;
    }
    
    .banner-destaque h1 {
        font-size: 2.5rem;
    }
    
    .banner-destaque p {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .banner-destaque h1 {
        font-size: 3rem;
    }
}
