/**
 * Sectors Optimized - Cards de setores lado a lado e compactos
 */

/* === SEÇÃO SETORES OTIMIZADA === */
.setores-section {
    padding: 6rem 0 !important;
    background: var(--black-solid) !important;
    position: relative !important;
}

.setores-section .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

.setores-section .section-title {
    font-size: 2.5rem !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
}

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

/* === GRID LADO A LADO === */
.setores-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* === CARDS COMPACTOS === */
.setor-card {
    background: linear-gradient(
        135deg, 
        rgba(0, 163, 224, 0.06) 0%, 
        rgba(0, 0, 0, 0.9) 100%
    ) !important;
    border: 1px solid rgba(0, 163, 224, 0.15) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.setor-card:hover {
    border-color: rgba(0, 163, 224, 0.3) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 163, 224, 0.1) !important;
}

/* === ÍCONE DO SETOR === */
.setor-icon {
    margin: 0 auto 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.setor-icon i[data-lucide] {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 2 !important;
    color: #00A3E0 !important;
    transition: all 0.3s ease !important;
}

.setor-card:hover .setor-icon i[data-lucide] {
    transform: scale(1.1) !important;
    stroke-width: 2.5 !important;
    color: #2CB7E6 !important;
}

/* === TÍTULO DO SETOR === */
.setor-title {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3 !important;
}

/* === CONTEÚDO COMPACTO === */
.setor-challenges,
.setor-results {
    margin-bottom: 1rem !important;
    text-align: left !important;
}

.setor-challenges h4,
.setor-results h4 {
    color: var(--neon-green) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.setor-challenges ul,
.setor-results ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.setor-challenges li,
.setor-results li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.3rem !important;
    padding-left: 1rem !important;
    position: relative !important;
}

.setor-challenges li::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    color: #E4002B !important;
    font-weight: bold !important;
}

.setor-results li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: var(--neon-green) !important;
    font-weight: bold !important;
}

/* === CORES ESPECÍFICAS POR SETOR === */

/* Setor 1 - Financeiro */
.setor-card:nth-child(1) {
    border-left: 3px solid #FFCD00 !important;
}

.setor-card:nth-child(1) .setor-icon i[data-lucide] {
    color: #FFCD00 !important;
}

.setor-card:nth-child(1):hover .setor-icon i[data-lucide] {
    color: #FFDB2C !important;
}

.setor-card:nth-child(1):hover {
    border-left-color: #FFDB2C !important;
    box-shadow: 0 15px 35px rgba(255, 205, 0, 0.1) !important;
}

/* Setor 2 - Saúde */
.setor-card:nth-child(2) {
    border-left: 3px solid #00B08A !important;
}

.setor-card:nth-child(2) .setor-icon i[data-lucide] {
    color: #00B08A !important;
}

.setor-card:nth-child(2):hover .setor-icon i[data-lucide] {
    color: #2CBC9D !important;
}

.setor-card:nth-child(2):hover {
    border-left-color: #2CBC9D !important;
    box-shadow: 0 15px 35px rgba(0, 176, 138, 0.1) !important;
}

/* Setor 3 - Esporte */
.setor-card:nth-child(3) {
    border-left: 3px solid #FF8200 !important;
}

.setor-card:nth-child(3) .setor-icon i[data-lucide] {
    color: #FF8200 !important;
}

.setor-card:nth-child(3):hover .setor-icon i[data-lucide] {
    color: #FFA22C !important;
}

.setor-card:nth-child(3):hover {
    border-left-color: #FFA22C !important;
    box-shadow: 0 15px 35px rgba(255, 130, 0, 0.1) !important;
}

/* === RESPONSIVIDADE === */

/* Desktop Grande (2048px+) */
@media (min-width: 2048px) {
    .setores-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem !important;
    }
    
    .setor-card {
        padding: 2rem !important;
        min-height: 350px !important;
    }
    
    .setor-title {
        font-size: 1.5rem !important;
    }
    
    .setor-challenges h4,
    .setor-results h4 {
        font-size: 1rem !important;
    }
    
    .setor-challenges li,
    .setor-results li {
        font-size: 0.85rem !important;
    }
}

/* Tablet (769px - 2047px) */
@media (min-width: 769px) and (max-width: 2047px) {
    .setores-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .setor-card {
        padding: 1.3rem !important;
        min-height: 280px !important;
    }
    
    .setor-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .setor-challenges h4,
    .setor-results h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .setor-challenges li,
    .setor-results li {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.2rem !important;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .setores-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .setor-card {
        padding: 1.5rem !important;
        min-height: 220px !important;
    }
    
    .setor-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .setor-challenges,
    .setor-results {
        margin-bottom: 0.8rem !important;
    }
    
    .setor-challenges h4,
    .setor-results h4 {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .setor-challenges li,
    .setor-results li {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.25rem !important;
    }
}

/* === ANIMAÇÕES === */
.setor-card {
    animation: fadeInUp 0.6s ease-out !important;
}

.setor-card:nth-child(1) { animation-delay: 0.1s !important; }
.setor-card:nth-child(2) { animation-delay: 0.2s !important; }
.setor-card:nth-child(3) { animation-delay: 0.3s !important; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
