﻿:root {
    --roxo-anaplab: #6644c8;
    --roxo-anaplab-hover: #3f2c7b;
    --amarelo-anaplab: #ffc600;
    --amarelo-anaplab-hover: #d3a500;
    --verde-anaplab: #a0a53f;
    --branco: #f3f3f3;
}

.s-acoes {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 100px;
}

#tabela-acoes {
    min-width: 600px;
    width: 100%;
}

.s-acoesjudiciais {
    background-color: #f5f5f7;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding-top: 70px;
}

.s-acoesjudiciais__titulo {
    max-width: 900px;
    width: 100%;
    padding: 0 20px; /* dá um espaço lateral para telas pequenas */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .s-acoesjudiciais__titulo h3 {
        font-size: 48px;
        font-family: 'outfit', Arial, Helvetica, sans-serif;
    }

    .s-acoesjudiciais__titulo p {
        font-size: 16px;
        font-family: 'Geist', Arial, Helvetica, sans-serif;
        line-height: 1.3;
    }

.s-acoesjudiciais__conteudo {
    max-width: 900px;
    width: 100%;
    padding: 0 20px; /* dá um espaço lateral para telas pequenas */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 30px;
    line-height: 1.3;
}

.btn-download {
    background-color: #6644c8;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
}

    .btn-download:hover {
        background-color: #3f2c7b;
    }

.s-acoes {
    overflow-x: auto;
    width: 100%;
}

.dataTables_wrapper {
    font-family: 'Geist', Arial, Helvetica, sans-serif;
}

.acoes-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.acoes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.acoes-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .acoes-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .acoes-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
        font-weight: 400;
    }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    border-radius: 4px;
    padding: 1.5rem;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #6644c8;
}

    .action-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6644c8, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.card-description {
    color: #5a6c7d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-action {
    display: flex;
    justify-content: center;
}

.btn-ver-mais {
    padding: 1rem 3rem;
    background: #6644c8;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

    .btn-ver-mais:hover {
        background: #5533a7;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 68, 200, 0.3);
    }

/* Responsivo */
@media (max-width: 768px) {
    .acoes-container {
        padding: 0 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .acoes-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .action-card {
        padding: 1rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .card-icon {
        margin-right: 0;
    }

    .btn-ver-mais {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
    }
}
