

    /* --- COLOQUE TODO O SEU CÓDIGO DO CARD AQUI DENTRO --- */

    /* O container vermelho externo */
    .card-container {
        background-color: #a92a2a;
        border-radius: 12px;
        padding: 20px;
        width: 375px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    /* O card branco interno */
    .card {
        background-color: #ffffff;
        border-radius: 8px;
        overflow: hidden;
    }

    .card-image {
        width: 100%;
        display: block;
    }

    .card-content {
        padding: 24px;
    }

    .card-title {
        color: #a92a2a;
        font-weight: 700;
        font-size: 24px;
        margin: 0 0 16px 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #eeeeee;
    }

    .card-description {
        font-size: 16px;
        color: #333333;
        line-height: 1.6;
        margin: 0 0 24px 0;
    }

    .card-link {
        color: #a92a2a;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        display: flex;
        align-items: center;
        transition: opacity 0.3s ease;
    }

    .card-link:hover {
        opacity: 0.8;
    }

    .arrow-icon {
        background-color: #a92a2a;
        color: #ffffff;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        font-size: 22px;
        line-height: 1;
    }

    /* --- FIM DO SEU CÓDIGO --- */

