/**
 * Ofertas Section Redesign - Design profissional para seção de ofertas
 */

/* === SEÇÃO OFERTAS REDESENHADA === */
.ofertas-section {
    padding: 8rem 0 !important;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(26, 26, 26, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%
    ) !important;
    position: relative !important;
    overflow: hidden !important;
}

.ofertas-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 205, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 163, 224, 0.02) 0%, transparent 50%) !important;
    z-index: 0 !important;
}

.ofertas-section .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 0 2rem !important;
}

/* === HEADER DA SEÇÃO === */
.ofertas-section .section-title {
    font-size: 3rem !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
}

.ofertas-section .section-description {
    font-size: 1.3rem !important;
    color: var(--neon-green) !important;
    text-align: center !important;
    margin-bottom: 4rem !important;
    font-weight: 500 !important;
}

/* === GRID DAS OFERTAS === */
.ofertas-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
    margin-bottom: 4rem !important;
}

/* === CARDS DAS OFERTAS === */
.oferta-card {
    background: linear-gradient(
        135deg, 
        rgba(159, 239, 174, 0.05) 0%, 
        rgba(26, 26, 26, 0.9) 30%, 
        rgba(0, 0, 0, 0.95) 100%
    ) !important;
    border: 1px solid rgba(159, 239, 174, 0.15) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    backdrop-filter: blur(10px) !important;
}

.oferta-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(159, 239, 174, 0.08), transparent) !important;
    transition: left 0.6s ease !important;
}

.oferta-card:hover::before {
    left: 100% !important;
}

.oferta-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(159, 239, 174, 0.3) !important;
    box-shadow: 0 20px 40px rgba(159, 239, 174, 0.12) !important;
}

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

.oferta-title {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 0.3rem !important;
    line-height: 1.3 !important;
}

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

.oferta-prazo {
    background: linear-gradient(135deg, rgba(255, 205, 0, 0.1) 0%, rgba(255, 205, 0, 0.05) 100%) !important;
    border: 1px solid rgba(255, 205, 0, 0.3) !important;
    border-radius: 20px !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    color: #FFCD00 !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

/* === CONTEÚDO DOS CARDS === */
.oferta-content {
    flex-grow: 1 !important;
    margin-bottom: 1.5rem !important;
}

.oferta-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1rem 0 !important;
}

.oferta-features li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
    padding-left: 1.5rem !important;
    position: relative !important;
}

.oferta-features li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6rem !important;
    width: 6px !important;
    height: 6px !important;
    background: var(--neon-green) !important;
    border-radius: 50% !important;
}

.oferta-kpis {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(159, 239, 174, 0.2) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.4 !important;
}

.oferta-kpis strong {
    color: var(--cyan-blue) !important;
    font-weight: 600 !important;
}

/* === BOTÕES DAS OFERTAS === */
.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: 1rem 2rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: center !important;
}

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

/* === ÍCONES LIMPOS PARA CADA OFERTA === */
/* Ícones agora são gerenciados via Lucide Icons no HTML, sem caixas CSS */

/* === RESPONSIVIDADE === */

/* Desktop Grande (2048px+) */
@media (min-width: 2048px) {
    .ofertas-section {
        padding: 10rem 0 !important;
    }
    
    .ofertas-section .section-title {
        font-size: 3.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .ofertas-section .section-description {
        font-size: 1.5rem !important;
        margin-bottom: 5rem !important;
    }
    
    .ofertas-grid {
        gap: 4rem !important;
        margin-bottom: 6rem !important;
    }
    
    .oferta-card {
        padding: 2.5rem !important;
        min-height: 380px !important;
    }
    
    .oferta-title {
        font-size: 1.7rem !important;
    }
    
    .oferta-subtitle {
        font-size: 1.1rem !important;
    }
}

/* Tablet (769px - 2047px) */
@media (min-width: 769px) and (max-width: 2047px) {
    .ofertas-section {
        padding: 6rem 0 !important;
    }
    
    .ofertas-section .section-title {
        font-size: 2.5rem !important;
    }
    
    .ofertas-section .section-description {
        font-size: 1.2rem !important;
        margin-bottom: 3rem !important;
    }
    
    .ofertas-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .oferta-card {
        padding: 1.8rem !important;
        min-height: 280px !important;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .ofertas-section {
        padding: 4rem 0 !important;
    }
    
    .ofertas-section .container {
        padding: 0 1rem !important;
    }
    
    .ofertas-section .section-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .ofertas-section .section-description {
        font-size: 1.1rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .ofertas-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .oferta-card {
        padding: 1.5rem !important;
        min-height: 250px !important;
    }
    
    .oferta-title {
        font-size: 1.3rem !important;
    }
    
    .oferta-subtitle {
        font-size: 0.9rem !important;
    }
    
    .oferta-features li {
        font-size: 0.85rem !important;
    }
    
    .oferta-kpis {
        font-size: 0.8rem !important;
        padding: 0.8rem !important;
    }
    
    .btn-oferta {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}

/* === ANIMAÇÕES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oferta-card {
    animation: fadeInUp 0.6s ease-out !important;
}

.oferta-card:nth-child(1) { animation-delay: 0.1s !important; }
.oferta-card:nth-child(2) { animation-delay: 0.2s !important; }
.oferta-card:nth-child(3) { animation-delay: 0.3s !important; }
.oferta-card:nth-child(4) { animation-delay: 0.4s !important; }
.oferta-card:nth-child(5) { animation-delay: 0.5s !important; }
.oferta-card:nth-child(6) { animation-delay: 0.6s !important; }

/* === HOVER EFFECTS ESPECIAIS === */
.oferta-card:nth-child(1):hover {
    border-color: rgba(0, 176, 138, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 176, 138, 0.15) !important;
}

.oferta-card:nth-child(2):hover {
    border-color: rgba(0, 163, 224, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 163, 224, 0.15) !important;
}

.oferta-card:nth-child(3):hover {
    border-color: rgba(255, 205, 0, 0.4) !important;
    box-shadow: 0 20px 40px rgba(255, 205, 0, 0.15) !important;
}

.oferta-card:nth-child(4):hover {
    border-color: rgba(228, 0, 43, 0.4) !important;
    box-shadow: 0 20px 40px rgba(228, 0, 43, 0.15) !important;
}

.oferta-card:nth-child(5):hover {
    border-color: rgba(255, 130, 0, 0.4) !important;
    box-shadow: 0 20px 40px rgba(255, 130, 0, 0.15) !important;
}

.oferta-card:nth-child(6):hover {
    border-color: rgba(136, 139, 141, 0.4) !important;
    box-shadow: 0 20px 40px rgba(136, 139, 141, 0.15) !important;
}
