/**
 * Offers Compact - Conteúdo mais compacto nos cards de ofertas
 */

/* === CARDS MAIS COMPACTOS === */
.oferta-card {
    min-height: 240px !important;
    padding: 1.4rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* === HEADER COMPACTO === */
.oferta-header {
    text-align: center !important;
    margin-bottom: 0.8rem !important;
    position: relative !important;
}

.oferta-title {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.1 !important;
}

.oferta-subtitle {
    font-size: 0.8rem !important;
    color: var(--neon-green) !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 0.4rem !important;
}

.oferta-prazo {
    background: linear-gradient(135deg, rgba(255, 205, 0, 0.15) 0%, rgba(255, 205, 0, 0.08) 100%) !important;
    border: 1px solid rgba(255, 205, 0, 0.4) !important;
    border-radius: 12px !important;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.7rem !important;
    color: #FFCD00 !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

/* === ÍCONES COMPACTOS === */
.oferta-icon {
    margin: 0 auto 0.6rem !important;
}

.oferta-icon i[data-lucide] {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2 !important;
}

/* === CONTEÚDO COMPACTO === */
.oferta-content {
    flex-grow: 1 !important;
    margin-bottom: 0.8rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* === FEATURES COMPACTAS === */
.oferta-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 0.6rem 0 !important;
}

.oferta-features li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.25rem !important;
    padding-left: 1rem !important;
    position: relative !important;
    font-weight: 500 !important;
}

.oferta-features li::before {
    content: '▸' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    color: var(--neon-green) !important;
    font-weight: bold !important;
    font-size: 0.8rem !important;
}

/* === KPIs COMPACTOS === */
.oferta-kpis {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(159, 239, 174, 0.2) !important;
    border-radius: 4px !important;
    padding: 0.5rem !important;
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.oferta-kpis strong {
    color: var(--cyan-blue) !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

/* === BOTÕES COMPACTOS === */
.btn-oferta {
    background: linear-gradient(135deg, rgba(255, 205, 0, 0.1) 0%, rgba(255, 205, 0, 0.05) 100%) !important;
    border: 2px solid #FFCD00 !important;
    color: #FFCD00 !important;
    padding: 0.6rem 1.2rem !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: auto !important;
}

.btn-oferta:hover {
    background: #FFCD00 !important;
    color: var(--black-solid) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(255, 205, 0, 0.3) !important;
}

/* === RESPONSIVIDADE COMPACTA === */

/* Desktop Grande (2048px+) */
@media (min-width: 2048px) {
    .oferta-card {
        min-height: 280px !important;
        padding: 1.6rem !important;
    }
    
    .oferta-title {
        font-size: 1.3rem !important;
    }
    
    .oferta-subtitle {
        font-size: 0.9rem !important;
    }
    
    .oferta-features li {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .oferta-kpis {
        font-size: 0.8rem !important;
        padding: 0.6rem !important;
    }
    
    .btn-oferta {
        padding: 0.7rem 1.4rem !important;
        font-size: 0.8rem !important;
    }
    
    .oferta-icon i[data-lucide] {
        width: 28px !important;
        height: 28px !important;
    }
    
    .oferta-prazo {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.7rem !important;
    }
}

/* Tablet (769px - 2047px) */
@media (min-width: 769px) and (max-width: 2047px) {
    .oferta-card {
        min-height: 220px !important;
        padding: 1.3rem !important;
    }
    
    .oferta-title {
        font-size: 1.1rem !important;
    }
    
    .oferta-subtitle {
        font-size: 0.75rem !important;
    }
    
    .oferta-features li {
        font-size: 0.75rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .oferta-kpis {
        font-size: 0.7rem !important;
        padding: 0.4rem !important;
    }
    
    .btn-oferta {
        padding: 0.5rem 1rem !important;
        font-size: 0.7rem !important;
    }
    
    .oferta-icon i[data-lucide] {
        width: 22px !important;
        height: 22px !important;
    }
    
    .oferta-prazo {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .oferta-card {
        min-height: 200px !important;
        padding: 1.2rem !important;
    }
    
    .oferta-title {
        font-size: 1rem !important;
    }
    
    .oferta-subtitle {
        font-size: 0.7rem !important;
    }
    
    .oferta-features li {
        font-size: 0.7rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .oferta-kpis {
        font-size: 0.65rem !important;
        padding: 0.4rem !important;
    }
    
    .btn-oferta {
        padding: 0.5rem 1rem !important;
        font-size: 0.7rem !important;
    }
    
    .oferta-icon i[data-lucide] {
        width: 20px !important;
        height: 20px !important;
    }
    
    .oferta-prazo {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.4rem !important;
    }
}

/* === HOVER OTIMIZADO === */
.oferta-card:hover .oferta-icon i[data-lucide] {
    transform: scale(1.05) !important;
    stroke-width: 2.2 !important;
}

.oferta-card:hover .oferta-prazo {
    background: rgba(255, 205, 0, 0.2) !important;
    border-color: rgba(255, 205, 0, 0.6) !important;
    transform: scale(1.02) !important;
}

/* === ESPAÇAMENTOS REDUZIDOS === */
.oferta-header {
    margin-bottom: 0.8rem !important;
}

.oferta-content {
    margin-bottom: 0.8rem !important;
}

.oferta-features {
    margin-bottom: 0.6rem !important;
}

/* === LAYOUT ULTRA COMPACTO === */
.oferta-card {
    gap: 0.5rem !important;
}

.oferta-header {
    gap: 0.3rem !important;
}

.oferta-content {
    gap: 0.4rem !important;
}
