.alert-info-custom {
    background-color: #e6f0f7;
    border-left: 5px solid #00385e;
    color: #00385e;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .alert-info-custom strong {
        font-weight: 600;
    }

/* ===========================
   CARD PRINCIPAL
=========================== */
.recurso-card-detalhes {
    background-color: rgba(255, 255, 255, 0.95); /* fundo quase branco */ /* borda fina azul escura */
    border-radius: 12px; /* cantos mais arredondados */
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18); /* sombra mais suave e elegante */
    transition: transform 0.2s, box-shadow 0.2s;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: auto;
}

    /* Hover para dar destaque ao passar o mouse */
    .recurso-card-detalhes:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.22);
    }

    /* ===========================
   TÍTULOS E TEXTOS
=========================== */
    .recurso-card-detalhes h5 {
        font-weight: 600;
        color: #00385e;
        margin-bottom: 1.5rem;
    }

    .recurso-card-detalhes h6 {
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .recurso-card-detalhes p {
        font-size: 1rem;
        line-height: 1.6;
        color: #222;
        margin-bottom: 1rem;
    }

    .recurso-card-detalhes ul {
        padding-left: 2rem;
        margin-bottom: 1rem;
    }

    .recurso-card-detalhes ul li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

/* ===========================
   TABELAS
=========================== */
.custom-table-v4 {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 1.5rem;
}

    .custom-table-v4 th {
        background-color: #00385e;
        color: #fff;
        font-weight: 600;
        padding: 14px 18px;
        border-bottom: 2px solid #002642;
    }

    .custom-table-v4 td {
        padding: 12px 16px;
        border-bottom: 1px solid #e0e0e0;
        vertical-align: middle;
        color: #222;
    }

    .custom-table-v4 tbody tr:nth-child(odd) {
        background-color: #f9f9f9;
    }

    .custom-table-v4 tbody tr:hover {
        background-color: #e6f0f7;
        transition: background-color 0.15s ease-in-out;
    }

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 768px) {
    .custom-table-v4 th, .custom-table-v4 td {
        font-size: 0.85rem;
        padding: 0.5rem 0.3rem;
    }

    .btn-recurso {
        padding: 0.7rem 1.5rem;
    }
}

.avaliacao-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-left: 6px solid #00385e; /* azul Bootstrap */
    border-radius: 8px;
    padding: 15px;
}

.avaliacao-item {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

    .avaliacao-item.sem-linha {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }