/* ========================================
   ACOL - Seções de Serviços Detalhadas
   ======================================== */

.acol-servicos-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.acol-servicos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.acol-servicos-header {
    text-align: center;
    margin-bottom: 60px;
}

.acol-servicos-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.acol-servicos-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.acol-servicos-subtitle strong {
    color: #4295A7;
    font-weight: 700;
}

.acol-servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.acol-servico-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.acol-servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(66, 149, 167, 0.15);
}

.acol-servico-icon {
    width: 64px;
    height: 64px;
    background: #4295A7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.acol-servico-icon svg {
    width: 32px;
    height: 32px;
}

.acol-servico-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.acol-servico-descricao {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.acol-servico-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.acol-servico-lista li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.acol-servico-lista li:last-child {
    border-bottom: none;
}

.acol-servico-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4295A7;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.acol-servico-btn:hover {
    background: #357a8a;
    transform: translateX(2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .acol-servicos-section {
        padding: 60px 15px;
    }

    .acol-servicos-title {
        font-size: 32px;
    }

    .acol-servicos-subtitle {
        font-size: 16px;
    }

    .acol-servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .acol-servico-card {
        padding: 30px 20px;
    }

    .acol-servico-titulo {
        font-size: 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acol-servico-card {
    animation: fadeInUp 0.6s ease-out;
}

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