.modelo-card {
    background-color: var(--branco);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--azul-turquesa);
    color: var(--branco);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--azul-marinho);
    margin: 0;
    line-height: 1.3;
}

.modelo-card p {
    color: var(--texto);
    line-height: 1.6;
    margin-bottom: 0;
}
